diff options
author | xuri <xuri.me@gmail.com> | 2020-01-16 01:05:22 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2020-01-16 01:05:22 +0800 |
commit | fa7078f06c82ed30f9573caf3c4d24d49f45df5a (patch) | |
tree | 224925b33e97bc17104b222c88ab9fe094e11c41 /xmlChart.go | |
parent | 9ddb52eac4e451f676dabe4eed45ee95fce38eef (diff) |
Specified combo chart as variadic parameters
Diffstat (limited to 'xmlChart.go')
-rw-r--r-- | xmlChart.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xmlChart.go b/xmlChart.go index 9d6263f..5511469 100644 --- a/xmlChart.go +++ b/xmlChart.go @@ -593,11 +593,11 @@ type formatChart struct { } `json:"fill"` Layout formatLayout `json:"layout"` } `json:"plotarea"` - ShowBlanksAs string `json:"show_blanks_as"` - ShowHiddenData bool `json:"show_hidden_data"` - SetRotation int `json:"set_rotation"` - SetHoleSize int `json:"set_hole_size"` - Combo *formatChart `json:"combo"` + ShowBlanksAs string `json:"show_blanks_as"` + ShowHiddenData bool `json:"show_hidden_data"` + SetRotation int `json:"set_rotation"` + SetHoleSize int `json:"set_hole_size"` + order int } // formatChartLegend directly maps the format settings of the chart legend. |