@orbcharts/presets-basic 3.0.0-beta.8 → 3.0.0

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 (158) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-presets-basic.es.js +4369 -537
  3. package/dist/orbcharts-presets-basic.umd.js +1 -1
  4. package/dist/src/grid/PRESET_GRID_PN_SCALE_SIMPLE.d.ts +4 -0
  5. package/dist/src/grid/PRESET_GRID_SIMPLE.d.ts +4 -0
  6. package/dist/src/grid/PRESET_LINES_SIMPLE.d.ts +4 -0
  7. package/dist/src/grid/PRESET_LINE_AREAS_SIMPLE.d.ts +4 -0
  8. package/dist/src/grid/index.d.ts +4 -0
  9. package/dist/src/multiGrid/PRESET_MULTI_GRID_DIVERGING_SIMPLE.d.ts +4 -0
  10. package/dist/src/multiGrid/PRESET_MULTI_GRID_ROUND_STYLE.d.ts +3 -1
  11. package/dist/src/multiGrid/PRESET_MULTI_GRID_ROUND_STYLE_SIMPLE.d.ts +6 -0
  12. package/dist/src/multiGrid/PRESET_MULTI_GRID_SEPARATE_GRID_SIMPLE.d.ts +4 -0
  13. package/dist/src/multiGrid/PRESET_MULTI_GRID_SIMPLE.d.ts +4 -0
  14. package/dist/src/multiGrid/PRESET_MULTI_LINES_SEPARATE_GRID_SIMPLE.d.ts +4 -0
  15. package/dist/src/multiGrid/PRESET_MULTI_LINE_AREAS_SEPARATE_GRID_SIMPLE.d.ts +4 -0
  16. package/dist/src/multiGrid/index.d.ts +6 -0
  17. package/dist/src/multiValue/PRESET_MULTI_VALUE_SIMPLE.d.ts +4 -0
  18. package/dist/src/multiValue/PRESET_RACING_BARS_ALL_ITEMS.d.ts +4 -0
  19. package/dist/src/multiValue/PRESET_RACING_BARS_BASIC.d.ts +4 -0
  20. package/dist/src/multiValue/PRESET_RACING_BARS_FAST.d.ts +4 -0
  21. package/dist/src/multiValue/PRESET_RACING_BARS_FASTER.d.ts +4 -0
  22. package/dist/src/multiValue/PRESET_RACING_BARS_LOOP.d.ts +4 -0
  23. package/dist/src/multiValue/PRESET_RACING_BARS_OUTSIDE_LABELS.d.ts +4 -0
  24. package/dist/src/multiValue/PRESET_RACING_BARS_SEPARATE_CATEGORY.d.ts +4 -0
  25. package/dist/src/multiValue/PRESET_RACING_BARS_SIMPLE.d.ts +4 -0
  26. package/dist/src/multiValue/PRESET_RACING_BARS_STOP.d.ts +4 -0
  27. package/dist/src/multiValue/PRESET_SCATTER_BASIC.d.ts +4 -0
  28. package/dist/src/multiValue/PRESET_SCATTER_BUBBLES_BASIC.d.ts +4 -0
  29. package/dist/src/multiValue/PRESET_SCATTER_BUBBLES_SEPARATE_CATEGORY.d.ts +4 -0
  30. package/dist/src/multiValue/PRESET_SCATTER_BUBBLES_SIMPLE.d.ts +4 -0
  31. package/dist/src/multiValue/PRESET_SCATTER_SEPARATE_CATEGORY.d.ts +4 -0
  32. package/dist/src/multiValue/PRESET_SCATTER_SIMPLE.d.ts +4 -0
  33. package/dist/src/multiValue/index.d.ts +16 -0
  34. package/dist/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_SIMPLE.d.ts +4 -0
  35. package/dist/src/relationship/PRESET_FORCE_DIRECTED_SIMPLE.d.ts +4 -0
  36. package/dist/src/relationship/index.d.ts +2 -0
  37. package/dist/src/series/PRESET_BUBBLES_BASIC.d.ts +4 -0
  38. package/dist/src/series/PRESET_BUBBLES_SIMPLE.d.ts +4 -0
  39. package/dist/src/series/PRESET_BUBBLES_SUM_SERIES.d.ts +4 -0
  40. package/dist/src/series/PRESET_PIE_SEPARATE_SERIES.d.ts +4 -0
  41. package/dist/src/series/PRESET_PIE_SIMPLE.d.ts +4 -0
  42. package/dist/src/series/PRESET_PIE_SUM_SERIES.d.ts +4 -0
  43. package/dist/src/series/PRESET_ROSE_SEPARATE_SERIES.d.ts +4 -0
  44. package/dist/src/series/PRESET_ROSE_SEPARATE_SERIES_AND_SUM_SERIES.d.ts +4 -0
  45. package/dist/src/series/PRESET_ROSE_SIMPLE.d.ts +4 -0
  46. package/dist/src/series/PRESET_ROSE_SUM_SERIES.d.ts +4 -0
  47. package/dist/src/series/index.d.ts +10 -0
  48. package/dist/src/tree/PRESET_TREE_MAP_SIMPLE.d.ts +4 -0
  49. package/dist/src/tree/index.d.ts +1 -0
  50. package/dist/src/types.d.ts +23 -17
  51. package/lib/core-types.ts +7 -7
  52. package/lib/plugins-basic-types.ts +6 -6
  53. package/package.json +42 -42
  54. package/src/grid/PRESET_BARS_HORIZONTAL_AND_ROUND.ts +74 -56
  55. package/src/grid/PRESET_BARS_HORIZONTAL_AND_THIN.ts +75 -52
  56. package/src/grid/PRESET_BARS_ROUND.ts +70 -39
  57. package/src/grid/PRESET_BARS_THIN.ts +67 -36
  58. package/src/grid/PRESET_GRID_BASIC.ts +58 -27
  59. package/src/grid/PRESET_GRID_HORIZONTAL.ts +75 -44
  60. package/src/grid/PRESET_GRID_PN_SCALE.ts +66 -35
  61. package/src/grid/PRESET_GRID_PN_SCALE_SIMPLE.ts +63 -0
  62. package/src/grid/PRESET_GRID_ROTATE_AXIS_LABEL.ts +66 -35
  63. package/src/grid/PRESET_GRID_SEPARATE_SERIES.ts +71 -40
  64. package/src/grid/PRESET_GRID_SIMPLE.ts +58 -0
  65. package/src/grid/PRESET_LINES_BASIC.ts +62 -35
  66. package/src/grid/PRESET_LINES_CURVE.ts +65 -38
  67. package/src/grid/PRESET_LINES_HIGHLIGHT_GROUP_DOTS.ts +64 -37
  68. package/src/grid/PRESET_LINES_HORIZONTAL.ts +70 -51
  69. package/src/grid/PRESET_LINES_LOOSE_TICKS.ts +64 -37
  70. package/src/grid/PRESET_LINES_ROTATE_AXIS_LABEL.ts +67 -40
  71. package/src/grid/PRESET_LINES_SIMPLE.ts +67 -0
  72. package/src/grid/PRESET_LINES_WITH_SOLID_DOTS.ts +66 -39
  73. package/src/grid/PRESET_LINE_AREAS_BASIC.ts +68 -43
  74. package/src/grid/PRESET_LINE_AREAS_CURVE.ts +79 -48
  75. package/src/grid/PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS.ts +72 -47
  76. package/src/grid/PRESET_LINE_AREAS_HORIZONTAL.ts +72 -47
  77. package/src/grid/PRESET_LINE_AREAS_LOOSE_TICKS.ts +70 -45
  78. package/src/grid/PRESET_LINE_AREAS_ROTATE_AXIS_LABEL.ts +73 -48
  79. package/src/grid/PRESET_LINE_AREAS_SEPARATE_SERIES.ts +74 -50
  80. package/src/grid/PRESET_LINE_AREAS_SIMPLE.ts +71 -0
  81. package/src/grid/index.ts +26 -22
  82. package/src/index.ts +6 -6
  83. package/src/multiGrid/PRESET_MULTI_GRID_BASIC.ts +64 -38
  84. package/src/multiGrid/PRESET_MULTI_GRID_DIVERGING.ts +112 -86
  85. package/src/multiGrid/PRESET_MULTI_GRID_DIVERGING_SIMPLE.ts +115 -0
  86. package/src/multiGrid/PRESET_MULTI_GRID_ROUND_STYLE.ts +85 -58
  87. package/src/multiGrid/PRESET_MULTI_GRID_ROUND_STYLE_SIMPLE.ts +95 -0
  88. package/src/multiGrid/PRESET_MULTI_GRID_SEPARATE_GRID.ts +87 -60
  89. package/src/multiGrid/PRESET_MULTI_GRID_SEPARATE_GRID_SIMPLE.ts +98 -0
  90. package/src/multiGrid/PRESET_MULTI_GRID_SIMPLE.ts +74 -0
  91. package/src/multiGrid/PRESET_MULTI_LINES_SEPARATE_GRID.ts +115 -86
  92. package/src/multiGrid/PRESET_MULTI_LINES_SEPARATE_GRID_SIMPLE.ts +124 -0
  93. package/src/multiGrid/PRESET_MULTI_LINE_AREAS_SEPARATE_GRID.ts +133 -104
  94. package/src/multiGrid/PRESET_MULTI_LINE_AREAS_SEPARATE_GRID_SIMPLE.ts +127 -0
  95. package/src/multiGrid/index.ts +12 -6
  96. package/src/multiValue/PRESET_MULTI_VALUE_BASIC.ts +53 -23
  97. package/src/multiValue/PRESET_MULTI_VALUE_SEPARATE_CATEGORY.ts +64 -26
  98. package/src/multiValue/PRESET_MULTI_VALUE_SIMPLE.ts +53 -0
  99. package/src/multiValue/PRESET_RACING_BARS_ALL_ITEMS.ts +58 -0
  100. package/src/multiValue/PRESET_RACING_BARS_BASIC.ts +57 -0
  101. package/src/multiValue/PRESET_RACING_BARS_FAST.ts +57 -0
  102. package/src/multiValue/PRESET_RACING_BARS_FASTER.ts +57 -0
  103. package/src/multiValue/PRESET_RACING_BARS_LOOP.ts +58 -0
  104. package/src/multiValue/PRESET_RACING_BARS_OUTSIDE_LABELS.ts +61 -0
  105. package/src/multiValue/PRESET_RACING_BARS_SEPARATE_CATEGORY.ts +74 -0
  106. package/src/multiValue/PRESET_RACING_BARS_SIMPLE.ts +57 -0
  107. package/src/multiValue/PRESET_RACING_BARS_STOP.ts +56 -0
  108. package/src/multiValue/PRESET_SCATTER_BASIC.ts +54 -0
  109. package/src/multiValue/PRESET_SCATTER_BUBBLES_BASIC.ts +54 -0
  110. package/src/multiValue/PRESET_SCATTER_BUBBLES_LINEAR_OPACITY.ts +57 -26
  111. package/src/multiValue/PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS.ts +57 -26
  112. package/src/multiValue/PRESET_SCATTER_BUBBLES_SEPARATE_CATEGORY.ts +57 -0
  113. package/src/multiValue/PRESET_SCATTER_BUBBLES_SIMPLE.ts +54 -0
  114. package/src/multiValue/PRESET_SCATTER_SEPARATE_CATEGORY.ts +65 -0
  115. package/src/multiValue/PRESET_SCATTER_SIMPLE.ts +54 -0
  116. package/src/multiValue/index.ts +20 -4
  117. package/src/params.ts +83 -80
  118. package/src/relationship/PRESET_FORCE_DIRECTED_BASIC.ts +47 -23
  119. package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_BASIC.ts +47 -23
  120. package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH.ts +52 -28
  121. package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW.ts +52 -30
  122. package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM.ts +49 -25
  123. package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_SIMPLE.ts +48 -0
  124. package/src/relationship/PRESET_FORCE_DIRECTED_FIX_FONT_SIZE.ts +54 -30
  125. package/src/relationship/PRESET_FORCE_DIRECTED_NONE_ARROW.ts +52 -28
  126. package/src/relationship/PRESET_FORCE_DIRECTED_NONE_ZOOM.ts +49 -25
  127. package/src/relationship/PRESET_FORCE_DIRECTED_SIMPLE.ts +48 -0
  128. package/src/relationship/index.ts +10 -8
  129. package/src/series/PRESET_BUBBLES_BASIC.ts +46 -0
  130. package/src/series/PRESET_BUBBLES_SCALING_BY_RADIUS.ts +49 -18
  131. package/src/series/PRESET_BUBBLES_SEPARATE_SERIES.ts +58 -29
  132. package/src/series/PRESET_BUBBLES_SIMPLE.ts +53 -0
  133. package/src/series/PRESET_BUBBLES_SUM_SERIES.ts +48 -0
  134. package/src/series/PRESET_PIE_BASIC.ts +49 -18
  135. package/src/series/PRESET_PIE_DONUT.ts +54 -23
  136. package/src/series/PRESET_PIE_HALF_DONUT.ts +66 -36
  137. package/src/series/PRESET_PIE_SEPARATE_SERIES.ts +48 -0
  138. package/src/series/PRESET_PIE_SIMPLE.ts +57 -0
  139. package/src/series/PRESET_PIE_SUM_SERIES.ts +48 -0
  140. package/src/series/PRESET_PIE_WITH_INNER_LABELS.ts +55 -24
  141. package/src/series/PRESET_ROSE_BASIC.ts +55 -19
  142. package/src/series/PRESET_ROSE_SCALING_BY_RADIUS.ts +61 -24
  143. package/src/series/PRESET_ROSE_SEPARATE_SERIES.ts +56 -0
  144. package/src/series/PRESET_ROSE_SEPARATE_SERIES_AND_SUM_SERIES.ts +57 -0
  145. package/src/series/PRESET_ROSE_SIMPLE.ts +57 -0
  146. package/src/series/PRESET_ROSE_SUM_SERIES.ts +54 -0
  147. package/src/series/PRESET_SERIES_BASIC.ts +46 -16
  148. package/src/series/PRESET_SERIES_SEPARATE_SERIES.ts +47 -17
  149. package/src/series/PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES.ts +48 -18
  150. package/src/series/PRESET_SERIES_SUM_SERIES.ts +49 -18
  151. package/src/series/index.ts +23 -13
  152. package/src/tree/PRESET_TREE_MAP_BASIC.ts +58 -27
  153. package/src/tree/PRESET_TREE_MAP_SIMPLE.ts +54 -0
  154. package/src/tree/index.ts +2 -1
  155. package/src/types.ts +368 -349
  156. package/tsconfig.base.json +13 -13
  157. package/tsconfig.json +2 -2
  158. package/vite.config.js +22 -22
