@orbcharts/plugins-basic 3.0.0-alpha.41 → 3.0.0-alpha.43

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 (84) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-plugins-basic.es.js +5477 -5426
  3. package/dist/orbcharts-plugins-basic.umd.js +8 -8
  4. package/dist/src/base/BaseBarStack.d.ts +1 -1
  5. package/dist/src/base/BaseBars.d.ts +1 -1
  6. package/dist/src/base/BaseBarsTriangle.d.ts +1 -1
  7. package/dist/src/base/BaseDots.d.ts +1 -1
  8. package/dist/src/base/BaseLineAreas.d.ts +1 -1
  9. package/dist/src/base/BaseLines.d.ts +1 -1
  10. package/dist/src/multiGrid/defaults.d.ts +2 -1
  11. package/dist/src/multiGrid/index.d.ts +1 -0
  12. package/dist/src/multiGrid/plugins/MultiLineAreas.d.ts +1 -0
  13. package/dist/src/multiGrid/types.d.ts +4 -4
  14. package/package.json +42 -42
  15. package/src/base/BaseBarStack.ts +881 -879
  16. package/src/base/BaseBars.ts +750 -748
  17. package/src/base/BaseBarsTriangle.ts +659 -657
  18. package/src/base/BaseDots.ts +639 -637
  19. package/src/base/BaseGroupAxis.ts +496 -496
  20. package/src/base/BaseLegend.ts +636 -636
  21. package/src/base/BaseLineAreas.ts +621 -624
  22. package/src/base/BaseLines.ts +692 -695
  23. package/src/base/BaseValueAxis.ts +479 -479
  24. package/src/base/types.ts +2 -2
  25. package/src/grid/defaults.ts +121 -121
  26. package/src/grid/gridObservables.ts +263 -263
  27. package/src/grid/index.ts +15 -15
  28. package/src/grid/plugins/BarStack.ts +37 -37
  29. package/src/grid/plugins/Bars.ts +37 -37
  30. package/src/grid/plugins/BarsDiverging.ts +39 -39
  31. package/src/grid/plugins/BarsTriangle.ts +34 -34
  32. package/src/grid/plugins/Dots.ts +35 -35
  33. package/src/grid/plugins/GridLegend.ts +58 -58
  34. package/src/grid/plugins/GroupAux.ts +643 -643
  35. package/src/grid/plugins/GroupAxis.ts +30 -30
  36. package/src/grid/plugins/LineAreas.ts +36 -36
  37. package/src/grid/plugins/Lines.ts +35 -35
  38. package/src/grid/plugins/ScalingArea.ts +174 -174
  39. package/src/grid/plugins/ValueAxis.ts +31 -31
  40. package/src/grid/plugins/ValueStackAxis.ts +70 -70
  41. package/src/grid/types.ts +120 -120
  42. package/src/index.ts +9 -9
  43. package/src/multiGrid/defaults.ts +147 -140
  44. package/src/multiGrid/index.ts +11 -10
  45. package/src/multiGrid/multiGridObservables.ts +289 -278
  46. package/src/multiGrid/plugins/MultiBarStack.ts +60 -60
  47. package/src/multiGrid/plugins/MultiBars.ts +59 -59
  48. package/src/multiGrid/plugins/MultiBarsTriangle.ts +58 -58
  49. package/src/multiGrid/plugins/MultiDots.ts +58 -58
  50. package/src/multiGrid/plugins/MultiGridLegend.ts +88 -88
  51. package/src/multiGrid/plugins/MultiGroupAxis.ts +53 -53
  52. package/src/multiGrid/plugins/MultiLineAreas.ts +59 -0
  53. package/src/multiGrid/plugins/MultiLines.ts +58 -58
  54. package/src/multiGrid/plugins/MultiValueAxis.ts +53 -53
  55. package/src/multiGrid/plugins/OverlappingValueAxes.ts +164 -165
  56. package/src/multiGrid/types.ts +67 -67
  57. package/src/noneData/defaults.ts +61 -61
  58. package/src/noneData/index.ts +3 -3
  59. package/src/noneData/plugins/Container.ts +10 -10
  60. package/src/noneData/plugins/Tooltip.ts +304 -304
  61. package/src/noneData/types.ts +26 -26
  62. package/src/series/defaults.ts +99 -99
  63. package/src/series/index.ts +6 -6
  64. package/src/series/plugins/Bubbles.ts +551 -549
  65. package/src/series/plugins/Pie.ts +600 -598
  66. package/src/series/plugins/PieEventTexts.ts +194 -194
  67. package/src/series/plugins/PieLabels.ts +288 -285
  68. package/src/series/plugins/SeriesLegend.ts +58 -58
  69. package/src/series/seriesUtils.ts +50 -50
  70. package/src/series/types.ts +67 -67
  71. package/src/tree/defaults.ts +22 -22
  72. package/src/tree/index.ts +3 -3
  73. package/src/tree/plugins/TreeLegend.ts +58 -58
  74. package/src/tree/plugins/TreeMap.ts +302 -300
  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
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
+ }