diff options
author | xuri <xuri.me@gmail.com> | 2019-10-21 00:04:18 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2019-10-21 00:04:18 +0800 |
commit | 7716968abc1d330492e311504af8951c34fb7520 (patch) | |
tree | 5a6a57f07788540abe506fffbf1de2ddb3fc81ad /xmlChart.go | |
parent | 866fda230028a3a9e6ff1c5234e432ad850d3c6b (diff) |
Fix #505, support set line width of the line chart
Diffstat (limited to 'xmlChart.go')
-rw-r--r-- | xmlChart.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/xmlChart.go b/xmlChart.go index 69e119a..50d0b3e 100644 --- a/xmlChart.go +++ b/xmlChart.go @@ -606,8 +606,9 @@ type formatChartSeries struct { Categories string `json:"categories"` Values string `json:"values"` Line struct { - None bool `json:"none"` - Color string `json:"color"` + None bool `json:"none"` + Color string `json:"color"` + Width float64 `json:"width"` } `json:"line"` Marker struct { Type string `json:"type"` |