...
|
...
|
@@ -28,6 +28,7 @@ type ChartProperty struct { |
|
|
}
|
|
|
type Other struct {
|
|
|
Quarter *Quarter `json:"quarter,optional,omitempty"` // 四分图
|
|
|
Divider *Divider `json:"divider,optional,omitempty"` // 分割线
|
|
|
}
|
|
|
type Quarter struct {
|
|
|
XAxisLabel string `json:"xAxisLabel"` // x轴标签名
|
...
|
...
|
@@ -45,6 +46,12 @@ type QuarterSeries struct { |
|
|
SeriesValue string `json:"seriesValue"`
|
|
|
}
|
|
|
|
|
|
type Divider struct {
|
|
|
SelectedIdx string `json:"selectedIdx,optional,omitempty"` // 选择的分割线样式
|
|
|
TextSwitch bool `json:"textSwitch,optional,omitempty"` // 是否展示组件文本
|
|
|
Text string `json:"text"` // 组件文本内容
|
|
|
}
|
|
|
|
|
|
type Title struct {
|
|
|
TitleSwitch bool `json:"titleSwitch,optional"` // 组件标题开关
|
|
|
IntroduceSwitch bool `json:"introduceSwitch,optional"` // 组件说明开关
|
...
|
...
|
|