@orbcharts/plugins-basic 3.0.0-alpha.50 → 3.0.0-alpha.52

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-plugins-basic.es.js +7234 -7303
  3. package/dist/orbcharts-plugins-basic.umd.js +9 -9
  4. package/dist/src/base/BaseGroupAxis.d.ts +1 -0
  5. package/dist/src/grid/index.d.ts +1 -1
  6. package/dist/src/grid/plugins/BarsPN.d.ts +1 -0
  7. package/dist/src/grid/types.d.ts +3 -2
  8. package/dist/src/series/types.d.ts +2 -3
  9. package/package.json +42 -42
  10. package/src/base/BaseBarStack.ts +778 -778
  11. package/src/base/BaseBars.ts +764 -764
  12. package/src/base/BaseBarsTriangle.ts +672 -672
  13. package/src/base/BaseDots.ts +513 -502
  14. package/src/base/BaseGroupAxis.ts +558 -496
  15. package/src/base/BaseLegend.ts +641 -641
  16. package/src/base/BaseLineAreas.ts +625 -625
  17. package/src/base/BaseLines.ts +699 -699
  18. package/src/base/BaseValueAxis.ts +478 -478
  19. package/src/base/types.ts +2 -2
  20. package/src/grid/defaults.ts +125 -123
  21. package/src/grid/gridObservables.ts +248 -248
  22. package/src/grid/index.ts +15 -15
  23. package/src/grid/plugins/BarStack.ts +43 -43
  24. package/src/grid/plugins/Bars.ts +44 -44
  25. package/src/grid/plugins/{BarsDiverging.ts → BarsPN.ts} +41 -41
  26. package/src/grid/plugins/BarsTriangle.ts +42 -42
  27. package/src/grid/plugins/Dots.ts +37 -37
  28. package/src/grid/plugins/GridLegend.ts +59 -59
  29. package/src/grid/plugins/GroupAux.ts +922 -645
  30. package/src/grid/plugins/GroupAxis.ts +35 -35
  31. package/src/grid/plugins/LineAreas.ts +39 -39
  32. package/src/grid/plugins/Lines.ts +38 -38
  33. package/src/grid/plugins/ScalingArea.ts +173 -173
  34. package/src/grid/plugins/ValueAxis.ts +36 -36
  35. package/src/grid/plugins/ValueStackAxis.ts +38 -38
  36. package/src/grid/types.ts +122 -120
  37. package/src/index.ts +9 -9
  38. package/src/multiGrid/defaults.ts +153 -152
  39. package/src/multiGrid/index.ts +13 -13
  40. package/src/multiGrid/multiGridObservables.ts +44 -44
  41. package/src/multiGrid/plugins/MultiBarStack.ts +78 -78
  42. package/src/multiGrid/plugins/MultiBars.ts +77 -77
  43. package/src/multiGrid/plugins/MultiBarsTriangle.ts +77 -77
  44. package/src/multiGrid/plugins/MultiDots.ts +65 -65
  45. package/src/multiGrid/plugins/MultiGridLegend.ts +89 -89
  46. package/src/multiGrid/plugins/MultiGroupAxis.ts +69 -69
  47. package/src/multiGrid/plugins/MultiLineAreas.ts +67 -67
  48. package/src/multiGrid/plugins/MultiLines.ts +66 -66
  49. package/src/multiGrid/plugins/MultiValueAxis.ts +69 -69
  50. package/src/multiGrid/plugins/MultiValueStackAxis.ts +69 -69
  51. package/src/multiGrid/plugins/OverlappingValueAxes.ts +166 -166
  52. package/src/multiGrid/plugins/OverlappingValueStackAxes.ts +167 -167
  53. package/src/multiGrid/types.ts +71 -71
  54. package/src/noneData/defaults.ts +64 -64
  55. package/src/noneData/index.ts +3 -3
  56. package/src/noneData/plugins/Container.ts +10 -10
  57. package/src/noneData/plugins/Tooltip.ts +310 -310
  58. package/src/noneData/types.ts +26 -26
  59. package/src/series/defaults.ts +126 -126
  60. package/src/series/index.ts +9 -9
  61. package/src/series/plugins/Bubbles.ts +545 -602
  62. package/src/series/plugins/Pie.ts +576 -576
  63. package/src/series/plugins/PieEventTexts.ts +262 -262
  64. package/src/series/plugins/PieLabels.ts +304 -304
  65. package/src/series/plugins/Rose.ts +472 -472
  66. package/src/series/plugins/RoseLabels.ts +362 -362
  67. package/src/series/plugins/SeriesLegend.ts +59 -59
  68. package/src/series/seriesObservables.ts +145 -145
  69. package/src/series/seriesUtils.ts +51 -51
  70. package/src/series/types.ts +83 -83
  71. package/src/tree/defaults.ts +22 -22
  72. package/src/tree/index.ts +3 -3
  73. package/src/tree/plugins/TreeLegend.ts +59 -59
  74. package/src/tree/plugins/TreeMap.ts +305 -305
  75. package/src/tree/types.ts +23 -23
  76. package/src/utils/commonUtils.ts +21 -21
  77. package/src/utils/d3Graphics.ts +124 -124
  78. package/src/utils/d3Utils.ts +73 -73
  79. package/src/utils/observables.ts +14 -14
  80. package/src/utils/orbchartsUtils.ts +100 -100
  81. package/tsconfig.dev.json +16 -16
  82. package/tsconfig.json +13 -13
  83. package/tsconfig.prod.json +13 -13
  84. package/vite.config.js +49 -49
  85. package/dist/src/grid/plugins/BarsDiverging.d.ts +0 -1