@@ -1 +1,2 @@
1
1
  export { PRESET_TREE_MAP_BASIC } from './PRESET_TREE_MAP_BASIC';
2
+ export { PRESET_TREE_MAP_SIMPLE } from './PRESET_TREE_MAP_SIMPLE';
@@ -1,8 +1,6 @@
1
- import { BubblesParams, PieParams, PieEventTextsParams, PieLabelsParams, RoseParams, RoseLabelsParams, SeriesLegendParams, SeriesTooltipParams, BarsParams, BarsPNParams, StackedBarParams, BarsTriangleParams, DotsParams, GridLegendParams, GroupAuxParams, GroupAxisParams, LineAreasParams, LinesParams, GridTooltipParams, GridZoomParams, ValueAxisParams, StackedValueAxisParams, MultiBarsParams, MultiStackedBarParams, MultiBarsTriangleParams, MultiDotsParams, MultiGridLegendParams, MultiGridTooltipParams, MultiGroupAxisParams, MultiLineAreasParams, MultiLinesParams, MultiValueAxisParams, MultiStackedValueAxisParams, OverlappingValueAxesParams, OverlappingStackedValueAxesParams, MultiValueLegendParams, MultiValueTooltipParams, ScatterParams, ScatterBubblesParams, XYAuxParams, XYAxesParams, XYZoomParams, ForceDirectedParams, ForceDirectedBubblesParams, RelationshipLegendParams, RelationshipTooltipParams, TreeLegendParams, TreeMapParams, TreeTooltipParams } from '../lib/plugins-basic-types';
1
+ import { BubblesParams, PieParams, PieEventTextsParams, PieLabelsParams, RoseParams, RoseLabelsParams, SeriesLegendParams, SeriesTooltipParams, BarsParams, BarsPNParams, StackedBarsParams, BarsTriangleParams, DotsParams, GridLegendParams, GroupAuxParams, GroupAxisParams, LineAreasParams, LinesParams, GridTooltipParams, GroupZoomParams, ValueAxisParams, StackedValueAxisParams, MultiBarsParams, MultiStackedBarsParams, MultiBarsTriangleParams, MultiDotsParams, MultiGridLegendParams, MultiGridTooltipParams, MultiGroupAxisParams, MultiLineAreasParams, MultiLinesParams, MultiValueAxisParams, MultiStackedValueAxisParams, OverlappingValueAxesParams, OverlappingStackedValueAxesParams, MultiValueLegendParams, MultiValueTooltipParams, RacingBarsParams, RacingCounterTextsParams, RacingValueAxisParams, ScatterParams, ScatterBubblesParams, XYAuxParams, XYAxesParams, XZoomParams, ForceDirectedParams, ForceDirectedBubblesParams, RelationshipLegendParams, RelationshipTooltipParams, TreeLegendParams, TreeMapParams, TreeTooltipParams } from '../lib/plugins-basic-types';
2
+ import { DeepPartial } from '../lib/core-types';
2
3
 
