feat(图表): 新增区间条形图

#8930
This commit is contained in:
ulleo
2024-05-10 16:09:38 +08:00
parent 28a263770b
commit 9c600ec0e1
24 changed files with 1230 additions and 127 deletions

View File

@@ -659,6 +659,8 @@ declare interface ChartLabelAttr {
* 多系列标签设置
*/
seriesLabelFormatter: SeriesFormatter[]
showGap?: boolean
}
/**
* 提示设置
@@ -690,6 +692,8 @@ declare interface ChartTooltipAttr {
* 多系列提示设置
*/
seriesTooltipFormatter: SeriesFormatter[]
showGap?: boolean
}
/**

View File

@@ -40,6 +40,7 @@ declare interface Chart {
resultCount: number
linkageActive: boolean
jumpActive: boolean
aggregate?: boolean
}
declare type CustomAttr = DeepPartial<ChartAttr> | JSONString<DeepPartial<ChartAttr>>
declare type CustomStyle = DeepPartial<ChartStyle> | JSONString<DeepPartial<ChartStyle>>