...
|
...
|
@@ -118,24 +118,53 @@ type ChartProperty struct { |
|
|
|
|
|
type Other struct {
|
|
|
Quarter *Quarter `json:"quarter,optional,omitempty"` // 四分图
|
|
|
Divider *Divider `json:"divider,optional,omitempty"` // 分割线
|
|
|
Rank *Rank `json:"rank,optional,omitempty"` // 排名图
|
|
|
}
|
|
|
|
|
|
type Quarter struct {
|
|
|
XAxisLabel string `json:"xAxisLabel"` // x轴标签名
|
|
|
XAxisFirstLabel string `json:"xAxisFirstLabel"` // 签名1
|
|
|
XAxisSecondLabel string `json:"xAxisSecondLabel"` // 签名2
|
|
|
XAxisFirstColor string `json:"xAxisFirstColor,optional,omitempty"` // x轴标签1默认颜色
|
|
|
XAxisSecondColor string `json:"xAxisSecondColor,optional,omitempty"` // x轴标签2默认颜色
|
|
|
YAxisLabel string `json:"yAxisLabel"` // y轴标签名
|
|
|
YAxisFirstLabel string `json:"yAxisFirstLabel"` // y标签1
|
|
|
YAxisSecondLabel string `json:"yAxisSecondLabel"` // y标签2
|
|
|
YAxisFirstColor string `json:"yAxisFirstColor,optional,omitempty"` // y轴标签1默认颜色
|
|
|
YAxisSecondColor string `json:"yAxisSecondColor,optional,omitempty"` // y轴标签2默认颜色
|
|
|
Area string `json:"area"` // 图形面积
|
|
|
AreaColor bool `json:"areaColor"` // 颜色
|
|
|
SeriesList []QuarterSeries `json:"seriesList"` // 图形系列
|
|
|
TableSwitch bool `json:"tableSwitch"` // 是否展示记录型表格
|
|
|
}
|
|
|
|
|
|
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 Rank struct {
|
|
|
FirstLine []RankLine `json:"firstLine,optional,omitempty"` // 第一名设置
|
|
|
SecondLine []RankLine `json:"secondLine,optional,omitempty"` // 第二名设置
|
|
|
SortBySwitch bool `json:"sortBySwitch,optional,omitempty"` // 排序开关
|
|
|
SortBySeries string `json:"sortBySeries,optional,omitempty"` // 排序依据
|
|
|
SortByArrow string `json:"sortByArrow,optional,omitempty"` // 排序方向 1-降序 2-升序
|
|
|
}
|
|
|
|
|
|
type RankLine struct {
|
|
|
SeriesValue string `json:"seriesValue"` // 排名图序列值
|
|
|
LabelSwitch bool `json:"labelSwitch"` // 标签开关
|
|
|
Label string `json:"label"` // 标签
|
|
|
ArrowSwitch bool `json:"arrowSwitch"` // 箭头开关
|
|
|
Unit string `json:"unit"` // 单位
|
|
|
}
|
|
|
|
|
|
type Title struct {
|
|
|
TitleSwitch bool `json:"titleSwitch,optional"` // 组件标题开关
|
|
|
IntroduceSwitch bool `json:"introduceSwitch,optional"` // 组件说明开关
|
...
|
...
|
|