@orbcharts/plugins-basic 3.0.0-alpha.44 → 3.0.0-alpha.45

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.
Files changed (155) hide show
  1. package/LICENSE +200 -200
  2. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseBarStack.d.ts +6 -4
  3. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseBars.d.ts +6 -4
  4. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseBarsTriangle.d.ts +7 -4
  5. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseDots.d.ts +5 -3
  6. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseGroupAxis.d.ts +3 -3
  7. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLineAreas.d.ts +6 -3
  8. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLines.d.ts +6 -3
  9. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseValueAxis.d.ts +3 -3
  10. package/dist/{src → orbcharts-plugins-basic/src}/grid/gridObservables.d.ts +4 -4
  11. package/dist/orbcharts-plugins-basic/src/index.d.ts +5 -0
  12. package/dist/orbcharts-plugins-basic/src/multiGrid/multiGridObservables.d.ts +8 -0
  13. package/dist/orbcharts-plugins-basic/src/series/plugins/PieEventTexts.d.ts +3 -0
  14. package/dist/orbcharts-plugins-basic/src/series/seriesObservables.d.ts +21 -0
  15. package/dist/{src → orbcharts-plugins-basic/src}/series/seriesUtils.d.ts +3 -3
  16. package/dist/orbcharts-plugins-basic.es.js +7696 -7529
  17. package/dist/orbcharts-plugins-basic.umd.js +8 -8
  18. package/dist/src/index.d.ts +1 -5
  19. package/package.json +42 -42
  20. package/src/base/BaseBarStack.ts +778 -881
  21. package/src/base/BaseBars.ts +764 -750
  22. package/src/base/BaseBarsTriangle.ts +672 -659
  23. package/src/base/BaseDots.ts +502 -639
  24. package/src/base/BaseGroupAxis.ts +496 -496
  25. package/src/base/BaseLegend.ts +641 -641
  26. package/src/base/BaseLineAreas.ts +625 -621
  27. package/src/base/BaseLines.ts +699 -692
  28. package/src/base/BaseValueAxis.ts +478 -479
  29. package/src/base/types.ts +2 -2
  30. package/src/grid/defaults.ts +121 -121
  31. package/src/grid/gridObservables.ts +247 -263
  32. package/src/grid/index.ts +15 -15
  33. package/src/grid/plugins/BarStack.ts +50 -37
  34. package/src/grid/plugins/Bars.ts +51 -37
  35. package/src/grid/plugins/BarsDiverging.ts +41 -39
  36. package/src/grid/plugins/BarsTriangle.ts +50 -34
  37. package/src/grid/plugins/Dots.ts +37 -35
  38. package/src/grid/plugins/GridLegend.ts +59 -59
  39. package/src/grid/plugins/GroupAux.ts +645 -646
  40. package/src/grid/plugins/GroupAxis.ts +42 -30
  41. package/src/grid/plugins/LineAreas.ts +39 -36
  42. package/src/grid/plugins/Lines.ts +38 -35
  43. package/src/grid/plugins/ScalingArea.ts +173 -174
  44. package/src/grid/plugins/ValueAxis.ts +43 -31
  45. package/src/grid/plugins/ValueStackAxis.ts +79 -70
  46. package/src/grid/types.ts +120 -120
  47. package/src/index.ts +9 -9
  48. package/src/multiGrid/defaults.ts +147 -147
  49. package/src/multiGrid/index.ts +11 -11
  50. package/src/multiGrid/multiGridObservables.ts +42 -289
  51. package/src/multiGrid/plugins/MultiBarStack.ts +74 -60
  52. package/src/multiGrid/plugins/MultiBars.ts +73 -59
  53. package/src/multiGrid/plugins/MultiBarsTriangle.ts +73 -58
  54. package/src/multiGrid/plugins/MultiDots.ts +60 -58
  55. package/src/multiGrid/plugins/MultiGridLegend.ts +89 -89
  56. package/src/multiGrid/plugins/MultiGroupAxis.ts +65 -53
  57. package/src/multiGrid/plugins/MultiLineAreas.ts +62 -59
  58. package/src/multiGrid/plugins/MultiLines.ts +61 -58
  59. package/src/multiGrid/plugins/MultiValueAxis.ts +65 -53
  60. package/src/multiGrid/plugins/OverlappingValueAxes.ts +169 -164
  61. package/src/multiGrid/types.ts +67 -67
  62. package/src/noneData/defaults.ts +64 -61
  63. package/src/noneData/index.ts +3 -3
  64. package/src/noneData/plugins/Container.ts +10 -10
  65. package/src/noneData/plugins/Tooltip.ts +310 -310
  66. package/src/noneData/types.ts +26 -26
  67. package/src/series/defaults.ts +109 -99
  68. package/src/series/index.ts +6 -6
  69. package/src/series/plugins/Bubbles.ts +571 -551
  70. package/src/series/plugins/Pie.ts +548 -600
  71. package/src/series/plugins/PieEventTexts.ts +258 -194
  72. package/src/series/plugins/PieLabels.ts +335 -288
  73. package/src/series/plugins/SeriesLegend.ts +59 -59
  74. package/src/series/seriesObservables.ts +145 -0
  75. package/src/series/seriesUtils.ts +50 -50
  76. package/src/series/types.ts +67 -67
  77. package/src/tree/defaults.ts +22 -22
  78. package/src/tree/index.ts +3 -3
  79. package/src/tree/plugins/TreeLegend.ts +59 -59
  80. package/src/tree/plugins/TreeMap.ts +305 -305
  81. package/src/tree/types.ts +23 -23
  82. package/src/utils/commonUtils.ts +21 -21
  83. package/src/utils/d3Graphics.ts +124 -124
  84. package/src/utils/d3Utils.ts +73 -73
  85. package/src/utils/observables.ts +14 -14
  86. package/src/utils/orbchartsUtils.ts +100 -100
  87. package/tsconfig.dev.json +16 -16
  88. package/tsconfig.json +16 -13
  89. package/tsconfig.prod.json +13 -13
  90. package/vite.config.js +49 -49
  91. package/dist/src/multiGrid/multiGridObservables.d.ts +0 -12
  92. package/dist/src/series/plugins/PieEventTexts.d.ts +0 -1
  93. /package/dist/{src → orbcharts-plugins-basic/src}/base/BaseGroupArea.d.ts +0 -0
  94. /package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLegend.d.ts +0 -0
  95. /package/dist/{src → orbcharts-plugins-basic/src}/base/types.d.ts +0 -0
  96. /package/dist/{src → orbcharts-plugins-basic/src}/grid/defaults.d.ts +0 -0
  97. /package/dist/{src → orbcharts-plugins-basic/src}/grid/index.d.ts +0 -0
  98. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/BarStack.d.ts +0 -0
  99. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Bars.d.ts +0 -0
  100. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/BarsDiverging.d.ts +0 -0
  101. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/BarsTriangle.d.ts +0 -0
  102. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Dots.d.ts +0 -0
  103. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GridLegend.d.ts +0 -0
  104. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GroupAux.d.ts +0 -0
  105. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GroupAxis.d.ts +0 -0
  106. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/LineAreas.d.ts +0 -0
  107. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Lines.d.ts +0 -0
  108. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Ranking.d.ts +0 -0
  109. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/RankingAxis.d.ts +0 -0
  110. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/ScalingArea.d.ts +0 -0
  111. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/ValueAxis.d.ts +0 -0
  112. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/ValueStackAxis.d.ts +0 -0
  113. /package/dist/{src → orbcharts-plugins-basic/src}/grid/types.d.ts +0 -0
  114. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/defaults.d.ts +0 -0
  115. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/index.d.ts +0 -0
  116. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiBarStack.d.ts +0 -0
  117. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiBars.d.ts +0 -0
  118. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiBarsTriangle.d.ts +0 -0
  119. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiDots.d.ts +0 -0
  120. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGridLegend.d.ts +0 -0
  121. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGroupAxis.d.ts +0 -0
  122. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiLineAreas.d.ts +0 -0
  123. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiLines.d.ts +0 -0
  124. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiValueAxis.d.ts +0 -0
  125. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/OverlappingValueAxes.d.ts +0 -0
  126. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/types.d.ts +0 -0
  127. /package/dist/{src → orbcharts-plugins-basic/src}/multiValue/index.d.ts +0 -0
  128. /package/dist/{src → orbcharts-plugins-basic/src}/multiValue/plugins/Scatter.d.ts +0 -0
  129. /package/dist/{src → orbcharts-plugins-basic/src}/multiValue/plugins/ScatterAxes.d.ts +0 -0
  130. /package/dist/{src → orbcharts-plugins-basic/src}/noneData/defaults.d.ts +0 -0
  131. /package/dist/{src → orbcharts-plugins-basic/src}/noneData/index.d.ts +0 -0
  132. /package/dist/{src → orbcharts-plugins-basic/src}/noneData/plugins/Container.d.ts +0 -0
  133. /package/dist/{src → orbcharts-plugins-basic/src}/noneData/plugins/Tooltip.d.ts +0 -0
  134. /package/dist/{src → orbcharts-plugins-basic/src}/noneData/types.d.ts +0 -0
  135. /package/dist/{src → orbcharts-plugins-basic/src}/relationship/index.d.ts +0 -0
  136. /package/dist/{src → orbcharts-plugins-basic/src}/relationship/plugins/Relationship.d.ts +0 -0
  137. /package/dist/{src → orbcharts-plugins-basic/src}/series/defaults.d.ts +0 -0
  138. /package/dist/{src → orbcharts-plugins-basic/src}/series/index.d.ts +0 -0
  139. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Bubbles.d.ts +0 -0
  140. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Pie.d.ts +0 -0
  141. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/PieLabels.d.ts +0 -0
  142. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/SeriesLegend.d.ts +0 -0
  143. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Waffle.d.ts +0 -0
  144. /package/dist/{src → orbcharts-plugins-basic/src}/series/types.d.ts +0 -0
  145. /package/dist/{src → orbcharts-plugins-basic/src}/tree/defaults.d.ts +0 -0
  146. /package/dist/{src → orbcharts-plugins-basic/src}/tree/index.d.ts +0 -0
  147. /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeLegend.d.ts +0 -0
  148. /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeMap.d.ts +0 -0
  149. /package/dist/{src → orbcharts-plugins-basic/src}/tree/types.d.ts +0 -0
  150. /package/dist/{src → orbcharts-plugins-basic/src}/utils/commonUtils.d.ts +0 -0
  151. /package/dist/{src → orbcharts-plugins-basic/src}/utils/d3Graphics.d.ts +0 -0
  152. /package/dist/{src → orbcharts-plugins-basic/src}/utils/d3Utils.d.ts +0 -0
  153. /package/dist/{src → orbcharts-plugins-basic/src}/utils/observables.d.ts +0 -0
  154. /package/dist/{src → orbcharts-plugins-basic/src}/utils/orbchartsUtils.d.ts +0 -0
  155. /package/dist/{vite.config.d.ts → orbcharts-plugins-basic/vite.config.d.ts} +0 -0
