@orbcharts/plugins-basic 3.0.0-beta.2 → 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.
- package/LICENSE +200 -200
- package/dist/orbcharts-plugins-basic.es.js +15169 -10684
- package/dist/orbcharts-plugins-basic.umd.js +296 -83
- package/dist/src/base/BaseBars.d.ts +4 -4
- package/dist/src/base/BaseBarsTriangle.d.ts +4 -4
- package/dist/src/base/BaseDots.d.ts +4 -4
- package/dist/src/base/BaseGroupAxis.d.ts +2 -2
- package/dist/src/base/BaseLegend.d.ts +1 -1
- package/dist/src/base/BaseLineAreas.d.ts +5 -5
- package/dist/src/base/BaseLines.d.ts +5 -5
- package/dist/src/base/BaseRacingBars.d.ts +23 -0
- package/dist/src/base/BaseRacingLabels.d.ts +20 -0
- package/dist/src/base/BaseRacingValueLabels.d.ts +20 -0
- package/dist/src/base/{BaseBarStack.d.ts → BaseStackedBars.d.ts} +8 -8
- package/dist/src/base/BaseValueAxis.d.ts +6 -8
- package/dist/src/base/BaseXAxis.d.ts +20 -0
- package/dist/src/base/BaseYAxis.d.ts +18 -0
- package/dist/src/grid/defaults.d.ts +5 -5
- package/dist/src/grid/gridObservables.d.ts +12 -5
- package/dist/src/grid/index.d.ts +3 -3
- package/dist/src/grid/plugins/GroupZoom.d.ts +1 -0
- package/dist/src/grid/plugins/StackedBars.d.ts +1 -0
- package/dist/src/grid/plugins/StackedValueAxis.d.ts +1 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/multiGrid/defaults.d.ts +4 -4
- package/dist/src/multiGrid/index.d.ts +3 -3
- package/dist/src/multiGrid/plugins/MultiStackedBars.d.ts +1 -0
- package/dist/src/multiGrid/plugins/MultiStackedValueAxis.d.ts +1 -0
- package/dist/src/multiGrid/plugins/OverlappingStackedValueAxes.d.ts +1 -0
- package/dist/src/multiValue/defaults.d.ts +13 -0
- package/dist/src/multiValue/index.d.ts +12 -0
- package/dist/src/multiValue/multiValueObservables.d.ts +56 -0
- package/dist/src/multiValue/plugins/MultiValueLegend.d.ts +1 -0
- package/dist/src/multiValue/plugins/MultiValueTooltip.d.ts +1 -0
- package/dist/src/multiValue/plugins/RacingBars.d.ts +1 -0
- package/dist/src/multiValue/plugins/RacingCounterTexts.d.ts +3 -0
- package/dist/src/multiValue/plugins/RacingValueAxis.d.ts +1 -0
- package/dist/src/multiValue/plugins/Scatter.d.ts +3 -0
- package/dist/src/multiValue/plugins/ScatterBubbles.d.ts +3 -0
- package/dist/src/multiValue/plugins/XAxis.d.ts +1 -0
- package/dist/src/multiValue/plugins/XYAux.d.ts +3 -0
- package/dist/src/multiValue/plugins/XYAxes.d.ts +1 -0
- package/dist/src/multiValue/plugins/XYAxes_legacy.d.ts +3 -0
- package/dist/src/multiValue/plugins/XZoom.d.ts +1 -0
- package/dist/src/noneData/plugins/Container.d.ts +0 -1
- package/dist/src/noneData/plugins/Tooltip.d.ts +0 -3
- package/dist/src/relationship/defaults.d.ts +6 -0
- package/dist/src/relationship/index.d.ts +5 -0
- package/dist/src/relationship/plugins/ForceDirected.d.ts +3 -0
- package/dist/src/relationship/plugins/ForceDirectedBubbles.d.ts +3 -0
- package/dist/src/relationship/plugins/RelationshipLegend.d.ts +1 -0
- package/dist/src/relationship/plugins/RelationshipTooltip.d.ts +1 -0
- package/dist/src/relationship/relationshipObservables.d.ts +1 -0
- package/dist/src/series/seriesObservables.d.ts +3 -3
- package/dist/src/utils/commonUtils.d.ts +2 -1
- package/dist/src/utils/d3Graphics.d.ts +2 -1
- package/dist/src/utils/d3Utils.d.ts +3 -2
- package/dist/src/utils/observables.d.ts +1 -1
- package/dist/src/utils/orbchartsUtils.d.ts +3 -3
- package/lib/core-types.ts +7 -7
- package/lib/core.ts +6 -6
- package/lib/plugins-basic-types.ts +6 -6
- package/package.json +44 -44
- package/src/base/BaseBars.ts +765 -765
- package/src/base/BaseBarsTriangle.ts +676 -674
- package/src/base/BaseDots.ts +464 -515
- package/src/base/BaseGroupAxis.ts +691 -679
- package/src/base/BaseLegend.ts +684 -680
- package/src/base/BaseLineAreas.ts +629 -629
- package/src/base/BaseLines.ts +706 -706
- package/src/base/BaseRacingBars.ts +552 -0
- package/src/base/BaseRacingLabels.ts +396 -0
- package/src/base/BaseRacingValueLabels.ts +403 -0
- package/src/base/{BaseBarStack.ts → BaseStackedBars.ts} +782 -780
- package/src/base/BaseTooltip.ts +386 -385
- package/src/base/BaseValueAxis.ts +600 -580
- package/src/base/BaseXAxis.ts +427 -0
- package/src/base/BaseYAxis.ts +389 -0
- package/src/base/types.ts +2 -2
- package/src/const.ts +30 -30
- package/src/grid/defaults.ts +213 -244
- package/src/grid/gridObservables.ts +612 -545
- package/src/grid/index.ts +16 -16
- package/src/grid/plugins/Bars.ts +69 -69
- package/src/grid/plugins/BarsPN.ts +66 -66
- package/src/grid/plugins/BarsTriangle.ts +73 -73
- package/src/grid/plugins/Dots.ts +68 -68
- package/src/grid/plugins/GridLegend.ts +107 -107
- package/src/grid/plugins/GridTooltip.ts +66 -66
- package/src/grid/plugins/GroupAux.ts +1120 -1098
- package/src/grid/plugins/GroupAxis.ts +73 -97
- package/src/grid/plugins/{GridZoom.ts → GroupZoom.ts} +218 -218
- package/src/grid/plugins/LineAreas.ts +65 -65
- package/src/grid/plugins/Lines.ts +59 -59
- package/src/grid/plugins/{BarStack.ts → StackedBars.ts} +64 -64
- package/src/grid/plugins/{ValueStackAxis.ts → StackedValueAxis.ts} +96 -95
- package/src/grid/plugins/ValueAxis.ts +94 -93
- package/src/index.ts +6 -9
- package/src/multiGrid/defaults.ts +244 -224
- package/src/multiGrid/index.ts +15 -15
- package/src/multiGrid/multiGridObservables.ts +50 -49
- package/src/multiGrid/plugins/MultiBars.ts +108 -108
- package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
- package/src/multiGrid/plugins/MultiDots.ts +102 -102
- package/src/multiGrid/plugins/MultiGridLegend.ts +169 -159
- package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -66
- package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
- package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
- package/src/multiGrid/plugins/MultiLines.ts +101 -101
- package/src/multiGrid/plugins/{MultiBarStack.ts → MultiStackedBars.ts} +106 -106
- package/src/multiGrid/plugins/{MultiValueStackAxis.ts → MultiStackedValueAxis.ts} +134 -133
- package/src/multiGrid/plugins/MultiValueAxis.ts +134 -133
- package/src/multiGrid/plugins/{OverlappingValueStackAxes.ts → OverlappingStackedValueAxes.ts} +300 -298
- package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -299
- package/src/multiValue/defaults.ts +432 -0
- package/src/multiValue/index.ts +13 -0
- package/src/multiValue/multiValueObservables.ts +667 -0
- package/src/multiValue/plugins/MultiValueLegend.ts +107 -0
- package/src/multiValue/plugins/MultiValueTooltip.ts +66 -0
- package/src/multiValue/plugins/RacingBars.ts +373 -0
- package/src/multiValue/plugins/RacingCounterTexts.ts +300 -0
- package/src/multiValue/plugins/RacingValueAxis.ts +115 -0
- package/src/multiValue/plugins/RankingAxis_legacy.ts +109 -0
- package/src/multiValue/plugins/Scatter.ts +426 -0
- package/src/multiValue/plugins/ScatterBubbles.ts +554 -0
- package/src/multiValue/plugins/XAxis.ts +108 -0
- package/src/multiValue/plugins/XYAux.ts +683 -0
- package/src/multiValue/plugins/XYAxes.ts +195 -0
- package/src/multiValue/plugins/XYAxes_legacy.ts +684 -0
- package/src/multiValue/plugins/XZoom.ts +300 -0
- package/src/noneData/defaults.ts +102 -102
- package/src/noneData/index.ts +3 -3
- package/src/noneData/plugins/Container.ts +28 -28
- package/src/noneData/plugins/Tooltip.ts +374 -374
- package/src/relationship/defaults.ts +222 -0
- package/src/relationship/index.ts +5 -0
- package/src/relationship/plugins/ForceDirected.ts +1174 -0
- package/src/relationship/plugins/ForceDirectedBubbles.ts +1412 -0
- package/src/relationship/plugins/RelationshipLegend.ts +100 -0
- package/src/relationship/plugins/RelationshipTooltip.ts +66 -0
- package/src/relationship/relationshipObservables.ts +50 -0
- package/src/series/defaults.ts +221 -206
- package/src/series/index.ts +9 -9
- package/src/series/plugins/Bubbles.ts +636 -603
- package/src/series/plugins/Pie.ts +623 -623
- package/src/series/plugins/PieEventTexts.ts +284 -283
- package/src/series/plugins/PieLabels.ts +640 -640
- package/src/series/plugins/Rose.ts +516 -516
- package/src/series/plugins/RoseLabels.ts +600 -600
- package/src/series/plugins/SeriesLegend.ts +107 -107
- package/src/series/plugins/SeriesTooltip.ts +66 -66
- package/src/series/seriesObservables.ts +145 -145
- package/src/series/seriesUtils.ts +51 -51
- package/src/tree/defaults.ts +102 -78
- package/src/tree/index.ts +4 -4
- package/src/tree/plugins/TreeLegend.ts +100 -107
- package/src/tree/plugins/TreeMap.ts +341 -333
- package/src/tree/plugins/TreeTooltip.ts +66 -66
- package/src/utils/commonUtils.ts +31 -22
- package/src/utils/d3Graphics.ts +176 -174
- package/src/utils/d3Utils.ts +92 -73
- package/src/utils/observables.ts +14 -14
- package/src/utils/orbchartsUtils.ts +130 -100
- package/tsconfig.base.json +13 -13
- package/tsconfig.json +2 -2
- package/vite.config.js +22 -22
- package/dist/src/grid/plugins/BarStack.d.ts +0 -1
- package/dist/src/grid/plugins/GridZoom.d.ts +0 -1
- package/dist/src/grid/plugins/ValueStackAxis.d.ts +0 -1
- package/dist/src/multiGrid/plugins/MultiBarStack.d.ts +0 -1
- package/dist/src/multiGrid/plugins/MultiValueStackAxis.d.ts +0 -1
- package/dist/src/multiGrid/plugins/OverlappingValueStackAxes.d.ts +0 -1
- package/src/grid/plugins/RankingAxis.ts +0 -0
- package/src/multiValue/plugins/ScatterAxes.ts +0 -0
- package/src/relationship/plugins/Relationship.ts +0 -0
- /package/dist/src/{base/BaseGroupArea.d.ts → multiValue/plugins/OrdinalBubbles.d.ts} +0 -0
- /package/dist/src/{grid/plugins/Ranking.d.ts → multiValue/plugins/OrdinalXAxis.d.ts} +0 -0
- /package/dist/src/{grid/plugins/RankingAxis.d.ts → multiValue/plugins/RacingCounterAxis.d.ts} +0 -0
- /package/dist/src/multiValue/plugins/{ScatterAxes.d.ts → RankingAxis_legacy.d.ts} +0 -0
- /package/{dist/src/relationship/plugins/Relationship.d.ts → src/multiValue/plugins/OrdinalBubbles.ts} +0 -0
- /package/src/{base/BaseGroupArea.ts → multiValue/plugins/OrdinalXAxis.ts} +0 -0
- /package/src/{grid/plugins/Ranking.ts → multiValue/plugins/RacingCounterAxis.ts} +0 -0
@@ -0,0 +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
|
+
// 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
|
+
|
432
|
+
}
|
package/src/multiValue/index.ts
CHANGED
@@ -0,0 +1,13 @@
|
|
1
|
+
export * from './defaults'
|
2
|
+
// export * from './types'
|
3
|
+
export { MultiValueLegend } from './plugins/MultiValueLegend'
|
4
|
+
export { MultiValueTooltip } from './plugins/MultiValueTooltip'
|
5
|
+
export { RacingBars } from './plugins/RacingBars'
|
6
|
+
export { RacingCounterTexts } from './plugins/RacingCounterTexts'
|
7
|
+
export { RacingValueAxis } from './plugins/RacingValueAxis'
|
8
|
+
export { Scatter } from './plugins/Scatter'
|
9
|
+
export { ScatterBubbles } from './plugins/ScatterBubbles'
|
10
|
+
export { XAxis } from './plugins/XAxis'
|
11
|
+
export { XYAux } from './plugins/XYAux'
|
12
|
+
export { XYAxes } from './plugins/XYAxes'
|
13
|
+
export { XZoom } from './plugins/XZoom'
|