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

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 (113) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-plugins-basic.es.js +2609 -2595
  3. package/dist/orbcharts-plugins-basic.umd.js +36 -34
  4. package/dist/src/grid/defaults.d.ts +2 -2
  5. package/dist/src/multiGrid/defaults.d.ts +1 -1
  6. package/dist/src/multiValue/defaults.d.ts +1 -1
  7. package/lib/core-types.ts +7 -7
  8. package/lib/core.ts +6 -6
  9. package/lib/plugins-basic-types.ts +6 -6
  10. package/package.json +44 -44
  11. package/src/base/BaseBars.ts +765 -765
  12. package/src/base/BaseBarsTriangle.ts +676 -676
  13. package/src/base/BaseDots.ts +464 -464
  14. package/src/base/BaseGroupAxis.ts +691 -691
  15. package/src/base/BaseLegend.ts +684 -684
  16. package/src/base/BaseLineAreas.ts +629 -629
  17. package/src/base/BaseLines.ts +706 -706
  18. package/src/base/BaseRacingBars.ts +551 -551
  19. package/src/base/BaseRacingLabels.ts +396 -396
  20. package/src/base/BaseRacingValueLabels.ts +403 -403
  21. package/src/base/BaseStackedBars.ts +782 -782
  22. package/src/base/BaseTooltip.ts +386 -386
  23. package/src/base/BaseValueAxis.ts +600 -600
  24. package/src/base/BaseXAxis.ts +427 -427
  25. package/src/base/BaseYAxis.ts +389 -389
  26. package/src/base/types.ts +2 -2
  27. package/src/const.ts +30 -30
  28. package/src/grid/defaults.ts +213 -213
  29. package/src/grid/gridObservables.ts +612 -612
  30. package/src/grid/index.ts +16 -16
  31. package/src/grid/plugins/Bars.ts +69 -69
  32. package/src/grid/plugins/BarsPN.ts +66 -66
  33. package/src/grid/plugins/BarsTriangle.ts +73 -73
  34. package/src/grid/plugins/Dots.ts +68 -68
  35. package/src/grid/plugins/GridLegend.ts +107 -107
  36. package/src/grid/plugins/GridTooltip.ts +66 -66
  37. package/src/grid/plugins/GroupAux.ts +1120 -1120
  38. package/src/grid/plugins/GroupAxis.ts +73 -73
  39. package/src/grid/plugins/GroupZoom.ts +218 -218
  40. package/src/grid/plugins/LineAreas.ts +65 -65
  41. package/src/grid/plugins/Lines.ts +59 -59
  42. package/src/grid/plugins/StackedBars.ts +64 -64
  43. package/src/grid/plugins/StackedValueAxis.ts +96 -96
  44. package/src/grid/plugins/ValueAxis.ts +94 -94
  45. package/src/index.ts +6 -6
  46. package/src/multiGrid/defaults.ts +244 -244
  47. package/src/multiGrid/index.ts +14 -14
  48. package/src/multiGrid/multiGridObservables.ts +50 -50
  49. package/src/multiGrid/plugins/MultiBars.ts +108 -108
  50. package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
  51. package/src/multiGrid/plugins/MultiDots.ts +102 -102
  52. package/src/multiGrid/plugins/MultiGridLegend.ts +169 -169
  53. package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -66
  54. package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
  55. package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
  56. package/src/multiGrid/plugins/MultiLines.ts +101 -101
  57. package/src/multiGrid/plugins/MultiStackedBars.ts +106 -106
  58. package/src/multiGrid/plugins/MultiStackedValueAxis.ts +134 -134
  59. package/src/multiGrid/plugins/MultiValueAxis.ts +134 -134
  60. package/src/multiGrid/plugins/OverlappingStackedValueAxes.ts +300 -300
  61. package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -300
  62. package/src/multiValue/defaults.ts +391 -388
  63. package/src/multiValue/index.ts +12 -12
  64. package/src/multiValue/multiValueObservables.ts +666 -666
  65. package/src/multiValue/plugins/MultiValueLegend.ts +107 -107
  66. package/src/multiValue/plugins/MultiValueTooltip.ts +66 -66
  67. package/src/multiValue/plugins/RacingBars.ts +373 -373
  68. package/src/multiValue/plugins/RacingCounterTexts.ts +300 -300
  69. package/src/multiValue/plugins/RacingValueAxis.ts +114 -114
  70. package/src/multiValue/plugins/RankingAxis_legacy.ts +109 -109
  71. package/src/multiValue/plugins/Scatter.ts +426 -426
  72. package/src/multiValue/plugins/ScatterBubbles.ts +554 -554
  73. package/src/multiValue/plugins/XAxis.ts +107 -107
  74. package/src/multiValue/plugins/XYAux.ts +682 -682
  75. package/src/multiValue/plugins/XYAxes.ts +194 -194
  76. package/src/multiValue/plugins/XYAxes_legacy.ts +683 -683
  77. package/src/multiValue/plugins/XZoom.ts +299 -299
  78. package/src/noneData/defaults.ts +102 -102
  79. package/src/noneData/index.ts +3 -3
  80. package/src/noneData/plugins/Container.ts +27 -27
  81. package/src/noneData/plugins/Tooltip.ts +373 -373
  82. package/src/relationship/defaults.ts +221 -220
  83. package/src/relationship/index.ts +5 -5
  84. package/src/relationship/plugins/ForceDirected.ts +1173 -1168
  85. package/src/relationship/plugins/ForceDirectedBubbles.ts +1411 -1403
  86. package/src/relationship/plugins/RelationshipLegend.ts +100 -100
  87. package/src/relationship/plugins/RelationshipTooltip.ts +66 -66
  88. package/src/relationship/relationshipObservables.ts +49 -49
  89. package/src/series/defaults.ts +221 -221
  90. package/src/series/index.ts +9 -9
  91. package/src/series/plugins/Bubbles.ts +636 -636
  92. package/src/series/plugins/Pie.ts +623 -623
  93. package/src/series/plugins/PieEventTexts.ts +284 -284
  94. package/src/series/plugins/PieLabels.ts +640 -640
  95. package/src/series/plugins/Rose.ts +516 -516
  96. package/src/series/plugins/RoseLabels.ts +600 -600
  97. package/src/series/plugins/SeriesLegend.ts +107 -107
  98. package/src/series/plugins/SeriesTooltip.ts +66 -66
  99. package/src/series/seriesObservables.ts +145 -145
  100. package/src/series/seriesUtils.ts +51 -51
  101. package/src/tree/defaults.ts +102 -102
  102. package/src/tree/index.ts +4 -4
  103. package/src/tree/plugins/TreeLegend.ts +100 -100
  104. package/src/tree/plugins/TreeMap.ts +341 -341
  105. package/src/tree/plugins/TreeTooltip.ts +66 -66
  106. package/src/utils/commonUtils.ts +31 -31
  107. package/src/utils/d3Graphics.ts +176 -176
  108. package/src/utils/d3Utils.ts +92 -92
  109. package/src/utils/observables.ts +14 -14
  110. package/src/utils/orbchartsUtils.ts +129 -129
  111. package/tsconfig.base.json +13 -13
  112. package/tsconfig.json +2 -2
  113. package/vite.config.js +22 -22