@@ -1,71 +1,80 @@
1
- import {
2
- takeUntil,
3
- map,
4
- switchMap,
5
- iif,
6
- Subject } from 'rxjs'
7
- import {
8
- defineGridPlugin } from '@orbcharts/core'
9
- import { DEFAULT_VALUE_STACK_AXIS_PARAMS } from '../defaults'
10
-
11
- import { createBaseValueAxis } from '../../base/BaseValueAxis'
12
-
13
- const pluginName = 'ValueStackAxis'
14
-
15
- export const ValueStackAxis = defineGridPlugin(pluginName, DEFAULT_VALUE_STACK_AXIS_PARAMS)(({ selection, name, observer, subject }) => {
16
-
17
- const destroy$ = new Subject()
18
-
19
- // 將原本的value全部替換成加總後的value
20
- const stackedData$ = observer.computedData$.pipe(
21
- takeUntil(destroy$),
22
- map(data => {
23
- // 將同一group的value加總起來
24
- const stackedValue = new Array(data[0] ? data[0].length : 0)
25
- .fill(null)
26
- .map((_, i) => {
27
- return data.reduce((prev, current) => {
28
- if (current && current[i]) {
29
- const currentValue = current[i].value == null || current[i].visible == false
30
- ? 0
31
- : current[i].value!
32
- return prev + currentValue
33
- }
34
- return prev
35
- }, 0)
36
- })
37
- // 將原本的value全部替換成加總後的value
38
- const computedData = data.map((series, seriesIndex) => {
39
- return series.map((d, i) => {
40
- return {
41
- ...d,
42
- value: stackedValue[i],
43
- }
44
- })
45
- })
46
- return computedData
47
- }),
48
- )
49
-
50
- const unsubscribeBaseValueAxis = createBaseValueAxis(pluginName, {
51
- selection,
52
- computedData$: observer.isSeriesPositionSeprate$.pipe(
53
- switchMap(isSeriesPositionSeprate => {
54
- return iif(() => isSeriesPositionSeprate, observer.computedData$, stackedData$)
55
- })
56
- ),
57
- fullParams$: observer.fullParams$,
58
- fullDataFormatter$: observer.fullDataFormatter$,
59
- fullChartParams$: observer.fullChartParams$,
60
- gridAxesTransform$: observer.gridAxesTransform$,
61
- gridAxesReverseTransform$: observer.gridAxesReverseTransform$,
62
- gridAxesSize$: observer.gridAxesSize$,
63
- gridContainer$: observer.gridContainer$,
64
- isSeriesPositionSeprate$: observer.isSeriesPositionSeprate$,
65
- })
66
-
67
- return () => {
68
- destroy$.next(undefined)
69
- unsubscribeBaseValueAxis()
70
- }
1
+ import {
2
+ takeUntil,
3
+ map,
4
+ distinctUntilChanged,
5
+ shareReplay,
6
+ switchMap,
7
+ iif,
8
+ Subject } from 'rxjs'
9
+ import {
10
+ defineGridPlugin } from '@orbcharts/core'
11
+ import { DEFAULT_VALUE_STACK_AXIS_PARAMS } from '../defaults'
12
+
13
+ import { createBaseValueAxis } from '../../base/BaseValueAxis'
14
+
15
+ const pluginName = 'ValueStackAxis'
16
+
17
+ export const ValueStackAxis = defineGridPlugin(pluginName, DEFAULT_VALUE_STACK_AXIS_PARAMS)(({ selection, name, observer, subject }) => {
18
+
19
+ const destroy$ = new Subject()
20
+
21
+ // 將原本的value全部替換成加總後的value
22
+ const stackedData$ = observer.computedData$.pipe(
23
+ takeUntil(destroy$),
24
+ map(data => {
25
+ // 將同一group的value加總起來
26
+ const stackedValue = new Array(data[0] ? data[0].length : 0)
27
+ .fill(null)
28
+ .map((_, i) => {
29
+ return data.reduce((prev, current) => {
30
+ if (current && current[i]) {
31
+ const currentValue = current[i].value == null || current[i].visible == false
32
+ ? 0
33
+ : current[i].value!
34
+ return prev + currentValue
35
+ }
36
+ return prev
37
+ }, 0)
38
+ })
39
+ // 將原本的value全部替換成加總後的value
40
+ const computedData = data.map((series, seriesIndex) => {
41
+ return series.map((d, i) => {
42
+ return {
43
+ ...d,
44
+ value: stackedValue[i],
45
+ }
46
+ })
47
+ })
48
+ return computedData
49
+ }),
50
+ )
51
+
52
+ const isSeriesSeprate$ = observer.fullDataFormatter$.pipe(
53
+ takeUntil(destroy$),
54
+ map(d => d.grid.separateSeries),
55
+ distinctUntilChanged(),
56
+ shareReplay(1)
57
+ )
58
+
59
+ const unsubscribeBaseValueAxis = createBaseValueAxis(pluginName, {
60
+ selection,
61
+ computedData$: isSeriesSeprate$.pipe(
62
+ switchMap(isSeriesSeprate => {
63
+ return iif(() => isSeriesSeprate, observer.computedData$, stackedData$)
64
+ })
65
+ ),
66
+ fullParams$: observer.fullParams$,
67
+ fullDataFormatter$: observer.fullDataFormatter$,
68
+ fullChartParams$: observer.fullChartParams$,
69
+ gridAxesTransform$: observer.gridAxesTransform$,
70
+ gridAxesReverseTransform$: observer.gridAxesReverseTransform$,
71
+ gridAxesSize$: observer.gridAxesSize$,
72
+ gridContainerPosition$: observer.gridContainerPosition$,
73
+ isSeriesSeprate$,
74
+ })
75
+
76
+ return () => {
77
+ destroy$.next(undefined)
78
+ unsubscribeBaseValueAxis()
79
+ }
71
80
  })
package/src/grid/types.ts CHANGED
@@ -1,121 +1,121 @@
1
- import type { ColorType } from '@orbcharts/core'
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
- onlyShowHighlighted: boolean
29
- }
30
-
31
- export interface GroupAuxParams {
32
- showLine: boolean
33
- showLabel: boolean
34
- lineDashArray: string
35
- lineColorType: ColorType
36
- labelColorType: ColorType
37
- labelTextColorType: ColorType
38
- labelTextFormat: string | ((text: any) => string)
39
- labelPadding: number
40
- }
41
-
42
- export interface BarsParams {
43
- // barType: BarType
44
- barWidth: number
45
- barPadding: number
46
- barGroupPadding: number // 群組和群組間的間隔
47
- barRadius: number | boolean
48
- }
49
-
50
- export interface BarsDivergingParams extends BarsParams {}
51
-
52
- export interface BarStackParams {
53
- barWidth: number
54
- barGroupPadding: number
55
- barRadius: number | boolean
56
- }
57
-
58
- export interface BarsTriangleParams {
59
- barWidth: number
60
- barPadding: number
61
- barGroupPadding: number // 群組和群組間的間隔
62
- linearGradientOpacity: [number, number]
63
- }
64
-
65
- export interface GroupAxisParams {
66
- // xLabel: string
67
- // labelAnchor: 'start' | 'end'
68
- labelOffset: [number, number]
69
- labelColorType: ColorType
70
- axisLineVisible: boolean
71
- axisLineColorType: ColorType
72
- tickFormat: string | ((text: any) => string)
73
- tickLineVisible: boolean
74
- tickPadding: number
75
- tickFullLine: boolean
76
- tickFullLineDasharray: string
77
- tickColorType: ColorType
78
- // axisLineColor: string
79
- // axisLabelColor: string
80
- tickTextRotate: number
81
- tickTextColorType: ColorType
82
- }
83
-
84
- export interface ValueAxisParams {
85
- // xLabel: string
86
- // labelAnchor: 'start' | 'end'
87
- labelOffset: [number, number]
88
- labelColorType: ColorType
89
- axisLineVisible: boolean
90
- axisLineColorType: ColorType
91
- ticks: number
92
- tickFormat: string | ((text: d3.NumberValue) => string)
93
- tickLineVisible: boolean
94
- tickPadding: number
95
- tickFullLine: boolean
96
- tickFullLineDasharray: string
97
- tickColorType: ColorType
98
- // axisLineColor: string
99
- // axisLabelColor: string
100
- tickTextRotate: number
101
- tickTextColorType: ColorType
102
- }
103
-
104
- export interface ValueStackAxisParams extends ValueAxisParams {}
105
-
106
- export interface ScalingAreaParams {
107
-
108
- }
109
-
110
- export interface GridLegendParams {
111
- position: 'top' | 'bottom' | 'left' | 'right'
112
- justify: 'start' | 'center' | 'end'
113
- padding: number
114
- backgroundFill: ColorType
115
- backgroundStroke: ColorType
116
- gap: number
117
- listRectWidth: number
118
- listRectHeight: number
119
- listRectRadius: number
120
- textColorType: ColorType
1
+ import type { ColorType } from '@orbcharts/core'
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
+ onlyShowHighlighted: boolean
29
+ }
30
+
31
+ export interface GroupAuxParams {
32
+ showLine: boolean
33
+ showLabel: boolean
34
+ lineDashArray: string
35
+ lineColorType: ColorType
36
+ labelColorType: ColorType
37
+ labelTextColorType: ColorType
38
+ labelTextFormat: string | ((text: any) => string)
39
+ labelPadding: number
40
+ }
41
+
42
+ export interface BarsParams {
43
+ // barType: BarType
44
+ barWidth: number
45
+ barPadding: number
46
+ barGroupPadding: number // 群組和群組間的間隔
47
+ barRadius: number | boolean
48
+ }
49
+
50
+ export interface BarsDivergingParams extends BarsParams {}
51
+
52
+ export interface BarStackParams {
53
+ barWidth: number
54
+ barGroupPadding: number
55
+ barRadius: number | boolean
56
+ }
57
+
58
+ export interface BarsTriangleParams {
59
+ barWidth: number
60
+ barPadding: number
61
+ barGroupPadding: number // 群組和群組間的間隔
62
+ linearGradientOpacity: [number, number]
63
+ }
64
+
65
+ export interface GroupAxisParams {
66
+ // xLabel: string
67
+ // labelAnchor: 'start' | 'end'
68
+ labelOffset: [number, number]
69
+ labelColorType: ColorType
70
+ axisLineVisible: boolean
71
+ axisLineColorType: ColorType
72
+ tickFormat: string | ((text: any) => string)
73
+ tickLineVisible: boolean
74
+ tickPadding: number
75
+ tickFullLine: boolean
76
+ tickFullLineDasharray: string
77
+ tickColorType: ColorType
78
+ // axisLineColor: string
79
+ // axisLabelColor: string
80
+ tickTextRotate: number
81
+ tickTextColorType: ColorType
82
+ }
83
+
84
+ export interface ValueAxisParams {
85
+ // xLabel: string
86
+ // labelAnchor: 'start' | 'end'
87
+ labelOffset: [number, number]
88
+ labelColorType: ColorType
89
+ axisLineVisible: boolean
90
+ axisLineColorType: ColorType
91
+ ticks: number
92
+ tickFormat: string | ((text: d3.NumberValue) => string)
93
+ tickLineVisible: boolean
94
+ tickPadding: number
95
+ tickFullLine: boolean
96
+ tickFullLineDasharray: string
97
+ tickColorType: ColorType
98
+ // axisLineColor: string
99
+ // axisLabelColor: string
100
+ tickTextRotate: number
101
+ tickTextColorType: ColorType
102
+ }
103
+
104
+ export interface ValueStackAxisParams extends ValueAxisParams {}
105
+
106
+ export interface ScalingAreaParams {
107
+
108
+ }
109
+
110
+ export interface GridLegendParams {
111
+ position: 'top' | 'bottom' | 'left' | 'right'
112
+ justify: 'start' | 'center' | 'end'
113
+ padding: number
114
+ backgroundFill: ColorType
115
+ backgroundStroke: ColorType
116
+ gap: number
117
+ listRectWidth: number
118
+ listRectHeight: number
119
+ listRectRadius: number
120
+ textColorType: ColorType
121
121
  }
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'