diff options
author | xuri <xuri.me@gmail.com> | 2020-12-27 00:18:54 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2020-12-27 00:18:54 +0800 |
commit | 71829c520235b733870563f30dceef9ef4dbbb98 (patch) | |
tree | db0a40891c8264e12f26df14ab640a9878135a93 /README.md | |
parent | 576bfffbe6add78e719fc4fab851f40f5779a4d3 (diff) |
AddChart support disable legend of the chart
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -112,7 +112,8 @@ import ( func main() { categories := map[string]string{ - "A2": "Small", "A3": "Normal", "A4": "Large", "B1": "Apple", "C1": "Orange", "D1": "Pear"} + "A2": "Small", "A3": "Normal", "A4": "Large", + "B1": "Apple", "C1": "Orange", "D1": "Pear"} values := map[string]int{ "B2": 2, "C2": 3, "D2": 3, "B3": 5, "C3": 2, "D3": 4, "B4": 6, "C4": 7, "D4": 8} f := excelize.NewFile() |