@orbcharts/plugins-basic 3.0.0-alpha.75 → 3.0.0-alpha.76
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +200 -200
- package/dist/orbcharts-plugins-basic.es.js +3461 -3468
- package/dist/orbcharts-plugins-basic.umd.js +17 -17
- package/lib/core-types.ts +7 -7
- package/lib/core.ts +6 -6
- package/package.json +43 -43
- package/src/base/BaseBarStack.ts +779 -779
- package/src/base/BaseBars.ts +764 -764
- package/src/base/BaseBarsTriangle.ts +672 -672
- package/src/base/BaseDots.ts +513 -513
- package/src/base/BaseGroupAxis.ts +678 -678
- package/src/base/BaseLegend.ts +642 -642
- package/src/base/BaseLineAreas.ts +627 -627
- package/src/base/BaseLines.ts +704 -704
- package/src/base/BaseValueAxis.ts +578 -578
- package/src/base/types.ts +2 -2
- package/src/const.ts +30 -30
- package/src/grid/defaults.ts +128 -128
- package/src/grid/gridObservables.ts +545 -545
- package/src/grid/index.ts +15 -15
- package/src/grid/plugins/BarStack.ts +64 -64
- package/src/grid/plugins/Bars.ts +69 -69
- package/src/grid/plugins/BarsPN.ts +66 -66
- package/src/grid/plugins/BarsTriangle.ts +73 -73
- package/src/grid/plugins/Dots.ts +68 -68
- package/src/grid/plugins/GridLegend.ts +96 -96
- package/src/grid/plugins/GroupAux.ts +1098 -1098
- package/src/grid/plugins/GroupAxis.ts +97 -97
- package/src/grid/plugins/LineAreas.ts +65 -65
- package/src/grid/plugins/Lines.ts +59 -59
- package/src/grid/plugins/ScalingArea.ts +218 -218
- package/src/grid/plugins/ValueAxis.ts +93 -93
- package/src/grid/plugins/ValueStackAxis.ts +95 -95
- package/src/grid/types.ts +123 -123
- package/src/index.ts +9 -9
- package/src/multiGrid/defaults.ts +158 -158
- package/src/multiGrid/index.ts +13 -13
- package/src/multiGrid/multiGridObservables.ts +49 -49
- package/src/multiGrid/plugins/MultiBarStack.ts +106 -106
- package/src/multiGrid/plugins/MultiBars.ts +108 -108
- package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
- package/src/multiGrid/plugins/MultiDots.ts +102 -102
- package/src/multiGrid/plugins/MultiGridLegend.ts +148 -148
- package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
- package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
- package/src/multiGrid/plugins/MultiLines.ts +101 -101
- package/src/multiGrid/plugins/MultiValueAxis.ts +133 -133
- package/src/multiGrid/plugins/MultiValueStackAxis.ts +133 -133
- package/src/multiGrid/plugins/OverlappingValueAxes.ts +299 -299
- package/src/multiGrid/plugins/OverlappingValueStackAxes.ts +298 -298
- package/src/multiGrid/types.ts +72 -72
- package/src/noneData/defaults.ts +102 -102
- package/src/noneData/index.ts +3 -3
- package/src/noneData/plugins/Container.ts +27 -27
- package/src/noneData/plugins/Tooltip.ts +373 -373
- package/src/noneData/types.ts +26 -26
- package/src/series/defaults.ts +149 -149
- package/src/series/index.ts +9 -9
- package/src/series/plugins/Bubbles.ts +603 -603
- package/src/series/plugins/Pie.ts +623 -623
- package/src/series/plugins/PieEventTexts.ts +283 -283
- package/src/series/plugins/PieLabels.ts +640 -640
- package/src/series/plugins/Rose.ts +516 -516
- package/src/series/plugins/RoseLabels.ts +600 -600
- package/src/series/plugins/SeriesLegend.ts +96 -96
- package/src/series/seriesObservables.ts +145 -145
- package/src/series/seriesUtils.ts +51 -51
- package/src/series/types.ts +87 -87
- package/src/tree/defaults.ts +23 -23
- package/src/tree/index.ts +3 -3
- package/src/tree/plugins/TreeLegend.ts +96 -96
- package/src/tree/plugins/TreeMap.ts +333 -333
- package/src/tree/types.ts +23 -23
- package/src/utils/commonUtils.ts +21 -21
- package/src/utils/d3Graphics.ts +174 -174
- package/src/utils/d3Utils.ts +73 -73
- package/src/utils/observables.ts +14 -14
- package/src/utils/orbchartsUtils.ts +100 -100
- package/tsconfig.base.json +13 -13
- package/tsconfig.json +2 -2
- package/vite.config.js +22 -22
@@ -1,96 +1,96 @@
|
|
1
|
-
import {
|
2
|
-
takeUntil,
|
3
|
-
map,
|
4
|
-
distinctUntilChanged,
|
5
|
-
shareReplay,
|
6
|
-
switchMap,
|
7
|
-
iif,
|
8
|
-
Observable,
|
9
|
-
Subject } from 'rxjs'
|
10
|
-
import type { DefinePluginConfig } from '../../../lib/core-types'
|
11
|
-
import {
|
12
|
-
defineGridPlugin } from '../../../lib/core'
|
13
|
-
import { DEFAULT_VALUE_STACK_AXIS_PARAMS } from '../defaults'
|
14
|
-
import { LAYER_INDEX_OF_AXIS } from '../../const'
|
15
|
-
import { createBaseValueAxis } from '../../base/BaseValueAxis'
|
16
|
-
|
17
|
-
const pluginName = 'ValueStackAxis'
|
18
|
-
|
19
|
-
const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_VALUE_STACK_AXIS_PARAMS> = {
|
20
|
-
name: pluginName,
|
21
|
-
defaultParams: DEFAULT_VALUE_STACK_AXIS_PARAMS,
|
22
|
-
layerIndex: LAYER_INDEX_OF_AXIS,
|
23
|
-
validator: (params, { validateColumns }) => {
|
24
|
-
const result = validateColumns(params, {
|
25
|
-
labelOffset: {
|
26
|
-
toBe: '[number, number]',
|
27
|
-
test: (value: any) => {
|
28
|
-
return Array.isArray(value)
|
29
|
-
&& value.length === 2
|
30
|
-
&& typeof value[0] === 'number'
|
31
|
-
&& typeof value[1] === 'number'
|
32
|
-
}
|
33
|
-
},
|
34
|
-
labelColorType: {
|
35
|
-
toBeOption: 'ColorType',
|
36
|
-
},
|
37
|
-
axisLineVisible: {
|
38
|
-
toBeTypes: ['boolean']
|
39
|
-
},
|
40
|
-
axisLineColorType: {
|
41
|
-
toBeOption: 'ColorType',
|
42
|
-
},
|
43
|
-
ticks: {
|
44
|
-
toBeTypes: ['number', 'null']
|
45
|
-
},
|
46
|
-
tickFormat: {
|
47
|
-
toBeTypes: ['string', 'Function']
|
48
|
-
},
|
49
|
-
tickLineVisible: {
|
50
|
-
toBeTypes: ['boolean']
|
51
|
-
},
|
52
|
-
tickPadding: {
|
53
|
-
toBeTypes: ['number']
|
54
|
-
},
|
55
|
-
tickFullLine: {
|
56
|
-
toBeTypes: ['boolean']
|
57
|
-
},
|
58
|
-
tickFullLineDasharray: {
|
59
|
-
toBeTypes: ['string']
|
60
|
-
},
|
61
|
-
tickColorType: {
|
62
|
-
toBeOption: 'ColorType',
|
63
|
-
},
|
64
|
-
tickTextRotate: {
|
65
|
-
toBeTypes: ['number']
|
66
|
-
},
|
67
|
-
tickTextColorType: {
|
68
|
-
toBeOption: 'ColorType',
|
69
|
-
}
|
70
|
-
})
|
71
|
-
return result
|
72
|
-
}
|
73
|
-
}
|
74
|
-
|
75
|
-
export const ValueStackAxis = defineGridPlugin(pluginConfig)(({ selection, name, observer, subject }) => {
|
76
|
-
|
77
|
-
const destroy$ = new Subject()
|
78
|
-
|
79
|
-
const unsubscribeBaseValueAxis = createBaseValueAxis(pluginName, {
|
80
|
-
selection,
|
81
|
-
computedData$: observer.computedStackedData$, // 計算疊加value的資料
|
82
|
-
fullParams$: observer.fullParams$,
|
83
|
-
fullDataFormatter$: observer.fullDataFormatter$,
|
84
|
-
fullChartParams$: observer.fullChartParams$,
|
85
|
-
gridAxesTransform$: observer.gridAxesTransform$,
|
86
|
-
gridAxesReverseTransform$: observer.gridAxesReverseTransform$,
|
87
|
-
gridAxesSize$: observer.gridAxesSize$,
|
88
|
-
gridContainerPosition$: observer.gridContainerPosition$,
|
89
|
-
isSeriesSeprate$: observer.isSeriesSeprate$,
|
90
|
-
})
|
91
|
-
|
92
|
-
return () => {
|
93
|
-
destroy$.next(undefined)
|
94
|
-
unsubscribeBaseValueAxis()
|
95
|
-
}
|
1
|
+
import {
|
2
|
+
takeUntil,
|
3
|
+
map,
|
4
|
+
distinctUntilChanged,
|
5
|
+
shareReplay,
|
6
|
+
switchMap,
|
7
|
+
iif,
|
8
|
+
Observable,
|
9
|
+
Subject } from 'rxjs'
|
10
|
+
import type { DefinePluginConfig } from '../../../lib/core-types'
|
11
|
+
import {
|
12
|
+
defineGridPlugin } from '../../../lib/core'
|
13
|
+
import { DEFAULT_VALUE_STACK_AXIS_PARAMS } from '../defaults'
|
14
|
+
import { LAYER_INDEX_OF_AXIS } from '../../const'
|
15
|
+
import { createBaseValueAxis } from '../../base/BaseValueAxis'
|
16
|
+
|
17
|
+
const pluginName = 'ValueStackAxis'
|
18
|
+
|
19
|
+
const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_VALUE_STACK_AXIS_PARAMS> = {
|
20
|
+
name: pluginName,
|
21
|
+
defaultParams: DEFAULT_VALUE_STACK_AXIS_PARAMS,
|
22
|
+
layerIndex: LAYER_INDEX_OF_AXIS,
|
23
|
+
validator: (params, { validateColumns }) => {
|
24
|
+
const result = validateColumns(params, {
|
25
|
+
labelOffset: {
|
26
|
+
toBe: '[number, number]',
|
27
|
+
test: (value: any) => {
|
28
|
+
return Array.isArray(value)
|
29
|
+
&& value.length === 2
|
30
|
+
&& typeof value[0] === 'number'
|
31
|
+
&& typeof value[1] === 'number'
|
32
|
+
}
|
33
|
+
},
|
34
|
+
labelColorType: {
|
35
|
+
toBeOption: 'ColorType',
|
36
|
+
},
|
37
|
+
axisLineVisible: {
|
38
|
+
toBeTypes: ['boolean']
|
39
|
+
},
|
40
|
+
axisLineColorType: {
|
41
|
+
toBeOption: 'ColorType',
|
42
|
+
},
|
43
|
+
ticks: {
|
44
|
+
toBeTypes: ['number', 'null']
|
45
|
+
},
|
46
|
+
tickFormat: {
|
47
|
+
toBeTypes: ['string', 'Function']
|
48
|
+
},
|
49
|
+
tickLineVisible: {
|
50
|
+
toBeTypes: ['boolean']
|
51
|
+
},
|
52
|
+
tickPadding: {
|
53
|
+
toBeTypes: ['number']
|
54
|
+
},
|
55
|
+
tickFullLine: {
|
56
|
+
toBeTypes: ['boolean']
|
57
|
+
},
|
58
|
+
tickFullLineDasharray: {
|
59
|
+
toBeTypes: ['string']
|
60
|
+
},
|
61
|
+
tickColorType: {
|
62
|
+
toBeOption: 'ColorType',
|
63
|
+
},
|
64
|
+
tickTextRotate: {
|
65
|
+
toBeTypes: ['number']
|
66
|
+
},
|
67
|
+
tickTextColorType: {
|
68
|
+
toBeOption: 'ColorType',
|
69
|
+
}
|
70
|
+
})
|
71
|
+
return result
|
72
|
+
}
|
73
|
+
}
|
74
|
+
|
75
|
+
export const ValueStackAxis = defineGridPlugin(pluginConfig)(({ selection, name, observer, subject }) => {
|
76
|
+
|
77
|
+
const destroy$ = new Subject()
|
78
|
+
|
79
|
+
const unsubscribeBaseValueAxis = createBaseValueAxis(pluginName, {
|
80
|
+
selection,
|
81
|
+
computedData$: observer.computedStackedData$, // 計算疊加value的資料
|
82
|
+
fullParams$: observer.fullParams$,
|
83
|
+
fullDataFormatter$: observer.fullDataFormatter$,
|
84
|
+
fullChartParams$: observer.fullChartParams$,
|
85
|
+
gridAxesTransform$: observer.gridAxesTransform$,
|
86
|
+
gridAxesReverseTransform$: observer.gridAxesReverseTransform$,
|
87
|
+
gridAxesSize$: observer.gridAxesSize$,
|
88
|
+
gridContainerPosition$: observer.gridContainerPosition$,
|
89
|
+
isSeriesSeprate$: observer.isSeriesSeprate$,
|
90
|
+
})
|
91
|
+
|
92
|
+
return () => {
|
93
|
+
destroy$.next(undefined)
|
94
|
+
unsubscribeBaseValueAxis()
|
95
|
+
}
|
96
96
|
})
|
package/src/grid/types.ts
CHANGED
@@ -1,124 +1,124 @@
|
|
1
|
-
import type { ColorType } from '../../lib/core-types'
|
2
|
-
// import type { BaseLegendParams } from '../base/BaseLegend'
|
3
|
-
|
4
|
-
// export type LineType = 'line' | 'area' | 'gradientArea'
|
5
|
-
// export type BarType = 'rect' | 'triangle'
|
6
|
-
|
7
|
-
export interface LinesParams {
|
8
|
-
lineCurve: string
|
9
|
-
lineWidth: number
|
10
|
-
// labelFn: (d: ComputedDatumSeries) => string
|
11
|
-
// labelPositionFn: (d: ComputedDatumSeries) => 'top' | 'bottom' | 'left' | 'right' | 'center'
|
12
|
-
// labelStyleFn: (d: ComputedDatumSeries) => string
|
13
|
-
// labelFontSizeFn: (d: ComputedDatumSeries) => number
|
14
|
-
// labelColorFn: (d: ComputedDatumSeries) => string
|
15
|
-
// labelPadding: number
|
16
|
-
}
|
17
|
-
|
18
|
-
export interface LineAreasParams {
|
19
|
-
lineCurve: string
|
20
|
-
linearGradientOpacity: [number, number]
|
21
|
-
}
|
22
|
-
|
23
|
-
export interface DotsParams {
|
24
|
-
radius: number
|
25
|
-
fillColorType: ColorType
|
26
|
-
strokeColorType: ColorType
|
27
|
-
strokeWidth: number
|
28
|
-
// strokeWidthWhileHighlight: number
|
29
|
-
onlyShowHighlighted: boolean
|
30
|
-
}
|
31
|
-
|
32
|
-
export interface GroupAuxParams {
|
33
|
-
showLine: boolean
|
34
|
-
showLabel: boolean
|
35
|
-
lineDashArray: string
|
36
|
-
lineColorType: ColorType
|
37
|
-
labelColorType: ColorType
|
38
|
-
labelTextColorType: ColorType
|
39
|
-
labelTextFormat: string | ((text: any) => string)
|
40
|
-
labelPadding: number
|
41
|
-
labelRotate: number
|
42
|
-
}
|
43
|
-
|
44
|
-
export interface BarsParams {
|
45
|
-
// barType: BarType
|
46
|
-
barWidth: number
|
47
|
-
barPadding: number
|
48
|
-
barGroupPadding: number // 群組和群組間的間隔
|
49
|
-
barRadius: number | boolean
|
50
|
-
}
|
51
|
-
|
52
|
-
export interface BarsPNParams extends BarsParams {}
|
53
|
-
|
54
|
-
export interface BarStackParams {
|
55
|
-
barWidth: number
|
56
|
-
barGroupPadding: number
|
57
|
-
barRadius: number | boolean
|
58
|
-
}
|
59
|
-
|
60
|
-
export interface BarsTriangleParams {
|
61
|
-
barWidth: number
|
62
|
-
barPadding: number
|
63
|
-
barGroupPadding: number // 群組和群組間的間隔
|
64
|
-
linearGradientOpacity: [number, number]
|
65
|
-
}
|
66
|
-
|
67
|
-
export interface GroupAxisParams {
|
68
|
-
// xLabel: string
|
69
|
-
// labelAnchor: 'start' | 'end'
|
70
|
-
labelOffset: [number, number]
|
71
|
-
labelColorType: ColorType
|
72
|
-
axisLineVisible: boolean
|
73
|
-
axisLineColorType: ColorType
|
74
|
-
ticks: number | null | 'all'
|
75
|
-
tickFormat: string | ((text: any) => string)
|
76
|
-
tickLineVisible: boolean
|
77
|
-
tickPadding: number
|
78
|
-
tickFullLine: boolean
|
79
|
-
tickFullLineDasharray: string
|
80
|
-
tickColorType: ColorType
|
81
|
-
// axisLineColor: string
|
82
|
-
// axisLabelColor: string
|
83
|
-
tickTextRotate: number
|
84
|
-
tickTextColorType: ColorType
|
85
|
-
}
|
86
|
-
|
87
|
-
export interface ValueAxisParams {
|
88
|
-
// xLabel: string
|
89
|
-
// labelAnchor: 'start' | 'end'
|
90
|
-
labelOffset: [number, number]
|
91
|
-
labelColorType: ColorType
|
92
|
-
axisLineVisible: boolean
|
93
|
-
axisLineColorType: ColorType
|
94
|
-
ticks: number | null
|
95
|
-
tickFormat: string | ((text: d3.NumberValue) => string)
|
96
|
-
tickLineVisible: boolean
|
97
|
-
tickPadding: number
|
98
|
-
tickFullLine: boolean
|
99
|
-
tickFullLineDasharray: string
|
100
|
-
tickColorType: ColorType
|
101
|
-
// axisLineColor: string
|
102
|
-
// axisLabelColor: string
|
103
|
-
tickTextRotate: number
|
104
|
-
tickTextColorType: ColorType
|
105
|
-
}
|
106
|
-
|
107
|
-
export interface ValueStackAxisParams extends ValueAxisParams {}
|
108
|
-
|
109
|
-
export interface ScalingAreaParams {
|
110
|
-
|
111
|
-
}
|
112
|
-
|
113
|
-
export interface GridLegendParams {
|
114
|
-
position: 'top' | 'bottom' | 'left' | 'right'
|
115
|
-
justify: 'start' | 'center' | 'end'
|
116
|
-
padding: number
|
117
|
-
backgroundFill: ColorType
|
118
|
-
backgroundStroke: ColorType
|
119
|
-
gap: number
|
120
|
-
listRectWidth: number
|
121
|
-
listRectHeight: number
|
122
|
-
listRectRadius: number
|
123
|
-
textColorType: ColorType
|
1
|
+
import type { ColorType } from '../../lib/core-types'
|
2
|
+
// import type { BaseLegendParams } from '../base/BaseLegend'
|
3
|
+
|
4
|
+
// export type LineType = 'line' | 'area' | 'gradientArea'
|
5
|
+
// export type BarType = 'rect' | 'triangle'
|
6
|
+
|
7
|
+
export interface LinesParams {
|
8
|
+
lineCurve: string
|
9
|
+
lineWidth: number
|
10
|
+
// labelFn: (d: ComputedDatumSeries) => string
|
11
|
+
// labelPositionFn: (d: ComputedDatumSeries) => 'top' | 'bottom' | 'left' | 'right' | 'center'
|
12
|
+
// labelStyleFn: (d: ComputedDatumSeries) => string
|
13
|
+
// labelFontSizeFn: (d: ComputedDatumSeries) => number
|
14
|
+
// labelColorFn: (d: ComputedDatumSeries) => string
|
15
|
+
// labelPadding: number
|
16
|
+
}
|
17
|
+
|
18
|
+
export interface LineAreasParams {
|
19
|
+
lineCurve: string
|
20
|
+
linearGradientOpacity: [number, number]
|
21
|
+
}
|
22
|
+
|
23
|
+
export interface DotsParams {
|
24
|
+
radius: number
|
25
|
+
fillColorType: ColorType
|
26
|
+
strokeColorType: ColorType
|
27
|
+
strokeWidth: number
|
28
|
+
// strokeWidthWhileHighlight: number
|
29
|
+
onlyShowHighlighted: boolean
|
30
|
+
}
|
31
|
+
|
32
|
+
export interface GroupAuxParams {
|
33
|
+
showLine: boolean
|
34
|
+
showLabel: boolean
|
35
|
+
lineDashArray: string
|
36
|
+
lineColorType: ColorType
|
37
|
+
labelColorType: ColorType
|
38
|
+
labelTextColorType: ColorType
|
39
|
+
labelTextFormat: string | ((text: any) => string)
|
40
|
+
labelPadding: number
|
41
|
+
labelRotate: number
|
42
|
+
}
|
43
|
+
|
44
|
+
export interface BarsParams {
|
45
|
+
// barType: BarType
|
46
|
+
barWidth: number
|
47
|
+
barPadding: number
|
48
|
+
barGroupPadding: number // 群組和群組間的間隔
|
49
|
+
barRadius: number | boolean
|
50
|
+
}
|
51
|
+
|
52
|
+
export interface BarsPNParams extends BarsParams {}
|
53
|
+
|
54
|
+
export interface BarStackParams {
|
55
|
+
barWidth: number
|
56
|
+
barGroupPadding: number
|
57
|
+
barRadius: number | boolean
|
58
|
+
}
|
59
|
+
|
60
|
+
export interface BarsTriangleParams {
|
61
|
+
barWidth: number
|
62
|
+
barPadding: number
|
63
|
+
barGroupPadding: number // 群組和群組間的間隔
|
64
|
+
linearGradientOpacity: [number, number]
|
65
|
+
}
|
66
|
+
|
67
|
+
export interface GroupAxisParams {
|
68
|
+
// xLabel: string
|
69
|
+
// labelAnchor: 'start' | 'end'
|
70
|
+
labelOffset: [number, number]
|
71
|
+
labelColorType: ColorType
|
72
|
+
axisLineVisible: boolean
|
73
|
+
axisLineColorType: ColorType
|
74
|
+
ticks: number | null | 'all'
|
75
|
+
tickFormat: string | ((text: any) => string)
|
76
|
+
tickLineVisible: boolean
|
77
|
+
tickPadding: number
|
78
|
+
tickFullLine: boolean
|
79
|
+
tickFullLineDasharray: string
|
80
|
+
tickColorType: ColorType
|
81
|
+
// axisLineColor: string
|
82
|
+
// axisLabelColor: string
|
83
|
+
tickTextRotate: number
|
84
|
+
tickTextColorType: ColorType
|
85
|
+
}
|
86
|
+
|
87
|
+
export interface ValueAxisParams {
|
88
|
+
// xLabel: string
|
89
|
+
// labelAnchor: 'start' | 'end'
|
90
|
+
labelOffset: [number, number]
|
91
|
+
labelColorType: ColorType
|
92
|
+
axisLineVisible: boolean
|
93
|
+
axisLineColorType: ColorType
|
94
|
+
ticks: number | null
|
95
|
+
tickFormat: string | ((text: d3.NumberValue) => string)
|
96
|
+
tickLineVisible: boolean
|
97
|
+
tickPadding: number
|
98
|
+
tickFullLine: boolean
|
99
|
+
tickFullLineDasharray: string
|
100
|
+
tickColorType: ColorType
|
101
|
+
// axisLineColor: string
|
102
|
+
// axisLabelColor: string
|
103
|
+
tickTextRotate: number
|
104
|
+
tickTextColorType: ColorType
|
105
|
+
}
|
106
|
+
|
107
|
+
export interface ValueStackAxisParams extends ValueAxisParams {}
|
108
|
+
|
109
|
+
export interface ScalingAreaParams {
|
110
|
+
|
111
|
+
}
|
112
|
+
|
113
|
+
export interface GridLegendParams {
|
114
|
+
position: 'top' | 'bottom' | 'left' | 'right'
|
115
|
+
justify: 'start' | 'center' | 'end'
|
116
|
+
padding: number
|
117
|
+
backgroundFill: ColorType
|
118
|
+
backgroundStroke: ColorType
|
119
|
+
gap: number
|
120
|
+
listRectWidth: number
|
121
|
+
listRectHeight: number
|
122
|
+
listRectRadius: number
|
123
|
+
textColorType: ColorType
|
124
124
|
}
|
package/src/index.ts
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
// export { default as container } from './noneDataPlugins/container'
|
2
|
-
// export { default as pie } from './seriesPlugins/pie'
|
3
|
-
// export { default as pieEventTexts } from './seriesPlugins/pieEventTexts'
|
4
|
-
// export { default as pieLabels } from './seriesPlugins/pieLabels'
|
5
|
-
|
6
|
-
export * from './grid'
|
7
|
-
export * from './multiGrid'
|
8
|
-
export * from './noneData'
|
9
|
-
export * from './series'
|
1
|
+
// export { default as container } from './noneDataPlugins/container'
|
2
|
+
// export { default as pie } from './seriesPlugins/pie'
|
3
|
+
// export { default as pieEventTexts } from './seriesPlugins/pieEventTexts'
|
4
|
+
// export { default as pieLabels } from './seriesPlugins/pieLabels'
|
5
|
+
|
6
|
+
export * from './grid'
|
7
|
+
export * from './multiGrid'
|
8
|
+
export * from './noneData'
|
9
|
+
export * from './series'
|
10
10
|
export * from './tree'
|