@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.
Files changed (75) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-plugins-basic.es.js +5611 -5571
  3. package/dist/orbcharts-plugins-basic.umd.js +7 -7
  4. package/dist/src/base/BaseLegend.d.ts +1 -0
  5. package/package.json +42 -42
  6. package/src/base/BaseBarStack.ts +881 -881
  7. package/src/base/BaseBars.ts +750 -750
  8. package/src/base/BaseBarsTriangle.ts +659 -659
  9. package/src/base/BaseDots.ts +639 -639
  10. package/src/base/BaseGroupAxis.ts +496 -496
  11. package/src/base/BaseLegend.ts +641 -636
  12. package/src/base/BaseLineAreas.ts +621 -621
  13. package/src/base/BaseLines.ts +692 -692
  14. package/src/base/BaseValueAxis.ts +479 -479
  15. package/src/base/types.ts +2 -2
  16. package/src/grid/defaults.ts +121 -121
  17. package/src/grid/gridObservables.ts +263 -263
  18. package/src/grid/index.ts +15 -15
  19. package/src/grid/plugins/BarStack.ts +37 -37
  20. package/src/grid/plugins/Bars.ts +37 -37
  21. package/src/grid/plugins/BarsDiverging.ts +39 -39
  22. package/src/grid/plugins/BarsTriangle.ts +34 -34
  23. package/src/grid/plugins/Dots.ts +35 -35
  24. package/src/grid/plugins/GridLegend.ts +59 -58
  25. package/src/grid/plugins/GroupAux.ts +646 -643
  26. package/src/grid/plugins/GroupAxis.ts +30 -30
  27. package/src/grid/plugins/LineAreas.ts +36 -36
  28. package/src/grid/plugins/Lines.ts +35 -35
  29. package/src/grid/plugins/ScalingArea.ts +174 -174
  30. package/src/grid/plugins/ValueAxis.ts +31 -31
  31. package/src/grid/plugins/ValueStackAxis.ts +70 -70
  32. package/src/grid/types.ts +120 -120
  33. package/src/index.ts +9 -9
  34. package/src/multiGrid/defaults.ts +147 -147
  35. package/src/multiGrid/index.ts +11 -11
  36. package/src/multiGrid/multiGridObservables.ts +289 -289
  37. package/src/multiGrid/plugins/MultiBarStack.ts +60 -60
  38. package/src/multiGrid/plugins/MultiBars.ts +59 -59
  39. package/src/multiGrid/plugins/MultiBarsTriangle.ts +58 -58
  40. package/src/multiGrid/plugins/MultiDots.ts +58 -58
  41. package/src/multiGrid/plugins/MultiGridLegend.ts +89 -88
  42. package/src/multiGrid/plugins/MultiGroupAxis.ts +53 -53
  43. package/src/multiGrid/plugins/MultiLineAreas.ts +59 -59
  44. package/src/multiGrid/plugins/MultiLines.ts +58 -58
  45. package/src/multiGrid/plugins/MultiValueAxis.ts +53 -53
  46. package/src/multiGrid/plugins/OverlappingValueAxes.ts +164 -164
  47. package/src/multiGrid/types.ts +67 -67
  48. package/src/noneData/defaults.ts +61 -61
  49. package/src/noneData/index.ts +3 -3
  50. package/src/noneData/plugins/Container.ts +10 -10
  51. package/src/noneData/plugins/Tooltip.ts +310 -304
  52. package/src/noneData/types.ts +26 -26
  53. package/src/series/defaults.ts +99 -99
  54. package/src/series/index.ts +6 -6
  55. package/src/series/plugins/Bubbles.ts +551 -551
  56. package/src/series/plugins/Pie.ts +600 -600
  57. package/src/series/plugins/PieEventTexts.ts +194 -194
  58. package/src/series/plugins/PieLabels.ts +288 -288
  59. package/src/series/plugins/SeriesLegend.ts +59 -58
  60. package/src/series/seriesUtils.ts +50 -50
  61. package/src/series/types.ts +67 -67
  62. package/src/tree/defaults.ts +22 -22
  63. package/src/tree/index.ts +3 -3
  64. package/src/tree/plugins/TreeLegend.ts +59 -58
  65. package/src/tree/plugins/TreeMap.ts +305 -302
  66. package/src/tree/types.ts +23 -23
  67. package/src/utils/commonUtils.ts +21 -21
  68. package/src/utils/d3Graphics.ts +124 -124
  69. package/src/utils/d3Utils.ts +73 -73
  70. package/src/utils/observables.ts +14 -14
  71. package/src/utils/orbchartsUtils.ts +100 -100
  72. package/tsconfig.dev.json +16 -16
  73. package/tsconfig.json +13 -13
  74. package/tsconfig.prod.json +13 -13
  75. package/vite.config.js +49 -49
