|
@@ -150,7 +150,6 @@ func GetSystemChartTheme(chartThemeTypeId int) (item *ChartTheme, err error) {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
-
|
|
|
type ColorsOptions []string
|
|
|
|
|
|
type LegendOptions struct {
|
|
@@ -198,14 +197,15 @@ type LineOptions struct {
|
|
|
}
|
|
|
|
|
|
type OldChartOptions struct {
|
|
|
- ColorsOptions []string `json:"colorsOptions"`
|
|
|
- LineOptions LineOptions `json:"lineOptions"`
|
|
|
- LegendOptions interface{} `json:"legendOptions"`
|
|
|
- TitleOptions interface{} `json:"titleOptions"`
|
|
|
- MarkerOptions interface{} `json:"markerOptions"`
|
|
|
- XAxisOptions interface{} `json:"xAxisOptions"`
|
|
|
- YAxisOptions interface{} `json:"yAxisOptions"`
|
|
|
- DrawOption interface{} `json:"drawOption"`
|
|
|
+ ColorsOptions []string `json:"colorsOptions"`
|
|
|
+ LineOptions LineOptions `json:"lineOptions"`
|
|
|
+ LegendOptions interface{} `json:"legendOptions"`
|
|
|
+ TitleOptions interface{} `json:"titleOptions"`
|
|
|
+ MarkerOptions interface{} `json:"markerOptions"`
|
|
|
+ XAxisOptions interface{} `json:"xAxisOptions"`
|
|
|
+ YAxisOptions interface{} `json:"yAxisOptions"`
|
|
|
+ DrawOption interface{} `json:"drawOption"`
|
|
|
+ LineOptionList []LineStyleOptions `json:"lineOptionList"`
|
|
|
}
|
|
|
|
|
|
type NewChartOptions struct {
|
|
@@ -221,3 +221,15 @@ type NewLineOptions struct {
|
|
|
MarkSize int `json:"markSize"`
|
|
|
MarkColor string `json:"markColor"`
|
|
|
}
|
|
|
+
|
|
|
+type LineStyleOptions struct {
|
|
|
+ DashStyle string `json:"dashStyle"`
|
|
|
+ Color string `json:"color"`
|
|
|
+ LineWidth int `json:"lineWidth"`
|
|
|
+ LineType string `json:"lineType"`
|
|
|
+ Radius int `json:"radius"`
|
|
|
+ DataMark string `json:"dataMark"`
|
|
|
+ MarkType string `json:"markType"`
|
|
|
+ MarkSize int `json:"markSize"`
|
|
|
+ MarkColor string `json:"markColor"`
|
|
|
+}
|