summaryrefslogtreecommitdiff
path: root/chart.go
diff options
context:
space:
mode:
authorRi Xu <xuri.me@gmail.com>2017-07-14 21:15:44 +0800
committerRi Xu <xuri.me@gmail.com>2017-07-14 21:15:44 +0800
commitbc31e545c8458d882ff6659ea3ca5e7a598d8789 (patch)
treed83e3a302061b820082d656197710cc71b0a30b7 /chart.go
parent20aae4e0e6e9d40a35a1d6ef6e3f357afdda0605 (diff)
- Currency format supported, relate issue #80;
- go test and godoc updated
Diffstat (limited to 'chart.go')
-rw-r--r--chart.go11
1 files changed, 1 insertions, 10 deletions
diff --git a/chart.go b/chart.go
index cc7ef8c..6c266bd 100644
--- a/chart.go
+++ b/chart.go
@@ -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.
//