diff options
Diffstat (limited to 'chart.go')
-rw-r--r-- | chart.go | 11 |
1 files changed, 1 insertions, 10 deletions
@@ -89,25 +89,16 @@ func parseFormatChartSet(formatSet string) *formatChart { // // The following shows the type of chart supported by excelize: // -// +---------------------------+ // | Type | Chart | -// +==========+================+ -// | bar | bar chart | // +----------+----------------+ +// | bar | bar chart | // | bar3D | 3D bar chart | -// +----------+----------------+ // | doughnut | doughnut chart | -// +----------+----------------+ // | line | line chart | -// +----------+----------------+ // | pie | pie chart | -// +----------+----------------+ // | pie3D | 3D pie chart | -// +----------+----------------+ // | radar | radar chart | -// +----------+----------------+ // | scatter | scatter chart | -// +----------+----------------+ // // In Excel a chart series is a collection of information that defines which data is plotted such as values, axis labels and formatting. // |