@@ -1,389 +1,392 @@
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
-
181
- export const DEFAULT_RACING_VALUE_AXIS_PARAMS: RacingValueAxisParams = {
182
- labelOffset: [0, 0],
183
- labelColorType: 'primary',
184
- axisLineVisible: false,
185
- axisLineColorType: 'secondary',
186
- ticks: null,
187
- // tickFormat: ',.0f',
188
- // tickFormat: v => v,
189
- tickFormat: num => {
190
- if (num === null || Number.isNaN(num) == true) {
191
- return num || 0
192
- }
193
- var parts = num.toString().split('.')
194
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
195
- return parts.join('.')
196
- },
197
- tickLineVisible: true,
198
- tickPadding: 20,
199
- tickFullLine: true,
200
- tickFullLineDasharray: 'none',
201
- tickColorType: 'secondary',
202
- tickTextColorType: 'primary'
203
- }
204
- DEFAULT_RACING_VALUE_AXIS_PARAMS.tickFormat.toString = () => `num => {
205
- if (num === null || Number.isNaN(num) == true) {
206
- return num || 0
207
- }
208
- var parts = num.toString().split('.')
209
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
210
- return parts.join('.')
211
- }`
212
-
213
- export const DEFAULT_SCATTER_PARAMS: ScatterParams = {
214
- radius: 5,
215
- fillColorType: 'label',
216
- strokeColorType: 'label',
217
- strokeWidth: 0,
218
- }
219
-
220
- export const DEFAULT_SCATTER_BUBBLES_PARAMS: ScatterBubblesParams = {
221
- // radius: 5,
222
- fillColorType: 'label',
223
- strokeColorType: 'label',
224
- strokeWidth: 0,
225
- valueLinearOpacity: [0.8, 0.8],
226
- arcScaleType: 'area',
227
- sizeAdjust: 0.5
228
- }
229
-
230
- export const DEFAULT_X_AXIS_PARAMS: XAxisParams = {
231
- labelOffset: [0, 0],
232
- labelColorType: 'primary',
233
- axisLineVisible: false,
234
- axisLineColorType: 'secondary',
235
- ticks: null,
236
- // tickFormat: ',.0f',
237
- // tickFormat: v => v,
238
- tickFormat: num => {
239
- if (num === null || Number.isNaN(num) == true) {
240
- return num || 0
241
- }
242
- var parts = num.toString().split('.')
243
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
244
- return parts.join('.')
245
- },
246
- tickLineVisible: true,
247
- tickPadding: 20,
248
- tickFullLine: true,
249
- tickFullLineDasharray: 'none',
250
- tickColorType: 'secondary',
251
- tickTextColorType: 'primary'
252
- }
253
- DEFAULT_X_AXIS_PARAMS.tickFormat.toString = () => `num => {
254
- if (num === null || Number.isNaN(num) == true) {
255
- return num || 0
256
- }
257
- var parts = num.toString().split('.')
258
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
259
- return parts.join('.')
260
- }`
261
-
262
- export const DEFAULT_X_Y_AUX_PARAMS: XYAuxParams = {
263
- xAxis: {
264
- showLine: true,
265
- showLabel: true,
266
- lineDashArray: '3, 3',
267
- lineColorType: 'primary',
268
- labelColorType: 'primary',
269
- labelTextColorType: 'background',
270
- // labelTextFormat: text => text,
271
- // labelTextFormat: (value: number) => String(Math.round(value)),
272
- labelTextFormat: num => {
273
- if (num === null || Number.isNaN(num) == true) {
274
- return num || 0
275
- }
276
- var parts = num.toString().split('.')
277
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
278
- return parts.join('.')
279
- },
280
- labelPadding: 20,
281
- // labelRotate: 0
282
- },
283
- yAxis: {
284
- showLine: true,
285
- showLabel: true,
286
- lineDashArray: '3, 3',
287
- lineColorType: 'primary',
288
- labelColorType: 'primary',
289
- labelTextColorType: 'background',
290
- // labelTextFormat: text => text,
291
- // labelTextFormat: (value: number) => String(Math.round(value)),
292
- labelTextFormat: num => {
293
- if (num === null || Number.isNaN(num) == true) {
294
- return num || 0
295
- }
296
- var parts = num.toString().split('.')
297
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
298
- return parts.join('.')
299
- },
300
- labelPadding: 20,
301
- // labelRotate: 0
302
- }
303
- }
304
- DEFAULT_X_Y_AUX_PARAMS.xAxis.labelTextFormat.toString = () => `num => {
305
- if (num === null || Number.isNaN(num) == true) {
306
- return num || 0
307
- }
308
- var parts = num.toString().split('.')
309
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
310
- return parts.join('.')
311
- }`
312
- DEFAULT_X_Y_AUX_PARAMS.yAxis.labelTextFormat.toString = () => `num => {
313
- if (num === null || Number.isNaN(num) == true) {
314
- return num || 0
315
- }
316
- var parts = num.toString().split('.')
317
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
318
- return parts.join('.')
319
- }`
320
-
321
-
322
- export const DEFAULT_X_Y_AXES_PARAMS: XYAxesParams = {
323
- xAxis: {
324
- labelOffset: [0, 0],
325
- labelColorType: 'primary',
326
- axisLineVisible: false,
327
- axisLineColorType: 'primary',
328
- ticks: null,
329
- // tickFormat: ',.0f',
330
- // tickFormat: v => v,
331
- tickFormat: num => {
332
- if (num === null || Number.isNaN(num) == true) {
333
- return num || 0
334
- }
335
- var parts = num.toString().split('.')
336
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
337
- return parts.join('.')
338
- },
339
- tickLineVisible: true,
340
- tickPadding: 20,
341
- tickFullLine: true,
342
- tickFullLineDasharray: 'none',
343
- tickColorType: 'secondary',
344
- tickTextColorType: 'primary'
345
- },
346
- yAxis: {
347
- labelOffset: [0, 0],
348
- labelColorType: 'primary',
349
- axisLineVisible: false,
350
- axisLineColorType: 'primary',
351
- ticks: null,
352
- // tickFormat: ',.0f',
353
- // tickFormat: v => v,
354
- tickFormat: num => {
355
- if (num === null || Number.isNaN(num) == true) {
356
- return num || 0
357
- }
358
- var parts = num.toString().split('.')
359
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
360
- return parts.join('.')
361
- },
362
- tickLineVisible: true,
363
- tickPadding: 20,
364
- tickFullLine: true,
365
- tickFullLineDasharray: 'none',
366
- tickColorType: 'secondary',
367
- tickTextColorType: 'primary'
368
- }
369
- }
370
- DEFAULT_X_Y_AXES_PARAMS.xAxis.tickFormat.toString = () => `num => {
371
- if (num === null || Number.isNaN(num) == true) {
372
- return num || 0
373
- }
374
- var parts = num.toString().split('.')
375
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
376
- return parts.join('.')
377
- }`
378
- DEFAULT_X_Y_AXES_PARAMS.yAxis.tickFormat.toString = () => `num => {
379
- if (num === null || Number.isNaN(num) == true) {
380
- return num || 0
381
- }
382
- var parts = num.toString().split('.')
383
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
384
- return parts.join('.')
385
- }`
386
-
387
- export const DEFAULT_X_Y_ZOOM_PARAMS: XZoomParams = {
388
-
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
+
389
392
  }