@orbcharts/plugins-basic 3.0.0-beta.19 → 3.0.0-beta.20

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 (110) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-plugins-basic.es.js +60 -22
  3. package/dist/orbcharts-plugins-basic.umd.js +86 -66
  4. package/lib/core-types.ts +7 -7
  5. package/lib/core.ts +6 -6
  6. package/lib/plugins-basic-types.ts +6 -6
  7. package/package.json +44 -44
  8. package/src/base/BaseBars.ts +765 -765
  9. package/src/base/BaseBarsTriangle.ts +676 -676
  10. package/src/base/BaseDots.ts +464 -464
  11. package/src/base/BaseGroupAxis.ts +691 -691
  12. package/src/base/BaseLegend.ts +684 -684
  13. package/src/base/BaseLineAreas.ts +629 -629
  14. package/src/base/BaseLines.ts +706 -706
  15. package/src/base/BaseRacingBars.ts +551 -551
  16. package/src/base/BaseRacingLabels.ts +396 -396
  17. package/src/base/BaseRacingValueLabels.ts +403 -403
  18. package/src/base/BaseStackedBars.ts +782 -782
  19. package/src/base/BaseTooltip.ts +386 -386
  20. package/src/base/BaseValueAxis.ts +600 -600
  21. package/src/base/BaseXAxis.ts +427 -427
  22. package/src/base/BaseYAxis.ts +389 -389
  23. package/src/base/types.ts +2 -2
  24. package/src/const.ts +30 -30
  25. package/src/grid/defaults.ts +213 -213
  26. package/src/grid/gridObservables.ts +612 -612
  27. package/src/grid/index.ts +16 -16
  28. package/src/grid/plugins/Bars.ts +69 -69
  29. package/src/grid/plugins/BarsPN.ts +66 -66
  30. package/src/grid/plugins/BarsTriangle.ts +73 -73
  31. package/src/grid/plugins/Dots.ts +68 -68
  32. package/src/grid/plugins/GridLegend.ts +107 -107
  33. package/src/grid/plugins/GridTooltip.ts +66 -66
  34. package/src/grid/plugins/GroupAux.ts +1120 -1120
  35. package/src/grid/plugins/GroupAxis.ts +73 -73
  36. package/src/grid/plugins/GroupZoom.ts +218 -218
  37. package/src/grid/plugins/LineAreas.ts +65 -65
  38. package/src/grid/plugins/Lines.ts +59 -59
  39. package/src/grid/plugins/StackedBars.ts +64 -64
  40. package/src/grid/plugins/StackedValueAxis.ts +96 -96
  41. package/src/grid/plugins/ValueAxis.ts +94 -94
  42. package/src/index.ts +6 -6
  43. package/src/multiGrid/defaults.ts +244 -244
  44. package/src/multiGrid/index.ts +14 -14
  45. package/src/multiGrid/multiGridObservables.ts +50 -50
  46. package/src/multiGrid/plugins/MultiBars.ts +108 -108
  47. package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
  48. package/src/multiGrid/plugins/MultiDots.ts +102 -102
  49. package/src/multiGrid/plugins/MultiGridLegend.ts +169 -169
  50. package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -66
  51. package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
  52. package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
  53. package/src/multiGrid/plugins/MultiLines.ts +101 -101
  54. package/src/multiGrid/plugins/MultiStackedBars.ts +106 -106
  55. package/src/multiGrid/plugins/MultiStackedValueAxis.ts +134 -134
  56. package/src/multiGrid/plugins/MultiValueAxis.ts +134 -134
  57. package/src/multiGrid/plugins/OverlappingStackedValueAxes.ts +300 -300
  58. package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -300
  59. package/src/multiValue/defaults.ts +431 -391
  60. package/src/multiValue/index.ts +12 -12
  61. package/src/multiValue/multiValueObservables.ts +666 -666
  62. package/src/multiValue/plugins/MultiValueLegend.ts +107 -107
  63. package/src/multiValue/plugins/MultiValueTooltip.ts +66 -66
  64. package/src/multiValue/plugins/RacingBars.ts +373 -373
  65. package/src/multiValue/plugins/RacingCounterTexts.ts +300 -300
  66. package/src/multiValue/plugins/RacingValueAxis.ts +114 -114
  67. package/src/multiValue/plugins/RankingAxis_legacy.ts +109 -109
  68. package/src/multiValue/plugins/Scatter.ts +426 -426
  69. package/src/multiValue/plugins/ScatterBubbles.ts +554 -554
  70. package/src/multiValue/plugins/XAxis.ts +107 -107
  71. package/src/multiValue/plugins/XYAux.ts +682 -682
  72. package/src/multiValue/plugins/XYAxes.ts +194 -194
  73. package/src/multiValue/plugins/XYAxes_legacy.ts +683 -683
  74. package/src/multiValue/plugins/XZoom.ts +299 -299
  75. package/src/noneData/defaults.ts +102 -102
  76. package/src/noneData/index.ts +3 -3
  77. package/src/noneData/plugins/Container.ts +27 -27
  78. package/src/noneData/plugins/Tooltip.ts +373 -373
  79. package/src/relationship/defaults.ts +221 -221
  80. package/src/relationship/index.ts +5 -5
  81. package/src/relationship/plugins/ForceDirected.ts +1173 -1173
  82. package/src/relationship/plugins/ForceDirectedBubbles.ts +1411 -1411
  83. package/src/relationship/plugins/RelationshipLegend.ts +100 -100
  84. package/src/relationship/plugins/RelationshipTooltip.ts +66 -66
  85. package/src/relationship/relationshipObservables.ts +49 -49
  86. package/src/series/defaults.ts +221 -221
  87. package/src/series/index.ts +9 -9
  88. package/src/series/plugins/Bubbles.ts +636 -636
  89. package/src/series/plugins/Pie.ts +623 -623
  90. package/src/series/plugins/PieEventTexts.ts +284 -284
  91. package/src/series/plugins/PieLabels.ts +640 -640
  92. package/src/series/plugins/Rose.ts +516 -516
  93. package/src/series/plugins/RoseLabels.ts +600 -600
  94. package/src/series/plugins/SeriesLegend.ts +107 -107
  95. package/src/series/plugins/SeriesTooltip.ts +66 -66
  96. package/src/series/seriesObservables.ts +145 -145
  97. package/src/series/seriesUtils.ts +51 -51
  98. package/src/tree/defaults.ts +102 -102
  99. package/src/tree/index.ts +4 -4
  100. package/src/tree/plugins/TreeLegend.ts +100 -100
  101. package/src/tree/plugins/TreeMap.ts +341 -341
  102. package/src/tree/plugins/TreeTooltip.ts +66 -66
  103. package/src/utils/commonUtils.ts +31 -31
  104. package/src/utils/d3Graphics.ts +176 -176
  105. package/src/utils/d3Utils.ts +92 -92
  106. package/src/utils/observables.ts +14 -14
  107. package/src/utils/orbchartsUtils.ts +129 -129
  108. package/tsconfig.base.json +13 -13
  109. package/tsconfig.json +2 -2
  110. package/vite.config.js +22 -22