3
- type DeepPartial<T> = Partial<{
4
- [P in keyof T]: DeepPartial<T[P]>;
5
- }>;
6
4
  export type PresetSeriesPluginParams = PresetBubblesParams & PresetPieParams & PresetPieEventTextsParams & PresetPieLabelsParams & PresetRoseParams & PresetRoseLabelsParams & PresetSeriesLegendParams & PresetSeriesTooltipParams;
7
5
  export interface PresetBubblesParams {
8
6
  Bubbles: Partial<BubblesParams>;
@@ -28,15 +26,15 @@ export interface PresetSeriesLegendParams {
28
26
  export interface PresetSeriesTooltipParams {
29
27
  SeriesTooltip: Partial<SeriesTooltipParams>;
30
28
  }
31
- export type PresetGridPluginParams = PresetBarsParams & PresetBarsPNParams & PresetStackedBarParams & PresetBarsTriangleParams & PresetDotsParams & PresetGridLegendParams & PresetGridTooltipParams & PresetGroupAuxParams & PresetGroupAxisParams & PresetLineAreasParams & PresetLinesParams & PresetGridZoomParams & PresetValueAxisParams & PresetStackedValueAxisParams;
29
+ export type PresetGridPluginParams = PresetBarsParams & PresetBarsPNParams & PresetStackedBarsParams & PresetBarsTriangleParams & PresetDotsParams & PresetGridLegendParams & PresetGridTooltipParams & PresetGroupAuxParams & PresetGroupAxisParams & PresetLineAreasParams & PresetLinesParams & PresetGroupZoomParams & PresetValueAxisParams & PresetStackedValueAxisParams;
32
30
  export interface PresetBarsParams {
33
31
  Bars: Partial<BarsParams>;
34
32
  }
35
33
  export interface PresetBarsPNParams {
36
34
  BarsPN: Partial<BarsPNParams>;
37
35
  }
38
- export interface PresetStackedBarParams {
39
- StackedBar: Partial<StackedBarParams>;
36
+ export interface PresetStackedBarsParams {
37
+ StackedBars: Partial<StackedBarsParams>;
40
38
  }
41
39
  export interface PresetBarsTriangleParams {
42
40
  BarsTriangle: Partial<BarsTriangleParams>;
@@ -62,8 +60,8 @@ export interface PresetLineAreasParams {
62
60
  export interface PresetLinesParams {
63
61
  Lines: Partial<LinesParams>;
64
62
  }
65
- export interface PresetGridZoomParams {
66
- GridZoom: Partial<GridZoomParams>;
63
+ export interface PresetGroupZoomParams {
64
+ GroupZoom: Partial<GroupZoomParams>;
67
65
  }
68
66
  export interface PresetValueAxisParams {
69
67
  ValueAxis: Partial<ValueAxisParams>;
@@ -71,14 +69,14 @@ export interface PresetValueAxisParams {
71
69
  export interface PresetStackedValueAxisParams {
72
70
  StackedValueAxis: Partial<StackedValueAxisParams>;
73
71
  }
74
- export type PresetMultiGridPluginParams = PresetMultiBarsParams & PresetMultiStackedBarParams & PresetMultiBarsTriangleParams & PresetMultiDotsParams & PresetMultiGridLegendParams & PresetMultiGridTooltipParams & PresetMultiGroupAxisParams & PresetMultiLineAreasParams & PresetMultiLinesParams & PresetMultiValueAxisParams & PresetMultiStackedValueAxisParams & PresetOverlappingValueAxesParams & PresetOverlappingStackedValueAxesParams;
72
+ export type PresetMultiGridPluginParams = PresetMultiBarsParams & PresetMultiStackedBarsParams & PresetMultiBarsTriangleParams & PresetMultiDotsParams & PresetMultiGridLegendParams & PresetMultiGridTooltipParams & PresetMultiGroupAxisParams & PresetMultiLineAreasParams & PresetMultiLinesParams & PresetMultiValueAxisParams & PresetMultiStackedValueAxisParams & PresetOverlappingValueAxesParams & PresetOverlappingStackedValueAxesParams;
75
73
  export type PresetMultiGridSepratedPluginParams = Omit<PresetMultiGridPluginParams, 'OverlappingValueAxes' | 'OverlappingStackedValueAxes'>;
76
74
  export type PresetMultiGridOverlappedPluginParams = Omit<PresetMultiGridPluginParams, 'PresetMultiGroupAxisParams' | 'PresetMultiValueAxisParams'>;
77
75
  export interface PresetMultiBarsParams {
78
76
  MultiBars: Partial<MultiBarsParams>;
79
77
  }
80
- export interface PresetMultiStackedBarParams {
81
- MultiStackedBar: Partial<MultiStackedBarParams>;
78
+ export interface PresetMultiStackedBarsParams {
79
+ MultiStackedBars: Partial<MultiStackedBarsParams>;
82
80
  }
83
81
  export interface PresetMultiBarsTriangleParams {
84
82
  MultiBarsTriangle: Partial<MultiBarsTriangleParams>;
@@ -113,7 +111,7 @@ export interface PresetOverlappingValueAxesParams {
113
111
  export interface PresetOverlappingStackedValueAxesParams {
114
112
  OverlappingStackedValueAxes: Partial<OverlappingStackedValueAxesParams>;
115
113
  }
116
- export type PresetMultiValuePluginParams = PresetMultiValueLegendParams & PresetMultiValueTooltipParams & PresetScatterParams & PresetScatterBubblesParams & PresetXYAuxParams & PresetXYAxesParams & PresetXYZoomParams;
114
+ export type PresetMultiValuePluginParams = PresetMultiValueLegendParams & PresetMultiValueTooltipParams & PresetRacingBarsParams & PresetRacingCounterTextsParams & PresetRacingValueAxisParams & PresetScatterParams & PresetScatterBubblesParams & PresetXYAuxParams & PresetXYAxesParams & PresetXZoomParams;
117
115
  export interface PresetMultiValueAxisParams {
118
116
  MultiValueAxis: Partial<MultiValueAxisParams>;
119
117
  }
@@ -126,6 +124,15 @@ export interface PresetMultiValueLegendParams {
126
124
  export interface PresetMultiValueTooltipParams {
127
125
  MultiValueTooltip: Partial<MultiValueTooltipParams>;
128
126
  }
127
+ export interface PresetRacingBarsParams {
128
+ RacingBars: DeepPartial<RacingBarsParams>;
129
+ }
130
+ export interface PresetRacingCounterTextsParams {
131
+ RacingCounterTexts: Partial<RacingCounterTextsParams>;
132
+ }
133
+ export interface PresetRacingValueAxisParams {
134
+ RacingValueAxis: Partial<RacingValueAxisParams>;
135
+ }
129
136
  export interface PresetScatterParams {
130
137
  Scatter: Partial<ScatterParams>;
131
138
  }
@@ -136,10 +143,10 @@ export interface PresetXYAuxParams {
136
143
  XYAux: Partial<XYAuxParams>;
137
144
  }
138
145
  export interface PresetXYAxesParams {
139
- XYAxes: Partial<XYAxesParams>;
146
+ XYAxes: DeepPartial<XYAxesParams>;
140
147
  }
141
- export interface PresetXYZoomParams {
142
- XYZoom: Partial<XYZoomParams>;
148
+ export interface PresetXZoomParams {
149
+ XZoom: Partial<XZoomParams>;
143
150
  }
144
151
  export type PresetRelationshipPluginParams = PresetForceDirectedParams & PresetForceDirectedBubblesParams & PresetRelationshipLegendParams & PresetRelationshipTooltipParams;
145
152
  export interface PresetForceDirectedParams {
@@ -165,4 +172,3 @@ export interface PresetTreeTooltipParams {
165
172
  TreeTooltip: Partial<TreeTooltipParams>;
166
173
  }
167
174
  export type PresetNoneDataPluginParams = {};
168
- export {};
package/lib/core-types.ts CHANGED
@@ -1,7 +1,7 @@
1
-
2
-
3
- export * from '@orbcharts/core-types'
4
-
5
- // test
6
- // export * from '../../orbcharts-core-types/src'
7
-
1
+
2
+
3
+ export * from '@orbcharts/core-types'
4
+
5
+ // test
6
+ // export * from '../../orbcharts-core-types/src'
7
+
@@ -1,6 +1,6 @@
1
-
2
-
3
- export * from '@orbcharts/plugins-basic-types'
4
-
5
- // test
6
- // export * from '../../orbcharts-plugins-basic-types/src'
1
+
2
+
3
+ export * from '@orbcharts/plugins-basic-types'
4
+
5
+ // test
6
+ // export * from '../../orbcharts-plugins-basic-types/src'
package/package.json CHANGED
@@ -1,42 +1,42 @@
1
- {
2
- "name": "@orbcharts/presets-basic",
3
- "version": "3.0.0-beta.8",
4
- "description": "presets for OrbCharts",
5
- "author": "Blue Planet Inc.",
6
- "license": "Apache-2.0",
7
- "keywords": [
8
- "d3",
9
- "rxjs",
10
- "svg",
11
- "visualization",
12
- "infographic",
13
- "graph",
14
- "chart"
15
- ],
16
- "private": false,
17
- "publishConfig": {
18
- "access": "public",
19
- "registry": "https://registry.npmjs.org/"
20
- },
21
- "files": [
22
- "*"
23
- ],
24
- "module": "./dist/orbcharts-presets-basic.es.js",
25
- "types": "./dist/src/index.d.ts",
26
- "scripts": {
27
- "test": "echo \"Error: no test specified\" && exit 1",
28
- "build": "vite build --mode production"
29
- },
30
- "devDependencies": {
31
- "@types/d3": "^7.4.0",
32
- "ts-loader": "^9.4.2",
33
- "typescript": "^5.0.4",
34
- "vite": "^5.3.5",
35
- "vite-plugin-dts": "^3.7.3"
36
- },
37
- "dependencies": {
38
- "@orbcharts/core-types": "^3.0.0-beta.5",
39
- "@orbcharts/plugins-basic-types": "^3.0.0-beta.10",
40
- "d3": "^7.8.5"
41
- }
42
- }
1
+ {
2
+ "name": "@orbcharts/presets-basic",
3
+ "version": "3.0.0",
4
+ "description": "presets for OrbCharts",
5
+ "author": "Blue Planet Inc.",
6
+ "license": "Apache-2.0",
7
+ "keywords": [
8
+ "d3",
9
+ "rxjs",
10
+ "svg",
11
+ "visualization",
12
+ "infographic",
13
+ "graph",
14
+ "chart"
15
+ ],
16
+ "private": false,
17
+ "publishConfig": {
18
+ "access": "public",
19
+ "registry": "https://registry.npmjs.org/"
20
+ },
21
+ "files": [
22
+ "*"
23
+ ],
24
+ "module": "./dist/orbcharts-presets-basic.es.js",
25
+ "types": "./dist/src/index.d.ts",
26
+ "scripts": {
27
+ "test": "echo \"Error: no test specified\" && exit 1",
28
+ "build": "vite build --mode production"
29
+ },
30
+ "devDependencies": {
31
+ "@types/d3": "^7.4.0",
32
+ "ts-loader": "^9.4.2",
33
+ "typescript": "^5.0.4",
34
+ "vite": "^5.3.5",
35
+ "vite-plugin-dts": "^3.7.3"
36
+ },
37
+ "dependencies": {
38
+ "@orbcharts/core-types": "^3.0.0",
39
+ "@orbcharts/plugins-basic-types": "^3.0.0",
40
+ "d3": "^7.8.5"
41
+ }
42
+ }
@@ -1,56 +1,74 @@
1
- import type { PresetPartial } from '../../lib/core-types'
2
- import type { PresetBarsParams,
3
- PresetGridPluginParams,
4
- PresetNoneDataPluginParams
5
- } from '../types'
6
- // import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
7
-
8
- export const PRESET_BARS_HORIZONTAL_AND_ROUND: PresetPartial<'grid', Partial<PresetGridPluginParams>
9
- & Partial<PresetNoneDataPluginParams>> = {
10
- name: 'PRESET_BARS_HORIZONTAL_AND_ROUND',
11
- description: '橫向圓角長條圖',
12
- chartParams: {
13
- padding: {
14
- top: 60,
15
- right: 60,
16
- bottom: 120,
17
- left: 160
18
- },
19
- },
20
- dataFormatter: {
21
- // grid: {
22
- valueAxis: {
23
- position: 'bottom'
24
- // position: 'top'
25
- // position: 'left'
26
- // position: 'right'
27
- },
28
- groupAxis: {
29
- position: 'left'
30
- // position: 'right'
31
- // position: 'bottom'
32
- // position: 'top'
33
- },
34
- // }
35
- },
36
- allPluginParams: {
37
- // ...ALL_PLUGIN_PARAMS_NONE_DATA,
38
- Bars: {
39
- barWidth: 0,
40
- barPadding: 1,
41
- barGroupPadding: 10,
42
- barRadius: true,
43
- },
44
- GroupAxis: {},
45
- ValueAxis: {},
46
- GroupAux: {},
47
- GridLegend: {
48
- // 底部圖例及圓弧列點
49
- // position: 'bottom',
50
- // justify: 'center',
51
- placement: 'bottom',
52
- padding: 14,
53
- listRectRadius: 7,
54
- }
55
- }
56
- }
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type { PresetBarsParams,
3
+ PresetGridPluginParams,
4
+ PresetNoneDataPluginParams
5
+ } from '../types'
6
+
7
+ export const PRESET_BARS_HORIZONTAL_AND_ROUND: PresetPartial<'grid', Partial<PresetGridPluginParams>
8
+ & Partial<PresetNoneDataPluginParams>> = {
9
+ name: 'PRESET_BARS_HORIZONTAL_AND_ROUND',
10
+ description: 'Horizontal bars with round corners',
11
+ descriptionZh: '橫向圓角長條圖',
12
+ chartParams: {
13
+ colors: {
14
+ light: {
15
+ label: [
16
+ "#0088FF",
17
+ "#FF72BB",
18
+ "#16B59B",
19
+ "#F9B052",
20
+ "#6F3BD5",
21
+ "#42C724",
22
+ "#FF3232",
23
+ "#904026",
24
+ "#1F3172",
25
+ "#E23D93"
26
+ ],
27
+ },
28
+ dark: {
29
+ label: [
30
+ "#4BABFF",
31
+ "#FFA0A0",
32
+ "#7DD3C4",
33
+ "#FAC77D",
34
+ "#8454D4",
35
+ "#42C724",
36
+ "#FF6C6C",
37
+ "#D4785A",
38
+ "#5366AC",
39
+ "#FF8DC8"
40
+ ]
41
+ }
42
+ },
43
+ padding: {
44
+ top: 40,
45
+ right: 40,
46
+ bottom: 100,
47
+ left: 160
48
+ },
49
+ },
50
+ dataFormatter: {
51
+ valueAxis: {
52
+ position: 'bottom'
53
+ },
54
+ groupAxis: {
55
+ position: 'left'
56
+ },
57
+ },
58
+ pluginParams: {
59
+ Bars: {
60
+ barWidth: 0,
61
+ barPadding: 1,
62
+ barGroupPadding: 10,
63
+ barRadius: true,
64
+ },
65
+ GroupAxis: {},
66
+ ValueAxis: {},
67
+ GroupAux: {},
68
+ GridLegend: {
69
+ placement: 'bottom',
70
+ padding: 14,
71
+ listRectRadius: 7,
72
+ }
73
+ }
74
+ }
@@ -1,52 +1,75 @@
1
- import type { PresetPartial } from '../../lib/core-types'
2
- import type { PresetGridPluginParams,
3
- PresetNoneDataPluginParams
4
- } from '../types'
5
- // import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
6
-
7
- export const PRESET_BARS_HORIZONTAL_AND_THIN: PresetPartial<'grid', Partial<PresetGridPluginParams>
8
- & Partial<PresetNoneDataPluginParams>> = {
9
- name: 'PRESET_BARS_HORIZONTAL_AND_THIN',
10
- description: '橫向細長長條圖',
11
- chartParams: {
12
- padding: {
13
- top: 60,
14
- right: 60,
15
- bottom: 120,
16
- left: 160
17
- },
18
- },
19
- dataFormatter: {
20
- // grid: {
21
- valueAxis: {
22
- position: 'bottom'
23
- // position: 'top'
24
- // position: 'left'
25
- // position: 'right'
26
- },
27
- groupAxis: {
28
- position: 'left'
29
- // position: 'right'
30
- // position: 'bottom'
31
- // position: 'top'
32
- },
33
- // }
34
- },
35
- allPluginParams: {
36
- // ...ALL_PLUGIN_PARAMS_NONE_DATA,
37
- Bars: {
38
- barWidth: 20,
39
- barPadding: 1,
40
- barGroupPadding: 10
41
- },
42
- GroupAxis: {},
43
- ValueAxis: {},
44
- GroupAux: {},
45
- GridLegend: {
46
- // position: 'bottom',
47
- // justify: 'center',
48
- placement: 'bottom',
49
- padding: 14,
50
- }
51
- }
52
- }
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type { PresetGridPluginParams,
3
+ PresetNoneDataPluginParams
4
+ } from '../types'
5
+ // import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
6
+
7
+ export const PRESET_BARS_HORIZONTAL_AND_THIN: PresetPartial<'grid', Partial<PresetGridPluginParams>
8
+ & Partial<PresetNoneDataPluginParams>> = {
9
+ name: 'PRESET_BARS_HORIZONTAL_AND_THIN',
10
+ description: 'Horizontal thin bars',
11
+ descriptionZh: '橫向細長長條圖',
12
+ chartParams: {
13
+ colors: {
14
+ light: {
15
+ label: [
16
+ "#0088FF",
17
+ "#FF72BB",
18
+ "#16B59B",
19
+ "#F9B052",
20
+ "#6F3BD5",
21
+ "#42C724",
22
+ "#FF3232",
23
+ "#904026",
24
+ "#1F3172",
25
+ "#E23D93"
26
+ ],
27
+ },
28
+ dark: {
29
+ label: [
30
+ "#4BABFF",
31
+ "#FFA0A0",
32
+ "#7DD3C4",
33
+ "#FAC77D",
34
+ "#8454D4",
35
+ "#42C724",
36
+ "#FF6C6C",
37
+ "#D4785A",
38
+ "#5366AC",
39
+ "#FF8DC8"
40
+ ]
41
+ }
42
+ },
43
+ padding: {
44
+ top: 40,
45
+ right: 40,
46
+ bottom: 100,
47
+ left: 160
48
+ },
49
+ },
50
+ dataFormatter: {
51
+ valueAxis: {
52
+ position: 'bottom'
53
+ },
54
+ groupAxis: {
55
+ position: 'left'
56
+ },
57
+ },
58
+ pluginParams: {
59
+ // ...ALL_PLUGIN_PARAMS_NONE_DATA,
60
+ Bars: {
61
+ barWidth: 20,
62
+ barPadding: 1,
63
+ barGroupPadding: 10
64
+ },
65
+ GroupAxis: {},
66
+ ValueAxis: {},
67
+ GroupAux: {},
68
+ GridLegend: {
69
+ // position: 'bottom',
70
+ // justify: 'center',
71
+ placement: 'bottom',
72
+ padding: 14,
73
+ }
74
+ }
75
+ }
@@ -1,39 +1,70 @@
1
- import type { PresetPartial } from '../../lib/core-types'
2
- import type { PresetGridPluginParams,
3
- PresetNoneDataPluginParams
4
- } from '../types'
5
- import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
6
-
7
- export const PRESET_BARS_ROUND: PresetPartial<'grid', Partial<PresetGridPluginParams>
8
- & Partial<PresetNoneDataPluginParams>> = {
9
- name: 'PRESET_BARS_ROUND',
10
- description: '圓角長條圖',
11
- chartParams: {
12
- padding: {
13
- top: 60,
14
- right: 60,
15
- bottom: 120,
16
- left: 60
17
- },
18
- },
19
- allPluginParams: {
20
- // ...ALL_PLUGIN_PARAMS_NONE_DATA,
21
- Bars: {
22
- barWidth: 0,
23
- barPadding: 1,
24
- barGroupPadding: 10,
25
- barRadius: true,
26
- },
27
- GroupAxis: {},
28
- ValueAxis: {},
29
- GroupAux: {},
30
- GridLegend: {
31
- // 底部圖例及圓弧列點
32
- // position: 'bottom',
33
- // justify: 'center',
34
- placement: 'bottom',
35
- padding: 14,
36
- listRectRadius: 7,
37
- }
38
- }
39
- }
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type { PresetGridPluginParams,
3
+ PresetNoneDataPluginParams
4
+ } from '../types'
5
+ import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
6
+
7
+ export const PRESET_BARS_ROUND: PresetPartial<'grid', Partial<PresetGridPluginParams>
8
+ & Partial<PresetNoneDataPluginParams>> = {
9
+ name: 'PRESET_BARS_ROUND',
10
+ description: 'Rounded bars',
11
+ descriptionZh: '圓角長條圖',
12
+ chartParams: {
13
+ colors: {
14
+ light: {
15
+ label: [
16
+ "#0088FF",
17
+ "#FF72BB",
18
+ "#16B59B",
19
+ "#F9B052",
20
+ "#6F3BD5",
21
+ "#42C724",
22
+ "#FF3232",
23
+ "#904026",
24
+ "#1F3172",
25
+ "#E23D93"
26
+ ],
27
+ },
28
+ dark: {
29
+ label: [
30
+ "#4BABFF",
31
+ "#FFA0A0",
32
+ "#7DD3C4",
33
+ "#FAC77D",
34
+ "#8454D4",
35
+ "#42C724",
36
+ "#FF6C6C",
37
+ "#D4785A",
38
+ "#5366AC",
39
+ "#FF8DC8"
40
+ ]
41
+ }
42
+ },
43
+ padding: {
44
+ top: 40,
45
+ right: 40,
46
+ bottom: 100,
47
+ left: 80
48
+ },
49
+ },
50
+ pluginParams: {
51
+ // ...ALL_PLUGIN_PARAMS_NONE_DATA,
52
+ Bars: {
53
+ barWidth: 0,
54
+ barPadding: 1,
55
+ barGroupPadding: 10,
56
+ barRadius: true,
57
+ },
58
+ GroupAxis: {},
59
+ ValueAxis: {},
60
+ GroupAux: {},
61
+ GridLegend: {
62
+ // 底部圖例及圓弧列點
63
+ // position: 'bottom',
64
+ // justify: 'center',
65
+ placement: 'bottom',
66
+ padding: 14,
67
+ listRectRadius: 7,
68
+ }
69
+ }
70
+ }