diff options
author | Ri Xu <xuri.me@gmail.com> | 2017-07-26 18:37:00 +0800 |
---|---|---|
committer | Ri Xu <xuri.me@gmail.com> | 2017-07-26 18:37:00 +0800 |
commit | 8493fea373bef159998023a7ac42740b115bd866 (patch) | |
tree | e9e1fa232c180f9f0ff2f8688dcc1c2d8dc638ec /chart.go | |
parent | 6aa59a1af29c21e0ece37fc94c66bc2999ed3540 (diff) |
- Add number format code with unicode values, relate issue #86;
- godoc updated
Diffstat (limited to 'chart.go')
-rw-r--r-- | chart.go | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -89,16 +89,16 @@ func parseFormatChartSet(formatSet string) *formatChart { // // The following shows the type of chart supported by excelize: // -// | Type | 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 | +// Type | 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. // |