@@ -1,392 +1,432 @@
1
- import type { ComputedDataTypeMap } from '../../lib/core-types'
2
- import type {
3
- MultiValueLegendParams,
4
- MultiValueTooltipParams,
5
- RacingBarsParams,
6
- RacingCounterTextsParams,
7
- RacingValueAxisParams,
8
- ScatterParams,
9
- ScatterBubblesParams,
10
- XAxisParams,
11
- XYAuxParams,
12
- XYAxesParams,
13
- XZoomParams
14
- } from '../../lib/plugins-basic-types'
15
-
16
-
17
- export const DEFAULT_MULTI_VALUE_LEGEND_PARAMS: MultiValueLegendParams = {
18
- // position: 'right',
19
- // justify: 'end',
20
- placement: 'bottom',
21
- padding: 28,
22
- // offset: [0, 0],
23
- backgroundFill: 'none',
24
- backgroundStroke: 'none',
25
- gap: 10,
26
- listRectWidth: 14,
27
- listRectHeight: 14,
28
- listRectRadius: 0,
29
- // highlightEvent: false
30
- textColorType: 'primary'
31
- }
32
-
33
- export const DEFAULT_MULTI_VALUE_TOOLTIP_PARAMS: MultiValueTooltipParams = {
34
- backgroundColorType: 'background',
35
- strokeColorType: 'primary',
36
- backgroundOpacity: 0.8,
37
- textColorType: 'primary',
38
- offset: [20, 5],
39
- padding: 10,
40
- renderFn: (eventData, { styles, utils }) => {
41
- const hasCategoryLabel = eventData.categoryLabel === '' ? false : true
42
- const hasDatumLabel = eventData.datum.label.slice(0, 11) === 'multiValue_' ? false : true
43
- const valueText = eventData.datum._visibleValue.map(d => utils.toCurrency(d))
44
- const bulletWidth = styles.textSizePx * 0.7
45
- const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
46
- const categorySvg = hasCategoryLabel
47
- ? `<rect width="${bulletWidth}" height="${bulletWidth}" x="${offset}" y="${offset - 1}" rx="${bulletWidth / 2}" fill="${eventData.datum.color}"></rect>
48
- <text x="${styles.textSizePx * 1.5}" font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">
49
- <tspan>${eventData.categoryLabel}</tspan>
50
- </text>`
51
- : ''
52
- const datumLabelSvg = hasDatumLabel
53
- ? `<tspan>${eventData.datum.label}</tspan> `
54
- : ''
55
- const datumSvg = `<text font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">
56
- ${datumLabelSvg}<tspan font-weight="bold">${valueText}</tspan>
57
- </text>`
58
-
59
- return `${categorySvg}
60
- <g ${hasCategoryLabel ? `transform="translate(0, ${styles.textSizePx * 2})"` : ''}>
61
- ${datumSvg}
62
- </g>`
63
- },
64
- }
65
- DEFAULT_MULTI_VALUE_TOOLTIP_PARAMS.renderFn.toString = () => `(eventData, { styles, utils }) => {
66
- const hasCategoryLabel = eventData.categoryLabel === '' ? false : true
67
- const hasDatumLabel = eventData.datum.label.slice(0, 11) === 'multiValue_' ? false : true
68
- const valueText = eventData.datum._visibleValue.map(d => utils.toCurrency(d))
69
- const bulletWidth = styles.textSizePx * 0.7
70
- const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
71
- const categorySvg = hasCategoryLabel
72
- ? \`<rect width="\${bulletWidth}" height="\${bulletWidth}" x="\${offset}" y="\${offset - 1}" rx="\${bulletWidth / 2}" fill="\${eventData.datum.color}"></rect>
73
- <text x="\${styles.textSizePx * 1.5}" font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
74
- <tspan>\${eventData.categoryLabel}</tspan>
75
- </text>\`
76
- : ''
77
- const datumLabelSvg = hasDatumLabel
78
- ? \`<tspan>\${eventData.datum.label}</tspan> \`
79
- : ''
80
- const datumSvg = \`<text font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
81
- \${datumLabelSvg}<tspan font-weight="bold">\${valueText}</tspan>
82
- </text>\`
83
-
84
- return \`\${categorySvg}
85
- <g \${hasCategoryLabel ? \`transform="translate(0, \${styles.textSizePx * 2})"\` : ''}>
86
- \${datumSvg}
87
- </g>\`
88
- }`
89
-
90
- // export const DEFAULT_RANKING_AXIS_PARAMS: RacingAxisParams = {
91
- // labelOffset: [0, 0],
92
- // labelColorType: 'primary',
93
- // axisLineVisible: false,
94
- // axisLineColorType: 'primary',
95
- // // ticks: null,
96
- // // tickFormat: v => v,
97
- // tickLineVisible: true,
98
- // tickPadding: 20,
99
- // // tickFullLine: true,
100
- // // tickFullLineDasharray: 'none',
101
- // tickColorType: 'secondary',
102
- // tickTextRotate: 0,
103
- // tickTextColorType: 'primary'
104
- // }
105
-
106
- export const DEFAULT_RACING_BARS_PARAMS: RacingBarsParams = {
107
- bar: {
108
- barWidth: 0,
109
- barPadding: 8,
110
- barRadius: false,
111
- },
112
- barLabel: {
113
- position: 'inside',
114
- padding: 20,
115
- rotate: 0,
116
- colorType: 'labelContrast'
117
- },
118
- valueLabel: {
119
- padding: 20,
120
- colorType: 'primary',
121
- // format: num => {
122
- // if (num === null || Number.isNaN(num) == true) {
123
- // return num || 0
124
- // }
125
- // var parts = num.toString().split('.')
126
- // parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
127
- // return parts.join('.')
128
- // }
129
- format: v => v
130
- },
131
- axisLabel: {
132
- offset: [0, 0],
133
- colorType: 'primary'
134
- },
135
- // rankingAmount: 'auto'
136
- rankingAmount: 10,
137
- autorun: false,
138
- loop: false
139
- }
140
- // DEFAULT_RACING_BARS_PARAMS.valueLabel.format.toString = () => `num => {
141
- // if (num === null || Number.isNaN(num) == true) {
142
- // return num || 0
143
- // }
144
- // var parts = num.toString().split('.')
145
- // parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
146
- // return parts.join('.')
147
- // }
148
- // }`
149
- DEFAULT_RACING_BARS_PARAMS.valueLabel.format.toString = () => `v => v`
150
-
151
- export const DEFAULT_RACING_COUNTER_TEXTS_PARAMS: RacingCounterTextsParams = {
152
- renderFn: (valueLabel: string, valueIndex: number, data: ComputedDataTypeMap<'multiValue'>) => {
153
- return valueLabel
154
- },
155
- textAttrs: [
156
- {
157
- "transform": "translate(0, 0)"
158
- }
159
- ],
160
- textStyles: [
161
- {
162
- "font-weight": "bold",
163
- "text-anchor": "end",
164
- "pointer-events": "none",
165
- "dominant-baseline": "auto",
166
- "font-size": 64,
167
- "fill": "#bebebe"
168
- },
169
- {
170
- "text-anchor": "end",
171
- "pointer-events": "none",
172
- "dominant-baseline": "auto",
173
- "font-size": 24,
174
- "fill": "#bebebe"
175
- },
176
- ],
177
- paddingRight: 0,
178
- paddingBottom: 0
179
- }
180
- DEFAULT_RACING_COUNTER_TEXTS_PARAMS.renderFn.toString = () => `(valueLabel, valueIndex, data) => {
181
- return valueLabel
182
- }`
183
-
184
- export const DEFAULT_RACING_VALUE_AXIS_PARAMS: RacingValueAxisParams = {
185
- labelOffset: [0, 0],
186
- labelColorType: 'primary',
187
- axisLineVisible: false,
188
- axisLineColorType: 'secondary',
189
- ticks: null,
190
- // tickFormat: ',.0f',
191
- // tickFormat: v => v,
192
- tickFormat: num => {
193
- if (num === null || Number.isNaN(num) == true) {
194
- return num || 0
195
- }
196
- var parts = num.toString().split('.')
197
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
198
- return parts.join('.')
199
- },
200
- tickLineVisible: true,
201
- tickPadding: 20,
202
- tickFullLine: true,
203
- tickFullLineDasharray: 'none',
204
- tickColorType: 'secondary',
205
- tickTextColorType: 'primary'
206
- }
207
- DEFAULT_RACING_VALUE_AXIS_PARAMS.tickFormat.toString = () => `num => {
208
- if (num === null || Number.isNaN(num) == true) {
209
- return num || 0
210
- }
211
- var parts = num.toString().split('.')
212
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
213
- return parts.join('.')
214
- }`
215
-
216
- export const DEFAULT_SCATTER_PARAMS: ScatterParams = {
217
- radius: 5,
218
- fillColorType: 'label',
219
- strokeColorType: 'label',
220
- strokeWidth: 0,
221
- }
222
-
223
- export const DEFAULT_SCATTER_BUBBLES_PARAMS: ScatterBubblesParams = {
224
- // radius: 5,
225
- fillColorType: 'label',
226
- strokeColorType: 'label',
227
- strokeWidth: 0,
228
- valueLinearOpacity: [0.8, 0.8],
229
- arcScaleType: 'area',
230
- sizeAdjust: 0.5
231
- }
232
-
233
- export const DEFAULT_X_AXIS_PARAMS: XAxisParams = {
234
- labelOffset: [0, 0],
235
- labelColorType: 'primary',
236
- axisLineVisible: false,
237
- axisLineColorType: 'secondary',
238
- ticks: null,
239
- // tickFormat: ',.0f',
240
- // tickFormat: v => v,
241
- tickFormat: num => {
242
- if (num === null || Number.isNaN(num) == true) {
243
- return num || 0
244
- }
245
- var parts = num.toString().split('.')
246
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
247
- return parts.join('.')
248
- },
249
- tickLineVisible: true,
250
- tickPadding: 20,
251
- tickFullLine: true,
252
- tickFullLineDasharray: 'none',
253
- tickColorType: 'secondary',
254
- tickTextColorType: 'primary'
255
- }
256
- DEFAULT_X_AXIS_PARAMS.tickFormat.toString = () => `num => {
257
- if (num === null || Number.isNaN(num) == true) {
258
- return num || 0
259
- }
260
- var parts = num.toString().split('.')
261
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
262
- return parts.join('.')
263
- }`
264
-
265
- export const DEFAULT_X_Y_AUX_PARAMS: XYAuxParams = {
266
- xAxis: {
267
- showLine: true,
268
- showLabel: true,
269
- lineDashArray: '3, 3',
270
- lineColorType: 'primary',
271
- labelColorType: 'primary',
272
- labelTextColorType: 'background',
273
- // labelTextFormat: text => text,
274
- // labelTextFormat: (value: number) => String(Math.round(value)),
275
- labelTextFormat: num => {
276
- if (num === null || Number.isNaN(num) == true) {
277
- return num || 0
278
- }
279
- var parts = num.toString().split('.')
280
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
281
- return parts.join('.')
282
- },
283
- labelPadding: 20,
284
- // labelRotate: 0
285
- },
286
- yAxis: {
287
- showLine: true,
288
- showLabel: true,
289
- lineDashArray: '3, 3',
290
- lineColorType: 'primary',
291
- labelColorType: 'primary',
292
- labelTextColorType: 'background',
293
- // labelTextFormat: text => text,
294
- // labelTextFormat: (value: number) => String(Math.round(value)),
295
- labelTextFormat: num => {
296
- if (num === null || Number.isNaN(num) == true) {
297
- return num || 0
298
- }
299
- var parts = num.toString().split('.')
300
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
301
- return parts.join('.')
302
- },
303
- labelPadding: 20,
304
- // labelRotate: 0
305
- }
306
- }
307
- DEFAULT_X_Y_AUX_PARAMS.xAxis.labelTextFormat.toString = () => `num => {
308
- if (num === null || Number.isNaN(num) == true) {
309
- return num || 0
310
- }
311
- var parts = num.toString().split('.')
312
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
313
- return parts.join('.')
314
- }`
315
- DEFAULT_X_Y_AUX_PARAMS.yAxis.labelTextFormat.toString = () => `num => {
316
- if (num === null || Number.isNaN(num) == true) {
317
- return num || 0
318
- }
319
- var parts = num.toString().split('.')
320
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
321
- return parts.join('.')
322
- }`
323
-
324
-
325
- export const DEFAULT_X_Y_AXES_PARAMS: XYAxesParams = {
326
- xAxis: {
327
- labelOffset: [0, 0],
328
- labelColorType: 'primary',
329
- axisLineVisible: false,
330
- axisLineColorType: 'primary',
331
- ticks: null,
332
- // tickFormat: ',.0f',
333
- // tickFormat: v => v,
334
- tickFormat: num => {
335
- if (num === null || Number.isNaN(num) == true) {
336
- return num || 0
337
- }
338
- var parts = num.toString().split('.')
339
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
340
- return parts.join('.')
341
- },
342
- tickLineVisible: true,
343
- tickPadding: 20,
344
- tickFullLine: true,
345
- tickFullLineDasharray: 'none',
346
- tickColorType: 'secondary',
347
- tickTextColorType: 'primary'
348
- },
349
- yAxis: {
350
- labelOffset: [0, 0],
351
- labelColorType: 'primary',
352
- axisLineVisible: false,
353
- axisLineColorType: 'primary',
354
- ticks: null,
355
- // tickFormat: ',.0f',
356
- // tickFormat: v => v,
357
- tickFormat: num => {
358
- if (num === null || Number.isNaN(num) == true) {
359
- return num || 0
360
- }
361
- var parts = num.toString().split('.')
362
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
363
- return parts.join('.')
364
- },
365
- tickLineVisible: true,
366
- tickPadding: 20,
367
- tickFullLine: true,
368
- tickFullLineDasharray: 'none',
369
- tickColorType: 'secondary',
370
- tickTextColorType: 'primary'
371
- }
372
- }
373
- DEFAULT_X_Y_AXES_PARAMS.xAxis.tickFormat.toString = () => `num => {
374
- if (num === null || Number.isNaN(num) == true) {
375
- return num || 0
376
- }
377
- var parts = num.toString().split('.')
378
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
379
- return parts.join('.')
380
- }`
381
- DEFAULT_X_Y_AXES_PARAMS.yAxis.tickFormat.toString = () => `num => {
382
- if (num === null || Number.isNaN(num) == true) {
383
- return num || 0
384
- }
385
- var parts = num.toString().split('.')
386
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
387
- return parts.join('.')
388
- }`
389
-
390
- export const DEFAULT_X_ZOOM_PARAMS: XZoomParams = {
391
-
1
+ import type { ComputedDataTypeMap } from '../../lib/core-types'
2
+ import type {
3
+ MultiValueLegendParams,
4
+ MultiValueTooltipParams,
5
+ RacingBarsParams,
6
+ RacingCounterTextsParams,
7
+ RacingValueAxisParams,
8
+ ScatterParams,
9
+ ScatterBubblesParams,
10
+ XAxisParams,
11
+ XYAuxParams,
12
+ XYAxesParams,
13
+ XZoomParams
14
+ } from '../../lib/plugins-basic-types'
15
+
16
+
17
+ export const DEFAULT_MULTI_VALUE_LEGEND_PARAMS: MultiValueLegendParams = {
18
+ // position: 'right',
19
+ // justify: 'end',
20
+ placement: 'bottom',
21
+ padding: 28,
22
+ // offset: [0, 0],
23
+ backgroundFill: 'none',
24
+ backgroundStroke: 'none',
25
+ gap: 10,
26
+ listRectWidth: 14,
27
+ listRectHeight: 14,
28
+ listRectRadius: 0,
29
+ // highlightEvent: false
30
+ textColorType: 'primary'
31
+ }
32
+
33
+ export const DEFAULT_MULTI_VALUE_TOOLTIP_PARAMS: MultiValueTooltipParams = {
34
+ backgroundColorType: 'background',
35
+ strokeColorType: 'primary',
36
+ backgroundOpacity: 0.8,
37
+ textColorType: 'primary',
38
+ offset: [20, 5],
39
+ padding: 10,
40
+ renderFn: (eventData, { styles, utils }) => {
41
+ const hasCategoryLabel = eventData.categoryLabel === '' ? false : true
42
+ const hasDatumLabel = eventData.datum.label.slice(0, 11) === 'multiValue_' ? false : true
43
+ const valueText = eventData.datum._visibleValue.map(d => utils.toCurrency(d))
44
+ const bulletWidth = styles.textSizePx * 0.7
45
+ const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
46
+ const categorySvg = hasCategoryLabel
47
+ ? `<rect width="${bulletWidth}" height="${bulletWidth}" x="${offset}" y="${offset - 1}" rx="${bulletWidth / 2}" fill="${eventData.datum.color}"></rect>
48
+ <text x="${styles.textSizePx * 1.5}" font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">
49
+ <tspan>${eventData.categoryLabel}</tspan>
50
+ </text>`
51
+ : ''
52
+ const datumLabelSvg = hasDatumLabel
53
+ ? `<tspan>${eventData.datum.label}</tspan> `
54
+ : ''
55
+ const datumSvg = `<text font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">
56
+ ${datumLabelSvg}<tspan font-weight="bold">${valueText}</tspan>
57
+ </text>`
58
+
59
+ return `${categorySvg}
60
+ <g ${hasCategoryLabel ? `transform="translate(0, ${styles.textSizePx * 2})"` : ''}>
61
+ ${datumSvg}
62
+ </g>`
63
+ },
64
+ }
65
+ DEFAULT_MULTI_VALUE_TOOLTIP_PARAMS.renderFn.toString = () => `(eventData, { styles, utils }) => {
66
+ const hasCategoryLabel = eventData.categoryLabel === '' ? false : true
67
+ const hasDatumLabel = eventData.datum.label.slice(0, 11) === 'multiValue_' ? false : true
68
+ const valueText = eventData.datum._visibleValue.map(d => utils.toCurrency(d))
69
+ const bulletWidth = styles.textSizePx * 0.7
70
+ const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
71
+ const categorySvg = hasCategoryLabel
72
+ ? \`<rect width="\${bulletWidth}" height="\${bulletWidth}" x="\${offset}" y="\${offset - 1}" rx="\${bulletWidth / 2}" fill="\${eventData.datum.color}"></rect>
73
+ <text x="\${styles.textSizePx * 1.5}" font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
74
+ <tspan>\${eventData.categoryLabel}</tspan>
75
+ </text>\`
76
+ : ''
77
+ const datumLabelSvg = hasDatumLabel
78
+ ? \`<tspan>\${eventData.datum.label}</tspan> \`
79
+ : ''
80
+ const datumSvg = \`<text font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
81
+ \${datumLabelSvg}<tspan font-weight="bold">\${valueText}</tspan>
82
+ </text>\`
83
+
84
+ return \`\${categorySvg}
85
+ <g \${hasCategoryLabel ? \`transform="translate(0, \${styles.textSizePx * 2})"\` : ''}>
86
+ \${datumSvg}
87
+ </g>\`
88
+ }`
89
+
90
+ // export const DEFAULT_RANKING_AXIS_PARAMS: RacingAxisParams = {
91
+ // labelOffset: [0, 0],
92
+ // labelColorType: 'primary',
93
+ // axisLineVisible: false,
94
+ // axisLineColorType: 'primary',
95
+ // // ticks: null,
96
+ // // tickFormat: v => v,
97
+ // tickLineVisible: true,
98
+ // tickPadding: 20,
99
+ // // tickFullLine: true,
100
+ // // tickFullLineDasharray: 'none',
101
+ // tickColorType: 'secondary',
102
+ // tickTextRotate: 0,
103
+ // tickTextColorType: 'primary'
104
+ // }
105
+
106
+ export const DEFAULT_RACING_BARS_PARAMS: RacingBarsParams = {
107
+ bar: {
108
+ barWidth: 0,
109
+ barPadding: 8,
110
+ barRadius: false,
111
+ },
112
+ barLabel: {
113
+ position: 'inside',
114
+ padding: 20,
115
+ rotate: 0,
116
+ colorType: 'labelContrast'
117
+ },
118
+ valueLabel: {
119
+ padding: 20,
120
+ colorType: 'primary',
121
+ // format: num => {
122
+ // if (num === null || Number.isNaN(num) == true) {
123
+ // return num || 0
124
+ // }
125
+ // const parts = num.toString().split('.')
126
+ // parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
127
+ // return parts.join('.')
128
+ // }
129
+ format: v => v
130
+ },
131
+ axisLabel: {
132
+ offset: [0, 0],
133
+ colorType: 'primary'
134
+ },
135
+ // rankingAmount: 'auto'
136
+ rankingAmount: 10,
137
+ autorun: false,
138
+ loop: false
139
+ }
140
+ // DEFAULT_RACING_BARS_PARAMS.valueLabel.format.toString = () => `num => {
141
+ // if (num === null || Number.isNaN(num) == true) {
142
+ // return num || 0
143
+ // }
144
+ // const parts = num.toString().split('.')
145
+ // parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
146
+ // return parts.join('.')
147
+ // }
148
+ // }`
149
+ DEFAULT_RACING_BARS_PARAMS.valueLabel.format.toString = () => `v => v`
150
+
151
+ export const DEFAULT_RACING_COUNTER_TEXTS_PARAMS: RacingCounterTextsParams = {
152
+ renderFn: (valueLabel: string, valueIndex: number, data: ComputedDataTypeMap<'multiValue'>) => {
153
+ return valueLabel
154
+ },
155
+ textAttrs: [
156
+ {
157
+ "transform": "translate(0, 0)"
158
+ }
159
+ ],
160
+ textStyles: [
161
+ {
162
+ "font-weight": "bold",
163
+ "text-anchor": "end",
164
+ "pointer-events": "none",
165
+ "dominant-baseline": "auto",
166
+ "font-size": 64,
167
+ "fill": "#bebebe"
168
+ },
169
+ {
170
+ "text-anchor": "end",
171
+ "pointer-events": "none",
172
+ "dominant-baseline": "auto",
173
+ "font-size": 24,
174
+ "fill": "#bebebe"
175
+ },
176
+ ],
177
+ paddingRight: 0,
178
+ paddingBottom: 0
179
+ }
180
+ DEFAULT_RACING_COUNTER_TEXTS_PARAMS.renderFn.toString = () => `(valueLabel, valueIndex, data) => {
181
+ return valueLabel
182
+ }`
183
+
184
+ export const DEFAULT_RACING_VALUE_AXIS_PARAMS: RacingValueAxisParams = {
185
+ labelOffset: [0, 0],
186
+ labelColorType: 'primary',
187
+ axisLineVisible: false,
188
+ axisLineColorType: 'secondary',
189
+ ticks: null,
190
+ // tickFormat: ',.0f',
191
+ // tickFormat: v => v,
192
+ tickFormat: num => {
193
+ if (num === null || Number.isNaN(num) == true) {
194
+ return num || 0
195
+ }
196
+ const parts = num.toString().split('.')
197
+ parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
198
+ return parts.join('.')
199
+ },
200
+ tickLineVisible: true,
201
+ tickPadding: 20,
202
+ tickFullLine: true,
203
+ tickFullLineDasharray: 'none',
204
+ tickColorType: 'secondary',
205
+ tickTextColorType: 'primary'
206
+ }
207
+ DEFAULT_RACING_VALUE_AXIS_PARAMS.tickFormat.toString = () => `num => {
208
+ if (num === null || Number.isNaN(num) == true) {
209
+ return num || 0
210
+ }
211
+ const parts = num.toString().split('.')
212
+ parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
213
+ return parts.join('.')
214
+ }`
215
+
216
+ export const DEFAULT_SCATTER_PARAMS: ScatterParams = {
217
+ radius: 5,
218
+ fillColorType: 'label',
219
+ strokeColorType: 'label',
220
+ strokeWidth: 0,
221
+ }
222
+
223
+ export const DEFAULT_SCATTER_BUBBLES_PARAMS: ScatterBubblesParams = {
224
+ // radius: 5,
225
+ fillColorType: 'label',
226
+ strokeColorType: 'label',
227
+ strokeWidth: 0,
228
+ valueLinearOpacity: [0.8, 0.8],
229
+ arcScaleType: 'area',
230
+ sizeAdjust: 0.5
231
+ }
232
+
233
+ export const DEFAULT_X_AXIS_PARAMS: XAxisParams = {
234
+ labelOffset: [0, 0],
235
+ labelColorType: 'primary',
236
+ axisLineVisible: false,
237
+ axisLineColorType: 'secondary',
238
+ ticks: null,
239
+ // tickFormat: ',.0f',
240
+ // tickFormat: v => v,
241
+ tickFormat: num => {
242
+ if (num === null || Number.isNaN(num) == true) {
243
+ return num || 0
244
+ }
245
+ const parts = num.toString().split('.')
246
+ parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
247
+ return parts.join('.')
248
+ },
249
+ tickLineVisible: true,
250
+ tickPadding: 20,
251
+ tickFullLine: true,
252
+ tickFullLineDasharray: 'none',
253
+ tickColorType: 'secondary',
254
+ tickTextColorType: 'primary'
255
+ }
256
+ DEFAULT_X_AXIS_PARAMS.tickFormat.toString = () => `num => {
257
+ if (num === null || Number.isNaN(num) == true) {
258
+ return num || 0
259
+ }
260
+ const parts = num.toString().split('.')
261
+ parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
262
+ return parts.join('.')
263
+ }`
264
+
265
+ export const DEFAULT_X_Y_AUX_PARAMS: XYAuxParams = {
266
+ xAxis: {
267
+ showLine: true,
268
+ showLabel: true,
269
+ lineDashArray: '3, 3',
270
+ lineColorType: 'primary',
271
+ labelColorType: 'primary',
272
+ labelTextColorType: 'background',
273
+ // labelTextFormat: text => text,
274
+ // labelTextFormat: (value: number) => String(Math.round(value)),
275
+ labelTextFormat: num => {
276
+ if (num === null || Number.isNaN(num) == true) {
277
+ return num || 0
278
+ }
279
+ const absNum = Math.abs(num)
280
+ if (absNum > 0 && absNum < 1) {
281
+ const strNum = num.toString()
282
+ const match = strNum.match(/0\.(0*)([1-9])/)
283
+ if (match) {
284
+ const precision = match[1].length + 1
285
+ return num.toFixed(precision)
286
+ }
287
+ return num.toString()
288
+ }
289
+ const parts = num.toString().split('.')
290
+ parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
291
+ return parts[0]
292
+ },
293
+ labelPadding: 20,
294
+ // labelRotate: 0
295
+ },
296
+ yAxis: {
297
+ showLine: true,
298
+ showLabel: true,
299
+ lineDashArray: '3, 3',
300
+ lineColorType: 'primary',
301
+ labelColorType: 'primary',
302
+ labelTextColorType: 'background',
303
+ // labelTextFormat: text => text,
304
+ // labelTextFormat: (value: number) => String(Math.round(value)),
305
+ labelTextFormat: num => {
306
+ if (num === null || Number.isNaN(num) == true) {
307
+ return num || 0
308
+ }
309
+ const absNum = Math.abs(num)
310
+ if (absNum > 0 && absNum < 1) {
311
+ const strNum = num.toString()
312
+ const match = strNum.match(/0\.(0*)([1-9])/)
313
+ if (match) {
314
+ const precision = match[1].length + 1
315
+ return num.toFixed(precision)
316
+ }
317
+ return num.toString()
318
+ }
319
+ const parts = num.toString().split('.')
320
+ parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
321
+ return parts[0]
322
+ },
323
+ labelPadding: 20,
324
+ // labelRotate: 0
325
+ }
326
+ }
327
+ DEFAULT_X_Y_AUX_PARAMS.xAxis.labelTextFormat.toString = () => `num => {
328
+ if (num === null || Number.isNaN(num) == true) {
329
+ return num || 0
330
+ }
331
+ const absNum = Math.abs(num)
332
+ if (absNum > 0 && absNum < 1) {
333
+ const strNum = num.toString()
334
+ const match = strNum.match(/0\.(0*)([1-9])/)
335
+ if (match) {
336
+ const precision = match[1].length + 1
337
+ return num.toFixed(precision)
338
+ }
339
+ return num.toString()
340
+ }
341
+ const parts = num.toString().split('.')
342
+ parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
343
+ return parts[0]
344
+ }`
345
+ DEFAULT_X_Y_AUX_PARAMS.yAxis.labelTextFormat.toString = () => `num => {
346
+ if (num === null || Number.isNaN(num) == true) {
347
+ return num || 0
348
+ }
349
+ const absNum = Math.abs(num)
350
+ if (absNum > 0 && absNum < 1) {
351
+ const strNum = num.toString()
352
+ const match = strNum.match(/0\.(0*)([1-9])/)
353
+ if (match) {
354
+ const precision = match[1].length + 1
355
+ return num.toFixed(precision)
356
+ }
357
+ return num.toString()
358
+ }
359
+ const parts = num.toString().split('.')
360
+ parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
361
+ return parts[0]
362
+ }`
363
+
364
+
365
+ export const DEFAULT_X_Y_AXES_PARAMS: XYAxesParams = {
366
+ xAxis: {
367
+ labelOffset: [0, 0],
368
+ labelColorType: 'primary',
369
+ axisLineVisible: false,
370
+ axisLineColorType: 'primary',
371
+ ticks: null,
372
+ // tickFormat: ',.0f',
373
+ // tickFormat: v => v,
374
+ tickFormat: num => {
375
+ if (num === null || Number.isNaN(num) == true) {
376
+ return num || 0
377
+ }
378
+ const parts = num.toString().split('.')
379
+ parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
380
+ return parts.join('.')
381
+ },
382
+ tickLineVisible: true,
383
+ tickPadding: 20,
384
+ tickFullLine: true,
385
+ tickFullLineDasharray: 'none',
386
+ tickColorType: 'secondary',
387
+ tickTextColorType: 'primary'
388
+ },
389
+ yAxis: {
390
+ labelOffset: [0, 0],
391
+ labelColorType: 'primary',
392
+ axisLineVisible: false,
393
+ axisLineColorType: 'primary',
394
+ ticks: null,
395
+ // tickFormat: ',.0f',
396
+ // tickFormat: v => v,
397
+ tickFormat: num => {
398
+ if (num === null || Number.isNaN(num) == true) {
399
+ return num || 0
400
+ }
401
+ const parts = num.toString().split('.')
402
+ parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
403
+ return parts.join('.')
404
+ },
405
+ tickLineVisible: true,
406
+ tickPadding: 20,
407
+ tickFullLine: true,
408
+ tickFullLineDasharray: 'none',
409
+ tickColorType: 'secondary',
410
+ tickTextColorType: 'primary'
411
+ }
412
+ }
413
+ DEFAULT_X_Y_AXES_PARAMS.xAxis.tickFormat.toString = () => `num => {
414
+ if (num === null || Number.isNaN(num) == true) {
415
+ return num || 0
416
+ }
417
+ const parts = num.toString().split('.')
418
+ parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
419
+ return parts.join('.')
420
+ }`
421
+ DEFAULT_X_Y_AXES_PARAMS.yAxis.tickFormat.toString = () => `num => {
422
+ if (num === null || Number.isNaN(num) == true) {
423
+ return num || 0
424
+ }
425
+ const parts = num.toString().split('.')
426
+ parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
427
+ return parts.join('.')
428
+ }`
429
+
430
+ export const DEFAULT_X_ZOOM_PARAMS: XZoomParams = {
431
+
392
432
  }