@@ -1,39 +1,39 @@
1
- import {
2
- takeUntil,
3
- map,
4
- distinctUntilChanged,
5
- shareReplay,
6
- switchMap,
7
- iif,
8
- Observable,
9
- Subject } from 'rxjs'
10
- import type { ComputedDataGrid } from '@orbcharts/core'
11
- import {
12
- defineGridPlugin } from '@orbcharts/core'
13
- import { DEFAULT_VALUE_STACK_AXIS_PARAMS } from '../defaults'
14
- import { createBaseValueAxis } from '../../base/BaseValueAxis'
15
-
16
- const pluginName = 'ValueStackAxis'
17
-
18
- export const ValueStackAxis = defineGridPlugin(pluginName, DEFAULT_VALUE_STACK_AXIS_PARAMS)(({ selection, name, observer, subject }) => {
19
-
20
- const destroy$ = new Subject()
21
-
22
- const unsubscribeBaseValueAxis = createBaseValueAxis(pluginName, {
23
- selection,
24
- computedData$: observer.computedStackedData$, // 計算疊加value的資料
25
- fullParams$: observer.fullParams$,
26
- fullDataFormatter$: observer.fullDataFormatter$,
27
- fullChartParams$: observer.fullChartParams$,
28
- gridAxesTransform$: observer.gridAxesTransform$,
29
- gridAxesReverseTransform$: observer.gridAxesReverseTransform$,
30
- gridAxesSize$: observer.gridAxesSize$,
31
- gridContainerPosition$: observer.gridContainerPosition$,
32
- isSeriesSeprate$: observer.isSeriesSeprate$,
33
- })
34
-
35
- return () => {
36
- destroy$.next(undefined)
37
- unsubscribeBaseValueAxis()
38
- }
1
+ import {
2
+ takeUntil,
3
+ map,
4
+ distinctUntilChanged,
5
+ shareReplay,
6
+ switchMap,
7
+ iif,
8
+ Observable,
9
+ Subject } from 'rxjs'
10
+ import type { ComputedDataGrid } from '@orbcharts/core'
11
+ import {
12
+ defineGridPlugin } from '@orbcharts/core'
13
+ import { DEFAULT_VALUE_STACK_AXIS_PARAMS } from '../defaults'
14
+ import { createBaseValueAxis } from '../../base/BaseValueAxis'
15
+
16
+ const pluginName = 'ValueStackAxis'
17
+
18
+ export const ValueStackAxis = defineGridPlugin(pluginName, DEFAULT_VALUE_STACK_AXIS_PARAMS)(({ selection, name, observer, subject }) => {
19
+
20
+ const destroy$ = new Subject()
21
+
22
+ const unsubscribeBaseValueAxis = createBaseValueAxis(pluginName, {
23
+ selection,
24
+ computedData$: observer.computedStackedData$, // 計算疊加value的資料
25
+ fullParams$: observer.fullParams$,
26
+ fullDataFormatter$: observer.fullDataFormatter$,
27
+ fullChartParams$: observer.fullChartParams$,
28
+ gridAxesTransform$: observer.gridAxesTransform$,
29
+ gridAxesReverseTransform$: observer.gridAxesReverseTransform$,
30
+ gridAxesSize$: observer.gridAxesSize$,
31
+ gridContainerPosition$: observer.gridContainerPosition$,
32
+ isSeriesSeprate$: observer.isSeriesSeprate$,
33
+ })
34
+
35
+ return () => {
36
+ destroy$.next(undefined)
37
+ unsubscribeBaseValueAxis()
38
+ }
39
39
  })
package/src/grid/types.ts CHANGED
@@ -1,121 +1,123 @@
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
+ // 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
+ }
42
+
43
+ export interface BarsParams {
44
+ // barType: BarType
45
+ barWidth: number
46
+ barPadding: number
47
+ barGroupPadding: number // 群組和群組間的間隔
48
+ barRadius: number | boolean
49
+ }
50
+
51
+ export interface BarsPNParams extends BarsParams {}
52
+
53
+ export interface BarStackParams {
54
+ barWidth: number
55
+ barGroupPadding: number
56
+ barRadius: number | boolean
57
+ }
58
+
59
+ export interface BarsTriangleParams {
60
+ barWidth: number
61
+ barPadding: number
62
+ barGroupPadding: number // 群組和群組間的間隔
63
+ linearGradientOpacity: [number, number]
64
+ }
65
+
66
+ export interface GroupAxisParams {
67
+ // xLabel: string
68
+ // labelAnchor: 'start' | 'end'
69
+ labelOffset: [number, number]
70
+ labelColorType: ColorType
71
+ axisLineVisible: boolean
72
+ axisLineColorType: ColorType
73
+ ticks: number | null | 'all'
74
+ tickFormat: string | ((text: any) => string)
75
+ tickLineVisible: boolean
76
+ tickPadding: number
77
+ tickFullLine: boolean
78
+ tickFullLineDasharray: string
79
+ tickColorType: ColorType
80
+ // axisLineColor: string
81
+ // axisLabelColor: string
82
+ tickTextRotate: number
83
+ tickTextColorType: ColorType
84
+ }
85
+
86
+ export interface ValueAxisParams {
87
+ // xLabel: string
88
+ // labelAnchor: 'start' | 'end'
89
+ labelOffset: [number, number]
90
+ labelColorType: ColorType
91
+ axisLineVisible: boolean
92
+ axisLineColorType: ColorType
93
+ ticks: number | null
94
+ tickFormat: string | ((text: d3.NumberValue) => string)
95
+ tickLineVisible: boolean
96
+ tickPadding: number
97
+ tickFullLine: boolean
98
+ tickFullLineDasharray: string
99
+ tickColorType: ColorType
100
+ // axisLineColor: string
101
+ // axisLabelColor: string
102
+ tickTextRotate: number
103
+ tickTextColorType: ColorType
104
+ }
105
+
106
+ export interface ValueStackAxisParams extends ValueAxisParams {}
107
+
108
+ export interface ScalingAreaParams {
109
+
110
+ }
111
+
112
+ export interface GridLegendParams {
113
+ position: 'top' | 'bottom' | 'left' | 'right'
114
+ justify: 'start' | 'center' | 'end'
115
+ padding: number
116
+ backgroundFill: ColorType
117
+ backgroundStroke: ColorType
118
+ gap: number
119
+ listRectWidth: number
120
+ listRectHeight: number
121
+ listRectRadius: number
122
+ textColorType: ColorType
121
123
  }
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'
@@ -1,152 +1,153 @@
1
- import type {
2
- MultiGridLegendParams,
3
- MultiBarsParams,
4
- MultiBarStackParams,
5
- MultiBarsTriangleParams,
6
- MultiLinesParams,
7
- MultiLineAreasParams,
8
- MultiDotsParams,
9
- MultiGroupAxisParams,
10
- MultiValueAxisParams,
11
- MultiValueStackAxisParams,
12
- OverlappingValueAxesParams
13
- } from './types'
14
-
15
- export const DEFAULT_MULTI_GRID_LEGEND_PARAMS: MultiGridLegendParams = {
16
- position: 'right',
17
- justify: 'end',
18
- padding: 28,
19
- backgroundFill: 'none',
20
- backgroundStroke: 'none',
21
- gap: 10,
22
- listRectWidth: 14,
23
- listRectHeight: 14,
24
- listRectRadius: 0,
25
- gridList: [
26
- {
27
- listRectWidth: 14,
28
- listRectHeight: 14,
29
- listRectRadius: 0,
30
- }
31
- ],
32
- textColorType: 'primary'
33
- }
34
-
35
- export const DEFAULT_MULTI_GROUP_AXIS_PARAMS: MultiGroupAxisParams = {
36
- // labelAnchor: 'start',
37
- labelOffset: [0, 0],
38
- labelColorType: 'primary',
39
- axisLineVisible: true,
40
- axisLineColorType: 'primary',
41
- tickFormat: text => text,
42
- tickLineVisible: true,
43
- tickPadding: 20,
44
- tickFullLine: false,
45
- tickFullLineDasharray: 'none',
46
- tickColorType: 'secondary',
47
- tickTextRotate: 0,
48
- tickTextColorType: 'primary',
49
- gridIndexes: [0]
50
- }
51
-
52
- export const DEFAULT_MULTI_VALUE_AXIS_PARAMS: MultiValueAxisParams = {
53
- // labelAnchor: 'end',
54
- labelOffset: [0, 0],
55
- labelColorType: 'primary',
56
- axisLineVisible: false,
57
- axisLineColorType: 'primary',
58
- ticks: 4,
59
- tickFormat: ',.0f',
60
- tickLineVisible: true,
61
- tickPadding: 20,
62
- tickFullLine: true,
63
- tickFullLineDasharray: 'none',
64
- tickColorType: 'secondary',
65
- tickTextRotate: 0,
66
- tickTextColorType: 'primary',
67
- gridIndexes: [0]
68
- }
69
-
70
- export const DEFAULT_MULTI_VALUE_STACK_AXIS_PARAMS: MultiValueStackAxisParams = {
71
- ...DEFAULT_MULTI_VALUE_AXIS_PARAMS
72
- }
73
-
74
- export const DEFAULT_MULTI_BARS_PARAMS: MultiBarsParams = {
75
- barWidth: 0,
76
- barPadding: 1,
77
- barGroupPadding: 40,
78
- barRadius: false,
79
- gridIndexes: [0]
80
- }
81
-
82
- export const DEFAULT_MULTI_BAR_STACK_PARAMS: MultiBarStackParams = {
83
- barWidth: 0,
84
- barGroupPadding: 10,
85
- barRadius: false,
86
- gridIndexes: [0]
87
- }
88
-
89
- export const DEFAULT_MULTI_BARS_TRIANGLE_PARAMS: MultiBarsTriangleParams = {
90
- barWidth: 0,
91
- barPadding: 1,
92
- barGroupPadding: 20,
93
- linearGradientOpacity: [1, 0],
94
- gridIndexes: [0]
95
- }
96
-
97
- export const DEFAULT_MULTI_LINES_PARAMS: MultiLinesParams = {
98
- lineCurve: 'curveLinear',
99
- lineWidth: 2,
100
- gridIndexes: [1]
101
- }
102
-
103
- export const DEFAULT_MULTI_LINE_AREAS_PARAMS: MultiLineAreasParams = {
104
- lineCurve: 'curveLinear',
105
- linearGradientOpacity: [1, 0],
106
- gridIndexes: [1]
107
- }
108
-
109
- export const DEFAULT_MULTI_DOTS_PARAMS: MultiDotsParams = {
110
- radius: 4,
111
- fillColorType: 'white',
112
- strokeColorType: 'series',
113
- strokeWidth: 2,
114
- onlyShowHighlighted: false,
115
- gridIndexes: [1]
116
- }
117
-
118
- export const DEFAULT_OVERLAPPING_VALUE_AXES_PARAMS: OverlappingValueAxesParams = {
119
- firstAxis: {
120
- // labelAnchor: 'end',
121
- labelOffset: [0, 0],
122
- labelColorType: 'primary',
123
- axisLineVisible: false,
124
- axisLineColorType: 'primary',
125
- ticks: 4,
126
- tickFormat: ',.0f',
127
- tickLineVisible: true,
128
- tickPadding: 20,
129
- tickFullLine: true,
130
- tickFullLineDasharray: 'none',
131
- tickColorType: 'secondary',
132
- tickTextRotate: 0,
133
- tickTextColorType: 'primary',
134
- },
135
- secondAxis: {
136
- // labelAnchor: 'end',
137
- labelOffset: [0, 0],
138
- labelColorType: 'primary',
139
- axisLineVisible: false,
140
- axisLineColorType: 'primary',
141
- ticks: 4,
142
- tickFormat: ',.0f',
143
- tickLineVisible: true,
144
- tickPadding: 20,
145
- tickFullLine: true,
146
- tickFullLineDasharray: 'none',
147
- tickColorType: 'secondary',
148
- tickTextRotate: 0,
149
- tickTextColorType: 'primary',
150
- },
151
- gridIndexes: [0, 1]
152
- }
1
+ import type {
2
+ MultiGridLegendParams,
3
+ MultiBarsParams,
4
+ MultiBarStackParams,
5
+ MultiBarsTriangleParams,
6
+ MultiLinesParams,
7
+ MultiLineAreasParams,
8
+ MultiDotsParams,
9
+ MultiGroupAxisParams,
10
+ MultiValueAxisParams,
11
+ MultiValueStackAxisParams,
12
+ OverlappingValueAxesParams
13
+ } from './types'
14
+
15
+ export const DEFAULT_MULTI_GRID_LEGEND_PARAMS: MultiGridLegendParams = {
16
+ position: 'right',
17
+ justify: 'end',
18
+ padding: 28,
19
+ backgroundFill: 'none',
20
+ backgroundStroke: 'none',
21
+ gap: 10,
22
+ listRectWidth: 14,
23
+ listRectHeight: 14,
24
+ listRectRadius: 0,
25
+ gridList: [
26
+ {
27
+ listRectWidth: 14,
28
+ listRectHeight: 14,
29
+ listRectRadius: 0,
30
+ }
31
+ ],
32
+ textColorType: 'primary'
33
+ }
34
+
35
+ export const DEFAULT_MULTI_GROUP_AXIS_PARAMS: MultiGroupAxisParams = {
36
+ // labelAnchor: 'start',
37
+ labelOffset: [0, 0],
38
+ labelColorType: 'primary',
39
+ axisLineVisible: true,
40
+ axisLineColorType: 'primary',
41
+ ticks: 'all',
42
+ tickFormat: text => text,
43
+ tickLineVisible: true,
44
+ tickPadding: 20,
45
+ tickFullLine: false,
46
+ tickFullLineDasharray: 'none',
47
+ tickColorType: 'secondary',
48
+ tickTextRotate: 0,
49
+ tickTextColorType: 'primary',
50
+ gridIndexes: [0]
51
+ }
52
+
53
+ export const DEFAULT_MULTI_VALUE_AXIS_PARAMS: MultiValueAxisParams = {
54
+ // labelAnchor: 'end',
55
+ labelOffset: [0, 0],
56
+ labelColorType: 'primary',
57
+ axisLineVisible: false,
58
+ axisLineColorType: 'primary',
59
+ ticks: 4,
60
+ tickFormat: ',.0f',
61
+ tickLineVisible: true,
62
+ tickPadding: 20,
63
+ tickFullLine: true,
64
+ tickFullLineDasharray: 'none',
65
+ tickColorType: 'secondary',
66
+ tickTextRotate: 0,
67
+ tickTextColorType: 'primary',
68
+ gridIndexes: [0]
69
+ }
70
+
71
+ export const DEFAULT_MULTI_VALUE_STACK_AXIS_PARAMS: MultiValueStackAxisParams = {
72
+ ...DEFAULT_MULTI_VALUE_AXIS_PARAMS
73
+ }
74
+
75
+ export const DEFAULT_MULTI_BARS_PARAMS: MultiBarsParams = {
76
+ barWidth: 0,
77
+ barPadding: 1,
78
+ barGroupPadding: 40,
79
+ barRadius: false,
80
+ gridIndexes: [0]
81
+ }
82
+
83
+ export const DEFAULT_MULTI_BAR_STACK_PARAMS: MultiBarStackParams = {
84
+ barWidth: 0,
85
+ barGroupPadding: 10,
86
+ barRadius: false,
87
+ gridIndexes: [0]
88
+ }
89
+
90
+ export const DEFAULT_MULTI_BARS_TRIANGLE_PARAMS: MultiBarsTriangleParams = {
91
+ barWidth: 0,
92
+ barPadding: 1,
93
+ barGroupPadding: 20,
94
+ linearGradientOpacity: [1, 0],
95
+ gridIndexes: [0]
96
+ }
97
+
98
+ export const DEFAULT_MULTI_LINES_PARAMS: MultiLinesParams = {
99
+ lineCurve: 'curveLinear',
100
+ lineWidth: 2,
101
+ gridIndexes: [1]
102
+ }
103
+
104
+ export const DEFAULT_MULTI_LINE_AREAS_PARAMS: MultiLineAreasParams = {
105
+ lineCurve: 'curveLinear',
106
+ linearGradientOpacity: [1, 0],
107
+ gridIndexes: [1]
108
+ }
109
+
110
+ export const DEFAULT_MULTI_DOTS_PARAMS: MultiDotsParams = {
111
+ radius: 4,
112
+ fillColorType: 'white',
113
+ strokeColorType: 'series',
114
+ strokeWidth: 2,
115
+ onlyShowHighlighted: false,
116
+ gridIndexes: [1]
117
+ }
118
+
119
+ export const DEFAULT_OVERLAPPING_VALUE_AXES_PARAMS: OverlappingValueAxesParams = {
120
+ firstAxis: {
121
+ // labelAnchor: 'end',
122
+ labelOffset: [0, 0],
123
+ labelColorType: 'primary',
124
+ axisLineVisible: false,
125
+ axisLineColorType: 'primary',
126
+ ticks: 4,
127
+ tickFormat: ',.0f',
128
+ tickLineVisible: true,
129
+ tickPadding: 20,
130
+ tickFullLine: true,
131
+ tickFullLineDasharray: 'none',
132
+ tickColorType: 'secondary',
133
+ tickTextRotate: 0,
134
+ tickTextColorType: 'primary',
135
+ },
136
+ secondAxis: {
137
+ // labelAnchor: 'end',
138
+ labelOffset: [0, 0],
139
+ labelColorType: 'primary',
140
+ axisLineVisible: false,
141
+ axisLineColorType: 'primary',
142
+ ticks: 4,
143
+ tickFormat: ',.0f',
144
+ tickLineVisible: true,
145
+ tickPadding: 20,
146
+ tickFullLine: true,
147
+ tickFullLineDasharray: 'none',
148
+ tickColorType: 'secondary',
149
+ tickTextRotate: 0,
150
+ tickTextColorType: 'primary',
151
+ },
152
+ gridIndexes: [0, 1]
153
+ }