@orbcharts/plugins-basic 3.0.0-alpha.43 → 3.0.0-alpha.44
Sign up to get free protection for your applications and to get access to all the features.
- package/LICENSE +200 -200
- package/dist/orbcharts-plugins-basic.es.js +5611 -5571
- package/dist/orbcharts-plugins-basic.umd.js +7 -7
- package/dist/src/base/BaseLegend.d.ts +1 -0
- package/package.json +42 -42
- package/src/base/BaseBarStack.ts +881 -881
- package/src/base/BaseBars.ts +750 -750
- package/src/base/BaseBarsTriangle.ts +659 -659
- package/src/base/BaseDots.ts +639 -639
- package/src/base/BaseGroupAxis.ts +496 -496
- package/src/base/BaseLegend.ts +641 -636
- package/src/base/BaseLineAreas.ts +621 -621
- package/src/base/BaseLines.ts +692 -692
- package/src/base/BaseValueAxis.ts +479 -479
- package/src/base/types.ts +2 -2
- package/src/grid/defaults.ts +121 -121
- package/src/grid/gridObservables.ts +263 -263
- package/src/grid/index.ts +15 -15
- package/src/grid/plugins/BarStack.ts +37 -37
- package/src/grid/plugins/Bars.ts +37 -37
- package/src/grid/plugins/BarsDiverging.ts +39 -39
- package/src/grid/plugins/BarsTriangle.ts +34 -34
- package/src/grid/plugins/Dots.ts +35 -35
- package/src/grid/plugins/GridLegend.ts +59 -58
- package/src/grid/plugins/GroupAux.ts +646 -643
- package/src/grid/plugins/GroupAxis.ts +30 -30
- package/src/grid/plugins/LineAreas.ts +36 -36
- package/src/grid/plugins/Lines.ts +35 -35
- package/src/grid/plugins/ScalingArea.ts +174 -174
- package/src/grid/plugins/ValueAxis.ts +31 -31
- package/src/grid/plugins/ValueStackAxis.ts +70 -70
- package/src/grid/types.ts +120 -120
- package/src/index.ts +9 -9
- package/src/multiGrid/defaults.ts +147 -147
- package/src/multiGrid/index.ts +11 -11
- package/src/multiGrid/multiGridObservables.ts +289 -289
- package/src/multiGrid/plugins/MultiBarStack.ts +60 -60
- package/src/multiGrid/plugins/MultiBars.ts +59 -59
- package/src/multiGrid/plugins/MultiBarsTriangle.ts +58 -58
- package/src/multiGrid/plugins/MultiDots.ts +58 -58
- package/src/multiGrid/plugins/MultiGridLegend.ts +89 -88
- package/src/multiGrid/plugins/MultiGroupAxis.ts +53 -53
- package/src/multiGrid/plugins/MultiLineAreas.ts +59 -59
- package/src/multiGrid/plugins/MultiLines.ts +58 -58
- package/src/multiGrid/plugins/MultiValueAxis.ts +53 -53
- package/src/multiGrid/plugins/OverlappingValueAxes.ts +164 -164
- package/src/multiGrid/types.ts +67 -67
- package/src/noneData/defaults.ts +61 -61
- package/src/noneData/index.ts +3 -3
- package/src/noneData/plugins/Container.ts +10 -10
- package/src/noneData/plugins/Tooltip.ts +310 -304
- package/src/noneData/types.ts +26 -26
- package/src/series/defaults.ts +99 -99
- package/src/series/index.ts +6 -6
- package/src/series/plugins/Bubbles.ts +551 -551
- package/src/series/plugins/Pie.ts +600 -600
- package/src/series/plugins/PieEventTexts.ts +194 -194
- package/src/series/plugins/PieLabels.ts +288 -288
- package/src/series/plugins/SeriesLegend.ts +59 -58
- package/src/series/seriesUtils.ts +50 -50
- package/src/series/types.ts +67 -67
- package/src/tree/defaults.ts +22 -22
- package/src/tree/index.ts +3 -3
- package/src/tree/plugins/TreeLegend.ts +59 -58
- package/src/tree/plugins/TreeMap.ts +305 -302
- package/src/tree/types.ts +23 -23
- package/src/utils/commonUtils.ts +21 -21
- package/src/utils/d3Graphics.ts +124 -124
- package/src/utils/d3Utils.ts +73 -73
- package/src/utils/observables.ts +14 -14
- package/src/utils/orbchartsUtils.ts +100 -100
- package/tsconfig.dev.json +16 -16
- package/tsconfig.json +13 -13
- package/tsconfig.prod.json +13 -13
- package/vite.config.js +49 -49
@@ -1,147 +1,147 @@
|
|
1
|
-
import type {
|
2
|
-
MultiGridLegendParams,
|
3
|
-
MultiBarsParams,
|
4
|
-
MultiBarStackParams,
|
5
|
-
MultiBarsTriangleParams,
|
6
|
-
MultiLinesParams,
|
7
|
-
MultiLineAreasParams,
|
8
|
-
MultiDotsParams,
|
9
|
-
MultiGroupAxisParams,
|
10
|
-
MultiValueAxisParams,
|
11
|
-
OverlappingValueAxesParams
|
12
|
-
} from './types'
|
13
|
-
|
14
|
-
export const DEFAULT_MULTI_GRID_LEGEND_PARAMS: MultiGridLegendParams = {
|
15
|
-
position: 'right',
|
16
|
-
justify: 'end',
|
17
|
-
padding: 28,
|
18
|
-
backgroundFill: 'none',
|
19
|
-
backgroundStroke: 'none',
|
20
|
-
gap: 10,
|
21
|
-
listRectWidth: 14,
|
22
|
-
listRectHeight: 14,
|
23
|
-
listRectRadius: 0,
|
24
|
-
gridList: [
|
25
|
-
{
|
26
|
-
listRectWidth: 14,
|
27
|
-
listRectHeight: 14,
|
28
|
-
listRectRadius: 0,
|
29
|
-
}
|
30
|
-
],
|
31
|
-
textColorType: 'primary'
|
32
|
-
}
|
33
|
-
|
34
|
-
export const DEFAULT_MULTI_GROUP_AXIS_PARAMS: MultiGroupAxisParams = {
|
35
|
-
// labelAnchor: 'start',
|
36
|
-
labelOffset: [0, 0],
|
37
|
-
labelColorType: 'primary',
|
38
|
-
axisLineVisible: true,
|
39
|
-
axisLineColorType: 'primary',
|
40
|
-
tickFormat: text => text,
|
41
|
-
tickLineVisible: true,
|
42
|
-
tickPadding: 20,
|
43
|
-
tickFullLine: false,
|
44
|
-
tickFullLineDasharray: 'none',
|
45
|
-
tickColorType: 'secondary',
|
46
|
-
tickTextRotate: 0,
|
47
|
-
tickTextColorType: 'primary',
|
48
|
-
gridIndexes: [0]
|
49
|
-
}
|
50
|
-
|
51
|
-
export const DEFAULT_MULTI_VALUE_AXIS_PARAMS: MultiValueAxisParams = {
|
52
|
-
// labelAnchor: 'end',
|
53
|
-
labelOffset: [0, 0],
|
54
|
-
labelColorType: 'primary',
|
55
|
-
axisLineVisible: false,
|
56
|
-
axisLineColorType: 'primary',
|
57
|
-
ticks: 4,
|
58
|
-
tickFormat: ',.0f',
|
59
|
-
tickLineVisible: true,
|
60
|
-
tickPadding: 20,
|
61
|
-
tickFullLine: true,
|
62
|
-
tickFullLineDasharray: 'none',
|
63
|
-
tickColorType: 'secondary',
|
64
|
-
tickTextRotate: 0,
|
65
|
-
tickTextColorType: 'primary',
|
66
|
-
gridIndexes: [0]
|
67
|
-
}
|
68
|
-
|
69
|
-
export const DEFAULT_MULTI_BARS_PARAMS: MultiBarsParams = {
|
70
|
-
barWidth: 0,
|
71
|
-
barPadding: 1,
|
72
|
-
barGroupPadding: 40,
|
73
|
-
barRadius: false,
|
74
|
-
gridIndexes: [0]
|
75
|
-
}
|
76
|
-
|
77
|
-
export const DEFAULT_MULTI_BAR_STACK_PARAMS: MultiBarStackParams = {
|
78
|
-
barWidth: 0,
|
79
|
-
barGroupPadding: 10,
|
80
|
-
barRadius: false,
|
81
|
-
gridIndexes: [0]
|
82
|
-
}
|
83
|
-
|
84
|
-
export const DEFAULT_MULTI_BARS_TRIANGLE_PARAMS: MultiBarsTriangleParams = {
|
85
|
-
barWidth: 0,
|
86
|
-
barPadding: 1,
|
87
|
-
barGroupPadding: 20,
|
88
|
-
linearGradientOpacity: [1, 0],
|
89
|
-
gridIndexes: [0]
|
90
|
-
}
|
91
|
-
|
92
|
-
export const DEFAULT_MULTI_LINES_PARAMS: MultiLinesParams = {
|
93
|
-
lineCurve: 'curveLinear',
|
94
|
-
lineWidth: 2,
|
95
|
-
gridIndexes: [1]
|
96
|
-
}
|
97
|
-
|
98
|
-
export const DEFAULT_MULTI_LINE_AREAS_PARAMS: MultiLineAreasParams = {
|
99
|
-
lineCurve: 'curveLinear',
|
100
|
-
linearGradientOpacity: [1, 0],
|
101
|
-
gridIndexes: [1]
|
102
|
-
}
|
103
|
-
|
104
|
-
export const DEFAULT_MULTI_DOTS_PARAMS: MultiDotsParams = {
|
105
|
-
radius: 4,
|
106
|
-
fillColorType: 'white',
|
107
|
-
strokeColorType: 'series',
|
108
|
-
strokeWidth: 2,
|
109
|
-
onlyShowHighlighted: false,
|
110
|
-
gridIndexes: [1]
|
111
|
-
}
|
112
|
-
|
113
|
-
export const DEFAULT_OVERLAPPING_VALUE_AXES_PARAMS: OverlappingValueAxesParams = {
|
114
|
-
firstAxis: {
|
115
|
-
// labelAnchor: 'end',
|
116
|
-
labelOffset: [0, 0],
|
117
|
-
labelColorType: 'primary',
|
118
|
-
axisLineVisible: false,
|
119
|
-
axisLineColorType: 'primary',
|
120
|
-
ticks: 4,
|
121
|
-
tickFormat: ',.0f',
|
122
|
-
tickLineVisible: true,
|
123
|
-
tickPadding: 20,
|
124
|
-
tickFullLine: true,
|
125
|
-
tickFullLineDasharray: 'none',
|
126
|
-
tickColorType: 'secondary',
|
127
|
-
tickTextRotate: 0,
|
128
|
-
tickTextColorType: 'primary',
|
129
|
-
},
|
130
|
-
secondAxis: {
|
131
|
-
// labelAnchor: 'end',
|
132
|
-
labelOffset: [0, 0],
|
133
|
-
labelColorType: 'primary',
|
134
|
-
axisLineVisible: false,
|
135
|
-
axisLineColorType: 'primary',
|
136
|
-
ticks: 4,
|
137
|
-
tickFormat: ',.0f',
|
138
|
-
tickLineVisible: true,
|
139
|
-
tickPadding: 20,
|
140
|
-
tickFullLine: true,
|
141
|
-
tickFullLineDasharray: 'none',
|
142
|
-
tickColorType: 'secondary',
|
143
|
-
tickTextRotate: 0,
|
144
|
-
tickTextColorType: 'primary',
|
145
|
-
},
|
146
|
-
gridIndexes: [0, 1]
|
147
|
-
}
|
1
|
+
import type {
|
2
|
+
MultiGridLegendParams,
|
3
|
+
MultiBarsParams,
|
4
|
+
MultiBarStackParams,
|
5
|
+
MultiBarsTriangleParams,
|
6
|
+
MultiLinesParams,
|
7
|
+
MultiLineAreasParams,
|
8
|
+
MultiDotsParams,
|
9
|
+
MultiGroupAxisParams,
|
10
|
+
MultiValueAxisParams,
|
11
|
+
OverlappingValueAxesParams
|
12
|
+
} from './types'
|
13
|
+
|
14
|
+
export const DEFAULT_MULTI_GRID_LEGEND_PARAMS: MultiGridLegendParams = {
|
15
|
+
position: 'right',
|
16
|
+
justify: 'end',
|
17
|
+
padding: 28,
|
18
|
+
backgroundFill: 'none',
|
19
|
+
backgroundStroke: 'none',
|
20
|
+
gap: 10,
|
21
|
+
listRectWidth: 14,
|
22
|
+
listRectHeight: 14,
|
23
|
+
listRectRadius: 0,
|
24
|
+
gridList: [
|
25
|
+
{
|
26
|
+
listRectWidth: 14,
|
27
|
+
listRectHeight: 14,
|
28
|
+
listRectRadius: 0,
|
29
|
+
}
|
30
|
+
],
|
31
|
+
textColorType: 'primary'
|
32
|
+
}
|
33
|
+
|
34
|
+
export const DEFAULT_MULTI_GROUP_AXIS_PARAMS: MultiGroupAxisParams = {
|
35
|
+
// labelAnchor: 'start',
|
36
|
+
labelOffset: [0, 0],
|
37
|
+
labelColorType: 'primary',
|
38
|
+
axisLineVisible: true,
|
39
|
+
axisLineColorType: 'primary',
|
40
|
+
tickFormat: text => text,
|
41
|
+
tickLineVisible: true,
|
42
|
+
tickPadding: 20,
|
43
|
+
tickFullLine: false,
|
44
|
+
tickFullLineDasharray: 'none',
|
45
|
+
tickColorType: 'secondary',
|
46
|
+
tickTextRotate: 0,
|
47
|
+
tickTextColorType: 'primary',
|
48
|
+
gridIndexes: [0]
|
49
|
+
}
|
50
|
+
|
51
|
+
export const DEFAULT_MULTI_VALUE_AXIS_PARAMS: MultiValueAxisParams = {
|
52
|
+
// labelAnchor: 'end',
|
53
|
+
labelOffset: [0, 0],
|
54
|
+
labelColorType: 'primary',
|
55
|
+
axisLineVisible: false,
|
56
|
+
axisLineColorType: 'primary',
|
57
|
+
ticks: 4,
|
58
|
+
tickFormat: ',.0f',
|
59
|
+
tickLineVisible: true,
|
60
|
+
tickPadding: 20,
|
61
|
+
tickFullLine: true,
|
62
|
+
tickFullLineDasharray: 'none',
|
63
|
+
tickColorType: 'secondary',
|
64
|
+
tickTextRotate: 0,
|
65
|
+
tickTextColorType: 'primary',
|
66
|
+
gridIndexes: [0]
|
67
|
+
}
|
68
|
+
|
69
|
+
export const DEFAULT_MULTI_BARS_PARAMS: MultiBarsParams = {
|
70
|
+
barWidth: 0,
|
71
|
+
barPadding: 1,
|
72
|
+
barGroupPadding: 40,
|
73
|
+
barRadius: false,
|
74
|
+
gridIndexes: [0]
|
75
|
+
}
|
76
|
+
|
77
|
+
export const DEFAULT_MULTI_BAR_STACK_PARAMS: MultiBarStackParams = {
|
78
|
+
barWidth: 0,
|
79
|
+
barGroupPadding: 10,
|
80
|
+
barRadius: false,
|
81
|
+
gridIndexes: [0]
|
82
|
+
}
|
83
|
+
|
84
|
+
export const DEFAULT_MULTI_BARS_TRIANGLE_PARAMS: MultiBarsTriangleParams = {
|
85
|
+
barWidth: 0,
|
86
|
+
barPadding: 1,
|
87
|
+
barGroupPadding: 20,
|
88
|
+
linearGradientOpacity: [1, 0],
|
89
|
+
gridIndexes: [0]
|
90
|
+
}
|
91
|
+
|
92
|
+
export const DEFAULT_MULTI_LINES_PARAMS: MultiLinesParams = {
|
93
|
+
lineCurve: 'curveLinear',
|
94
|
+
lineWidth: 2,
|
95
|
+
gridIndexes: [1]
|
96
|
+
}
|
97
|
+
|
98
|
+
export const DEFAULT_MULTI_LINE_AREAS_PARAMS: MultiLineAreasParams = {
|
99
|
+
lineCurve: 'curveLinear',
|
100
|
+
linearGradientOpacity: [1, 0],
|
101
|
+
gridIndexes: [1]
|
102
|
+
}
|
103
|
+
|
104
|
+
export const DEFAULT_MULTI_DOTS_PARAMS: MultiDotsParams = {
|
105
|
+
radius: 4,
|
106
|
+
fillColorType: 'white',
|
107
|
+
strokeColorType: 'series',
|
108
|
+
strokeWidth: 2,
|
109
|
+
onlyShowHighlighted: false,
|
110
|
+
gridIndexes: [1]
|
111
|
+
}
|
112
|
+
|
113
|
+
export const DEFAULT_OVERLAPPING_VALUE_AXES_PARAMS: OverlappingValueAxesParams = {
|
114
|
+
firstAxis: {
|
115
|
+
// labelAnchor: 'end',
|
116
|
+
labelOffset: [0, 0],
|
117
|
+
labelColorType: 'primary',
|
118
|
+
axisLineVisible: false,
|
119
|
+
axisLineColorType: 'primary',
|
120
|
+
ticks: 4,
|
121
|
+
tickFormat: ',.0f',
|
122
|
+
tickLineVisible: true,
|
123
|
+
tickPadding: 20,
|
124
|
+
tickFullLine: true,
|
125
|
+
tickFullLineDasharray: 'none',
|
126
|
+
tickColorType: 'secondary',
|
127
|
+
tickTextRotate: 0,
|
128
|
+
tickTextColorType: 'primary',
|
129
|
+
},
|
130
|
+
secondAxis: {
|
131
|
+
// labelAnchor: 'end',
|
132
|
+
labelOffset: [0, 0],
|
133
|
+
labelColorType: 'primary',
|
134
|
+
axisLineVisible: false,
|
135
|
+
axisLineColorType: 'primary',
|
136
|
+
ticks: 4,
|
137
|
+
tickFormat: ',.0f',
|
138
|
+
tickLineVisible: true,
|
139
|
+
tickPadding: 20,
|
140
|
+
tickFullLine: true,
|
141
|
+
tickFullLineDasharray: 'none',
|
142
|
+
tickColorType: 'secondary',
|
143
|
+
tickTextRotate: 0,
|
144
|
+
tickTextColorType: 'primary',
|
145
|
+
},
|
146
|
+
gridIndexes: [0, 1]
|
147
|
+
}
|
package/src/multiGrid/index.ts
CHANGED
@@ -1,12 +1,12 @@
|
|
1
|
-
export * from './defaults'
|
2
|
-
export * from './types'
|
3
|
-
export { MultiGridLegend } from './plugins/MultiGridLegend'
|
4
|
-
export { MultiBars } from './plugins/MultiBars'
|
5
|
-
export { MultiBarStack } from './plugins/MultiBarStack'
|
6
|
-
export { MultiBarsTriangle } from './plugins/MultiBarsTriangle'
|
7
|
-
export { MultiLines } from './plugins/MultiLines'
|
8
|
-
export { MultiLineAreas } from './plugins/MultiLineAreas'
|
9
|
-
export { MultiDots } from './plugins/MultiDots'
|
10
|
-
export { MultiGroupAxis } from './plugins/MultiGroupAxis'
|
11
|
-
export { MultiValueAxis } from './plugins/MultiValueAxis'
|
1
|
+
export * from './defaults'
|
2
|
+
export * from './types'
|
3
|
+
export { MultiGridLegend } from './plugins/MultiGridLegend'
|
4
|
+
export { MultiBars } from './plugins/MultiBars'
|
5
|
+
export { MultiBarStack } from './plugins/MultiBarStack'
|
6
|
+
export { MultiBarsTriangle } from './plugins/MultiBarsTriangle'
|
7
|
+
export { MultiLines } from './plugins/MultiLines'
|
8
|
+
export { MultiLineAreas } from './plugins/MultiLineAreas'
|
9
|
+
export { MultiDots } from './plugins/MultiDots'
|
10
|
+
export { MultiGroupAxis } from './plugins/MultiGroupAxis'
|
11
|
+
export { MultiValueAxis } from './plugins/MultiValueAxis'
|
12
12
|
export { OverlappingValueAxes } from './plugins/OverlappingValueAxes'
|