package/src/base/types.ts CHANGED
@@ -1,3 +1,3 @@
1
- export interface BasePluginFn<Context> {
2
- (pluginName: string, context: Context): () => void // return unsubscribe function
1
+ export interface BasePluginFn<Context> {
2
+ (pluginName: string, context: Context): () => void // return unsubscribe function
3
3
  }
@@ -1,121 +1,121 @@
1
- import type {
2
- LinesParams,
3
- LineAreasParams,
4
- GroupAuxParams,
5
- DotsParams,
6
- BarsParams,
7
- BarStackParams,
8
- BarsTriangleParams,
9
- GroupAxisParams,
10
- ValueAxisParams,
11
- ValueStackAxisParams,
12
- ScalingAreaParams,
13
- GridLegendParams } from './types'
14
-
15
- export const DEFAULT_LINES_PARAMS: LinesParams = {
16
- lineCurve: 'curveLinear',
17
- lineWidth: 2
18
- }
19
-
20
- export const DEFAULT_LINE_AREAS_PARAMS: LineAreasParams = {
21
- lineCurve: 'curveLinear',
22
- linearGradientOpacity: [1, 0]
23
- }
24
-
25
- export const DEFAULT_DOTS_PARAMS: DotsParams = {
26
- radius: 4,
27
- fillColorType: 'white',
28
- strokeColorType: 'series',
29
- strokeWidth: 2,
30
- onlyShowHighlighted: false
31
- }
32
-
33
- export const DEFAULT_GROUP_AREA_PARAMS: GroupAuxParams = {
34
- showLine: true,
35
- showLabel: true,
36
- lineDashArray: '3, 3',
37
- lineColorType: 'primary',
38
- labelColorType: 'primary',
39
- labelTextColorType: 'background',
40
- labelTextFormat: text => text,
41
- labelPadding: 24,
42
- }
43
-
44
- export const DEFAULT_BARS_PARAMS: BarsParams = {
45
- // barType: 'rect',
46
- barWidth: 0,
47
- barPadding: 1,
48
- barGroupPadding: 40,
49
- barRadius: false,
50
- }
51
-
52
- export const DEFAULT_BARS_DIVERGING_PARAMS: BarsParams = {
53
- ...DEFAULT_BARS_PARAMS
54
- }
55
-
56
- export const DEFAULT_BAR_STACK_PARAMS: BarStackParams = {
57
- barWidth: 0,
58
- barGroupPadding: 10,
59
- barRadius: false,
60
- }
61
-
62
- export const DEFAULT_BARS_TRIANGLE_PARAMS: BarsTriangleParams = {
63
- barWidth: 0,
64
- barPadding: 1,
65
- barGroupPadding: 20,
66
- linearGradientOpacity: [1, 0]
67
- }
68
-
69
- export const DEFAULT_GROUP_AXIS_PARAMS: GroupAxisParams = {
70
- // labelAnchor: 'start',
71
- labelOffset: [0, 0],
72
- labelColorType: 'primary',
73
- axisLineVisible: true,
74
- axisLineColorType: 'primary',
75
- tickFormat: text => text,
76
- tickLineVisible: true,
77
- tickPadding: 20,
78
- tickFullLine: false,
79
- tickFullLineDasharray: 'none',
80
- tickColorType: 'secondary',
81
- tickTextRotate: 0,
82
- tickTextColorType: 'primary'
83
- }
84
-
85
- export const DEFAULT_VALUE_AXIS_PARAMS: ValueAxisParams = {
86
- // labelAnchor: 'end',
87
- labelOffset: [0, 0],
88
- labelColorType: 'primary',
89
- axisLineVisible: false,
90
- axisLineColorType: 'primary',
91
- ticks: 4,
92
- tickFormat: ',.0f',
93
- tickLineVisible: true,
94
- tickPadding: 20,
95
- tickFullLine: true,
96
- tickFullLineDasharray: 'none',
97
- tickColorType: 'secondary',
98
- tickTextRotate: 0,
99
- tickTextColorType: 'primary'
100
- }
101
-
102
- export const DEFAULT_VALUE_STACK_AXIS_PARAMS: ValueStackAxisParams = DEFAULT_VALUE_AXIS_PARAMS
103
-
104
- export const DEFAULT_SCALING_AREA_PARAMS: ScalingAreaParams = {
105
-
106
- }
107
-
108
- export const DEFAULT_GRID_LEGEND_PARAMS: GridLegendParams = {
109
- position: 'right',
110
- justify: 'end',
111
- padding: 28,
112
- // offset: [0, 0],
113
- backgroundFill: 'none',
114
- backgroundStroke: 'none',
115
- gap: 10,
116
- listRectWidth: 14,
117
- listRectHeight: 14,
118
- listRectRadius: 0,
119
- // highlightEvent: false
120
- textColorType: 'primary'
121
- }
1
+ import type {
2
+ LinesParams,
3
+ LineAreasParams,
4
+ GroupAuxParams,
5
+ DotsParams,
6
+ BarsParams,
7
+ BarStackParams,
8
+ BarsTriangleParams,
9
+ GroupAxisParams,
10
+ ValueAxisParams,
11
+ ValueStackAxisParams,
12
+ ScalingAreaParams,
13
+ GridLegendParams } from './types'
14
+
15
+ export const DEFAULT_LINES_PARAMS: LinesParams = {
16
+ lineCurve: 'curveLinear',
17
+ lineWidth: 2
18
+ }
19
+
20
+ export const DEFAULT_LINE_AREAS_PARAMS: LineAreasParams = {
21
+ lineCurve: 'curveLinear',
22
+ linearGradientOpacity: [1, 0]
23
+ }
24
+
25
+ export const DEFAULT_DOTS_PARAMS: DotsParams = {
26
+ radius: 4,
27
+ fillColorType: 'white',
28
+ strokeColorType: 'series',
29
+ strokeWidth: 2,
30
+ onlyShowHighlighted: false
31
+ }
32
+
33
+ export const DEFAULT_GROUP_AREA_PARAMS: GroupAuxParams = {
34
+ showLine: true,
35
+ showLabel: true,
36
+ lineDashArray: '3, 3',
37
+ lineColorType: 'primary',
38
+ labelColorType: 'primary',
39
+ labelTextColorType: 'background',
40
+ labelTextFormat: text => text,
41
+ labelPadding: 24,
42
+ }
43
+
44
+ export const DEFAULT_BARS_PARAMS: BarsParams = {
45
+ // barType: 'rect',
46
+ barWidth: 0,
47
+ barPadding: 1,
48
+ barGroupPadding: 40,
49
+ barRadius: false,
50
+ }
51
+
52
+ export const DEFAULT_BARS_DIVERGING_PARAMS: BarsParams = {
53
+ ...DEFAULT_BARS_PARAMS
54
+ }
55
+
56
+ export const DEFAULT_BAR_STACK_PARAMS: BarStackParams = {
57
+ barWidth: 0,
58
+ barGroupPadding: 10,
59
+ barRadius: false,
60
+ }
61
+
62
+ export const DEFAULT_BARS_TRIANGLE_PARAMS: BarsTriangleParams = {
63
+ barWidth: 0,
64
+ barPadding: 1,
65
+ barGroupPadding: 20,
66
+ linearGradientOpacity: [1, 0]
67
+ }
68
+
69
+ export const DEFAULT_GROUP_AXIS_PARAMS: GroupAxisParams = {
70
+ // labelAnchor: 'start',
71
+ labelOffset: [0, 0],
72
+ labelColorType: 'primary',
73
+ axisLineVisible: true,
74
+ axisLineColorType: 'primary',
75
+ tickFormat: text => text,
76
+ tickLineVisible: true,
77
+ tickPadding: 20,
78
+ tickFullLine: false,
79
+ tickFullLineDasharray: 'none',
80
+ tickColorType: 'secondary',
81
+ tickTextRotate: 0,
82
+ tickTextColorType: 'primary'
83
+ }
84
+
85
+ export const DEFAULT_VALUE_AXIS_PARAMS: ValueAxisParams = {
86
+ // labelAnchor: 'end',
87
+ labelOffset: [0, 0],
88
+ labelColorType: 'primary',
89
+ axisLineVisible: false,
90
+ axisLineColorType: 'primary',
91
+ ticks: 4,
92
+ tickFormat: ',.0f',
93
+ tickLineVisible: true,
94
+ tickPadding: 20,
95
+ tickFullLine: true,
96
+ tickFullLineDasharray: 'none',
97
+ tickColorType: 'secondary',
98
+ tickTextRotate: 0,
99
+ tickTextColorType: 'primary'
100
+ }
101
+
102
+ export const DEFAULT_VALUE_STACK_AXIS_PARAMS: ValueStackAxisParams = DEFAULT_VALUE_AXIS_PARAMS
103
+
104
+ export const DEFAULT_SCALING_AREA_PARAMS: ScalingAreaParams = {
105
+
106
+ }
107
+
108
+ export const DEFAULT_GRID_LEGEND_PARAMS: GridLegendParams = {
109
+ position: 'right',
110
+ justify: 'end',
111
+ padding: 28,
112
+ // offset: [0, 0],
113
+ backgroundFill: 'none',
114
+ backgroundStroke: 'none',
115
+ gap: 10,
116
+ listRectWidth: 14,
117
+ listRectHeight: 14,
118
+ listRectRadius: 0,
119
+ // highlightEvent: false
120
+ textColorType: 'primary'
121
+ }