@orbcharts/presets-basic 3.0.2 → 3.0.3
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-presets-basic.es.js +515 -219
- package/dist/orbcharts-presets-basic.umd.js +1 -1
- package/dist/src/series/PRESET_BUBBLES_SEPARATE_ALL.d.ts +4 -0
- package/dist/src/series/PRESET_BUBBLES_SEPARATE_LABEL.d.ts +4 -0
- package/dist/src/series/PRESET_PIE_SEPARATE_LABEL.d.ts +4 -0
- package/dist/src/series/PRESET_ROSE_SEPARATE_ALL.d.ts +4 -0
- package/dist/src/series/PRESET_ROSE_SEPARATE_LABEL.d.ts +4 -0
- package/dist/src/series/index.d.ts +5 -0
- package/dist/src/types.d.ts +1 -1
- package/lib/core-types.ts +7 -7
- package/lib/plugins-basic-types.ts +6 -6
- package/package.json +46 -46
- package/src/grid/PRESET_BARS_HORIZONTAL_AND_ROUND.ts +74 -74
- package/src/grid/PRESET_BARS_HORIZONTAL_AND_THIN.ts +73 -73
- package/src/grid/PRESET_BARS_ROUND.ts +68 -68
- package/src/grid/PRESET_BARS_THIN.ts +65 -65
- package/src/grid/PRESET_GRID_BASIC.ts +53 -53
- package/src/grid/PRESET_GRID_HORIZONTAL.ts +62 -62
- package/src/grid/PRESET_GRID_PN_SCALE.ts +59 -59
- package/src/grid/PRESET_GRID_PN_SCALE_SIMPLE.ts +59 -59
- package/src/grid/PRESET_GRID_ROTATE_AXIS_LABEL.ts +61 -61
- package/src/grid/PRESET_GRID_SEPARATE_SERIES.ts +67 -67
- package/src/grid/PRESET_GRID_SIMPLE.ts +58 -58
- package/src/grid/PRESET_LINES_BASIC.ts +62 -62
- package/src/grid/PRESET_LINES_CURVE.ts +65 -65
- package/src/grid/PRESET_LINES_HIGHLIGHT_GROUP_DOTS.ts +64 -64
- package/src/grid/PRESET_LINES_HORIZONTAL.ts +70 -70
- package/src/grid/PRESET_LINES_LOOSE_TICKS.ts +64 -64
- package/src/grid/PRESET_LINES_ROTATE_AXIS_LABEL.ts +67 -67
- package/src/grid/PRESET_LINES_SIMPLE.ts +67 -67
- package/src/grid/PRESET_LINES_WITH_SOLID_DOTS.ts +66 -66
- package/src/grid/PRESET_LINE_AREAS_BASIC.ts +68 -68
- package/src/grid/PRESET_LINE_AREAS_CURVE.ts +73 -73
- package/src/grid/PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS.ts +72 -72
- package/src/grid/PRESET_LINE_AREAS_HORIZONTAL.ts +72 -72
- package/src/grid/PRESET_LINE_AREAS_LOOSE_TICKS.ts +70 -70
- package/src/grid/PRESET_LINE_AREAS_ROTATE_AXIS_LABEL.ts +73 -73
- package/src/grid/PRESET_LINE_AREAS_SEPARATE_SERIES.ts +78 -78
- package/src/grid/PRESET_LINE_AREAS_SIMPLE.ts +71 -71
- package/src/grid/index.ts +26 -26
- package/src/index.ts +6 -6
- package/src/multiGrid/PRESET_MULTI_GRID_BASIC.ts +64 -64
- package/src/multiGrid/PRESET_MULTI_GRID_DIVERGING.ts +112 -112
- package/src/multiGrid/PRESET_MULTI_GRID_DIVERGING_SIMPLE.ts +115 -115
- package/src/multiGrid/PRESET_MULTI_GRID_ROUND_STYLE.ts +85 -85
- package/src/multiGrid/PRESET_MULTI_GRID_ROUND_STYLE_SIMPLE.ts +99 -95
- package/src/multiGrid/PRESET_MULTI_GRID_SEPARATE_GRID.ts +91 -91
- package/src/multiGrid/PRESET_MULTI_GRID_SEPARATE_GRID_SIMPLE.ts +99 -99
- package/src/multiGrid/PRESET_MULTI_GRID_SIMPLE.ts +74 -74
- package/src/multiGrid/PRESET_MULTI_LINES_SEPARATE_GRID.ts +119 -119
- package/src/multiGrid/PRESET_MULTI_LINES_SEPARATE_GRID_SIMPLE.ts +125 -125
- package/src/multiGrid/PRESET_MULTI_LINE_AREAS_SEPARATE_GRID.ts +133 -133
- package/src/multiGrid/PRESET_MULTI_LINE_AREAS_SEPARATE_GRID_SIMPLE.ts +128 -128
- package/src/multiGrid/index.ts +12 -12
- package/src/multiValue/PRESET_MULTI_VALUE_BASIC.ts +53 -53
- package/src/multiValue/PRESET_MULTI_VALUE_SEPARATE_CATEGORY.ts +68 -68
- package/src/multiValue/PRESET_MULTI_VALUE_SIMPLE.ts +53 -53
- package/src/multiValue/PRESET_ORDINAL_BUBBLES_ALL_ITEMS.ts +57 -57
- package/src/multiValue/PRESET_ORDINAL_BUBBLES_BASIC.ts +56 -56
- package/src/multiValue/PRESET_ORDINAL_BUBBLES_LINEAR_OPACITY.ts +59 -59
- package/src/multiValue/PRESET_ORDINAL_BUBBLES_SCALING_BY_RADIUS.ts +59 -59
- package/src/multiValue/PRESET_ORDINAL_BUBBLES_SEPARATE_CATEGORY.ts +66 -66
- package/src/multiValue/PRESET_ORDINAL_BUBBLES_SIMPLE.ts +59 -59
- package/src/multiValue/PRESET_RACING_BARS_ALL_ITEMS.ts +58 -58
- package/src/multiValue/PRESET_RACING_BARS_BASIC.ts +57 -57
- package/src/multiValue/PRESET_RACING_BARS_FAST.ts +57 -57
- package/src/multiValue/PRESET_RACING_BARS_FASTER.ts +57 -57
- package/src/multiValue/PRESET_RACING_BARS_LOOP.ts +58 -58
- package/src/multiValue/PRESET_RACING_BARS_OUTSIDE_LABELS.ts +61 -61
- package/src/multiValue/PRESET_RACING_BARS_SEPARATE_CATEGORY.ts +74 -74
- package/src/multiValue/PRESET_RACING_BARS_SIMPLE.ts +57 -57
- package/src/multiValue/PRESET_RACING_BARS_STOP.ts +56 -56
- package/src/multiValue/PRESET_SCATTER_BASIC.ts +54 -54
- package/src/multiValue/PRESET_SCATTER_BUBBLES_BASIC.ts +54 -54
- package/src/multiValue/PRESET_SCATTER_BUBBLES_LINEAR_OPACITY.ts +57 -57
- package/src/multiValue/PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS.ts +57 -57
- package/src/multiValue/PRESET_SCATTER_BUBBLES_SEPARATE_CATEGORY.ts +61 -61
- package/src/multiValue/PRESET_SCATTER_BUBBLES_SIMPLE.ts +54 -54
- package/src/multiValue/PRESET_SCATTER_SEPARATE_CATEGORY.ts +69 -69
- package/src/multiValue/PRESET_SCATTER_SIMPLE.ts +54 -54
- package/src/multiValue/index.ts +26 -26
- package/src/relationship/PRESET_FORCE_DIRECTED_BASIC.ts +47 -47
- package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_BASIC.ts +47 -47
- package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH.ts +52 -52
- package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW.ts +52 -52
- package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM.ts +49 -49
- package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_SIMPLE.ts +48 -48
- package/src/relationship/PRESET_FORCE_DIRECTED_FIX_FONT_SIZE.ts +54 -54
- package/src/relationship/PRESET_FORCE_DIRECTED_NONE_ARROW.ts +52 -52
- package/src/relationship/PRESET_FORCE_DIRECTED_NONE_ZOOM.ts +49 -49
- package/src/relationship/PRESET_FORCE_DIRECTED_SIMPLE.ts +48 -48
- package/src/relationship/index.ts +9 -9
- package/src/series/PRESET_BUBBLES_BASIC.ts +46 -46
- package/src/series/PRESET_BUBBLES_SCALING_BY_RADIUS.ts +49 -49
- package/src/series/PRESET_BUBBLES_SEPARATE_ALL.ts +69 -0
- package/src/series/PRESET_BUBBLES_SEPARATE_LABEL.ts +66 -0
- package/src/series/PRESET_BUBBLES_SEPARATE_SERIES.ts +66 -58
- package/src/series/PRESET_BUBBLES_SIMPLE.ts +53 -53
- package/src/series/PRESET_BUBBLES_SUM_SERIES.ts +48 -48
- package/src/series/PRESET_PIE_BASIC.ts +49 -49
- package/src/series/PRESET_PIE_DONUT.ts +54 -54
- package/src/series/PRESET_PIE_HALF_DONUT.ts +66 -66
- package/src/series/PRESET_PIE_SEPARATE_LABEL.ts +52 -0
- package/src/series/PRESET_PIE_SEPARATE_SERIES.ts +47 -47
- package/src/series/PRESET_PIE_SIMPLE.ts +56 -56
- package/src/series/PRESET_PIE_SUM_SERIES.ts +48 -48
- package/src/series/PRESET_PIE_WITH_INNER_LABELS.ts +55 -55
- package/src/series/PRESET_ROSE_BASIC.ts +55 -55
- package/src/series/PRESET_ROSE_SCALING_BY_RADIUS.ts +61 -61
- package/src/series/PRESET_ROSE_SEPARATE_ALL.ts +55 -0
- package/src/series/PRESET_ROSE_SEPARATE_LABEL.ts +58 -0
- package/src/series/PRESET_ROSE_SEPARATE_SERIES.ts +53 -53
- package/src/series/PRESET_ROSE_SEPARATE_SERIES_AND_SUM_SERIES.ts +54 -54
- package/src/series/PRESET_ROSE_SIMPLE.ts +56 -56
- package/src/series/PRESET_ROSE_SUM_SERIES.ts +54 -54
- package/src/series/PRESET_SERIES_BASIC.ts +46 -46
- package/src/series/PRESET_SERIES_SEPARATE_SERIES.ts +47 -47
- package/src/series/PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES.ts +48 -48
- package/src/series/PRESET_SERIES_SUM_SERIES.ts +49 -49
- package/src/series/index.ts +28 -23
- package/src/tree/PRESET_TREE_MAP_BASIC.ts +54 -54
- package/src/tree/PRESET_TREE_MAP_SIMPLE.ts +54 -54
- package/src/tree/index.ts +1 -1
- package/src/types.ts +392 -392
- package/tsconfig.base.json +13 -13
- package/tsconfig.json +2 -2
- package/vite.config.js +22 -22
@@ -1,4 +1,4 @@
|
|
1
|
-
const
|
1
|
+
const _ = {
|
2
2
|
name: "PRESET_BUBBLES_BASIC",
|
3
3
|
description: "Basic bubble chart",
|
4
4
|
descriptionZh: "基本泡泡圖",
|
@@ -40,7 +40,7 @@ const R = {
|
|
40
40
|
// 圓型圖例列點
|
41
41
|
}
|
42
42
|
}
|
43
|
-
},
|
43
|
+
}, m = {
|
44
44
|
name: "PRESET_BUBBLES_SCALING_BY_RADIUS",
|
45
45
|
description: "Bubble chart scaled by radius size",
|
46
46
|
descriptionZh: "以半徑尺寸為比例的泡泡圖",
|
@@ -85,7 +85,7 @@ const R = {
|
|
85
85
|
// 圓型圖例列點
|
86
86
|
}
|
87
87
|
}
|
88
|
-
},
|
88
|
+
}, b = {
|
89
89
|
name: "PRESET_BUBBLES_SEPARATE_SERIES",
|
90
90
|
description: "Bubble chart showing series separately",
|
91
91
|
descriptionZh: "分開顯示Series的泡泡圖",
|
@@ -122,24 +122,159 @@ const R = {
|
|
122
122
|
},
|
123
123
|
// 加長留空
|
124
124
|
padding: {
|
125
|
-
top:
|
125
|
+
top: 100,
|
126
|
+
right: 140,
|
127
|
+
bottom: 100,
|
128
|
+
left: 140
|
129
|
+
}
|
130
|
+
},
|
131
|
+
dataFormatter: {
|
132
|
+
separateSeries: !0,
|
133
|
+
container: {
|
134
|
+
columnGap: 0,
|
135
|
+
rowGap: 0
|
136
|
+
}
|
137
|
+
},
|
138
|
+
pluginParams: {
|
139
|
+
Bubbles: {
|
140
|
+
force: {
|
141
|
+
strength: 0.1
|
142
|
+
}
|
143
|
+
},
|
144
|
+
SeriesLegend: {
|
145
|
+
listRectRadius: 7
|
146
|
+
// 圓型圖例列點
|
147
|
+
},
|
148
|
+
SeriesTooltip: {}
|
149
|
+
}
|
150
|
+
}, h = {
|
151
|
+
name: "PRESET_BUBBLES_SEPARATE_LABEL",
|
152
|
+
description: "Bubble chart showing label separately",
|
153
|
+
descriptionZh: "分開顯示Label的泡泡圖",
|
154
|
+
chartParams: {
|
155
|
+
colors: {
|
156
|
+
light: {
|
157
|
+
label: [
|
158
|
+
"#0088FF",
|
159
|
+
"#FF3232",
|
160
|
+
"#38BEA8",
|
161
|
+
"#6F3BD5",
|
162
|
+
"#314285",
|
163
|
+
"#42C724",
|
164
|
+
"#D52580",
|
165
|
+
"#F4721B",
|
166
|
+
"#D117EA",
|
167
|
+
"#7E7D7D"
|
168
|
+
]
|
169
|
+
},
|
170
|
+
dark: {
|
171
|
+
label: [
|
172
|
+
"#4BABFF",
|
173
|
+
"#FF6C6C",
|
174
|
+
"#7DD3C4",
|
175
|
+
"#8E6BC9",
|
176
|
+
"#5366AC",
|
177
|
+
"#86DC72",
|
178
|
+
"#FF72BB",
|
179
|
+
"#F9B052",
|
180
|
+
"#EF76FF",
|
181
|
+
"#C4C4C4"
|
182
|
+
]
|
183
|
+
}
|
184
|
+
},
|
185
|
+
// 加長留空
|
186
|
+
padding: {
|
187
|
+
top: 100,
|
188
|
+
right: 140,
|
189
|
+
bottom: 100,
|
190
|
+
left: 140
|
191
|
+
}
|
192
|
+
},
|
193
|
+
dataFormatter: {
|
194
|
+
separateLabel: !0,
|
195
|
+
container: {
|
196
|
+
columnGap: 0,
|
197
|
+
rowGap: 0
|
198
|
+
}
|
199
|
+
},
|
200
|
+
pluginParams: {
|
201
|
+
Bubbles: {
|
202
|
+
force: {
|
203
|
+
strength: 0.1
|
204
|
+
}
|
205
|
+
},
|
206
|
+
SeriesLegend: {
|
207
|
+
listRectRadius: 7
|
208
|
+
// 圓型圖例列點
|
209
|
+
},
|
210
|
+
SeriesTooltip: {}
|
211
|
+
}
|
212
|
+
}, P = {
|
213
|
+
name: "PRESET_BUBBLES_SEPARATE_ALL",
|
214
|
+
description: "Bubble chart showing all data separately",
|
215
|
+
descriptionZh: "全部資料分開顯示的泡泡圖",
|
216
|
+
chartParams: {
|
217
|
+
colors: {
|
218
|
+
light: {
|
219
|
+
label: [
|
220
|
+
"#0088FF",
|
221
|
+
"#FF3232",
|
222
|
+
"#38BEA8",
|
223
|
+
"#6F3BD5",
|
224
|
+
"#314285",
|
225
|
+
"#42C724",
|
226
|
+
"#D52580",
|
227
|
+
"#F4721B",
|
228
|
+
"#D117EA",
|
229
|
+
"#7E7D7D"
|
230
|
+
]
|
231
|
+
},
|
232
|
+
dark: {
|
233
|
+
label: [
|
234
|
+
"#4BABFF",
|
235
|
+
"#FF6C6C",
|
236
|
+
"#7DD3C4",
|
237
|
+
"#8E6BC9",
|
238
|
+
"#5366AC",
|
239
|
+
"#86DC72",
|
240
|
+
"#FF72BB",
|
241
|
+
"#F9B052",
|
242
|
+
"#EF76FF",
|
243
|
+
"#C4C4C4"
|
244
|
+
]
|
245
|
+
}
|
246
|
+
},
|
247
|
+
// 加長留空
|
248
|
+
padding: {
|
249
|
+
top: 100,
|
126
250
|
right: 160,
|
127
|
-
bottom:
|
251
|
+
bottom: 100,
|
128
252
|
left: 160
|
129
253
|
}
|
130
254
|
},
|
131
255
|
dataFormatter: {
|
132
|
-
separateSeries: !0
|
256
|
+
separateSeries: !0,
|
257
|
+
separateLabel: !0,
|
258
|
+
sort: (t, a) => a.value - t.value,
|
259
|
+
container: {
|
260
|
+
columnGap: 0,
|
261
|
+
rowGap: 0
|
262
|
+
}
|
133
263
|
},
|
134
264
|
pluginParams: {
|
135
|
-
Bubbles: {
|
265
|
+
Bubbles: {
|
266
|
+
force: {
|
267
|
+
strength: 0.12
|
268
|
+
}
|
269
|
+
},
|
136
270
|
SeriesLegend: {
|
137
|
-
listRectRadius: 7
|
271
|
+
listRectRadius: 7,
|
138
272
|
// 圓型圖例列點
|
273
|
+
padding: 7
|
139
274
|
},
|
140
275
|
SeriesTooltip: {}
|
141
276
|
}
|
142
|
-
},
|
277
|
+
}, T = {
|
143
278
|
name: "PRESET_BUBBLES_SIMPLE",
|
144
279
|
description: "Simple bubble chart",
|
145
280
|
descriptionZh: "簡單泡泡圖",
|
@@ -188,7 +323,7 @@ const R = {
|
|
188
323
|
padding: 7
|
189
324
|
}
|
190
325
|
}
|
191
|
-
},
|
326
|
+
}, F = {
|
192
327
|
name: "PRESET_BUBBLES_SUM_SERIES",
|
193
328
|
description: "Bubble chart of combined Series data",
|
194
329
|
descriptionZh: "合併Series資料的泡泡圖",
|
@@ -230,8 +365,8 @@ const R = {
|
|
230
365
|
},
|
231
366
|
pluginParams: {}
|
232
367
|
};
|
233
|
-
|
234
|
-
const
|
368
|
+
F.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
369
|
+
const r = {
|
235
370
|
name: "PRESET_PIE_BASIC",
|
236
371
|
description: "Basic pie chart",
|
237
372
|
descriptionZh: "基本圓餅圖",
|
@@ -277,8 +412,8 @@ const i = {
|
|
277
412
|
}
|
278
413
|
}
|
279
414
|
};
|
280
|
-
|
281
|
-
const
|
415
|
+
r.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
416
|
+
const l = {
|
282
417
|
name: "PRESET_PIE_DONUT",
|
283
418
|
description: "Donut chart",
|
284
419
|
descriptionZh: "甜甜圈圖",
|
@@ -329,8 +464,8 @@ const F = {
|
|
329
464
|
}
|
330
465
|
}
|
331
466
|
};
|
332
|
-
|
333
|
-
const
|
467
|
+
l.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
468
|
+
const s = {
|
334
469
|
name: "PRESET_PIE_HALF_DONUT",
|
335
470
|
description: "Half donut chart",
|
336
471
|
descriptionZh: "半圓甜甜圈圖",
|
@@ -393,8 +528,8 @@ const r = {
|
|
393
528
|
}
|
394
529
|
}
|
395
530
|
};
|
396
|
-
|
397
|
-
const
|
531
|
+
s.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
532
|
+
const o = {
|
398
533
|
name: "PRESET_PIE_WITH_INNER_LABELS",
|
399
534
|
description: "Pie chart with inner data labels",
|
400
535
|
descriptionZh: "圓餅圖及內部資料標籤",
|
@@ -447,8 +582,8 @@ const l = {
|
|
447
582
|
}
|
448
583
|
}
|
449
584
|
};
|
450
|
-
|
451
|
-
const
|
585
|
+
o.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
586
|
+
const n = {
|
452
587
|
name: "PRESET_PIE_SEPARATE_SERIES",
|
453
588
|
description: "Separate pie chart of Series",
|
454
589
|
descriptionZh: "分開顯示Series的圓餅圖",
|
@@ -490,8 +625,56 @@ const s = {
|
|
490
625
|
},
|
491
626
|
pluginParams: {}
|
492
627
|
};
|
493
|
-
|
494
|
-
const
|
628
|
+
n.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
629
|
+
const e = {
|
630
|
+
name: "PRESET_PIE_SEPARATE_LABEL",
|
631
|
+
description: "Separate pie chart of Label",
|
632
|
+
descriptionZh: "分開顯示Label的圓餅圖",
|
633
|
+
chartParams: {
|
634
|
+
colors: {
|
635
|
+
light: {
|
636
|
+
label: [
|
637
|
+
"#0088FF",
|
638
|
+
"#4BABFF",
|
639
|
+
"#38BEA8",
|
640
|
+
"#86DC72",
|
641
|
+
"#F9B052",
|
642
|
+
"#F4721B",
|
643
|
+
"#FF3232",
|
644
|
+
"#5F2714",
|
645
|
+
"#D117EA",
|
646
|
+
"7E7D7D"
|
647
|
+
]
|
648
|
+
},
|
649
|
+
dark: {
|
650
|
+
label: [
|
651
|
+
"#4BABFF",
|
652
|
+
"#8BC8FF",
|
653
|
+
"#61CBB9",
|
654
|
+
"#ACE1A0",
|
655
|
+
"#FCDCAD",
|
656
|
+
"#F9B052",
|
657
|
+
"#FF6C6C",
|
658
|
+
"#904026",
|
659
|
+
"#EF76FF",
|
660
|
+
"#C4C4C4"
|
661
|
+
]
|
662
|
+
}
|
663
|
+
}
|
664
|
+
},
|
665
|
+
dataFormatter: {
|
666
|
+
sort: (t, a) => a.value - t.value,
|
667
|
+
separateLabel: !0
|
668
|
+
},
|
669
|
+
pluginParams: {
|
670
|
+
PieLabels: {
|
671
|
+
labelFn: (t) => t.seriesLabel
|
672
|
+
}
|
673
|
+
}
|
674
|
+
};
|
675
|
+
e.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
676
|
+
e.pluginParams.PieLabels.labelFn.toString = () => "d => d.seriesLabel";
|
677
|
+
const B = {
|
495
678
|
name: "PRESET_PIE_SIMPLE",
|
496
679
|
description: "Simple pie chart",
|
497
680
|
descriptionZh: "簡單圓餅圖",
|
@@ -544,8 +727,8 @@ const o = {
|
|
544
727
|
}
|
545
728
|
}
|
546
729
|
};
|
547
|
-
|
548
|
-
const
|
730
|
+
B.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
731
|
+
const d = {
|
549
732
|
name: "PRESET_PIE_SUM_SERIES",
|
550
733
|
description: "Pie chart of combined Series data",
|
551
734
|
descriptionZh: "合併Series資料的圓餅圖",
|
@@ -587,8 +770,8 @@ const n = {
|
|
587
770
|
},
|
588
771
|
pluginParams: {}
|
589
772
|
};
|
590
|
-
|
591
|
-
const
|
773
|
+
d.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
774
|
+
const E = {
|
592
775
|
name: "PRESET_ROSE_BASIC",
|
593
776
|
description: "Basic Rose chart",
|
594
777
|
descriptionZh: "基本Rose參數",
|
@@ -640,8 +823,8 @@ const d = {
|
|
640
823
|
}
|
641
824
|
}
|
642
825
|
};
|
643
|
-
|
644
|
-
const
|
826
|
+
E.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
827
|
+
const C = {
|
645
828
|
name: "PRESET_ROSE_SCALING_BY_RADIUS",
|
646
829
|
description: "Rose chart with radius scaling",
|
647
830
|
descriptionZh: "以半徑尺寸為比例的玫瑰圖",
|
@@ -699,8 +882,112 @@ const B = {
|
|
699
882
|
}
|
700
883
|
}
|
701
884
|
};
|
702
|
-
|
703
|
-
const
|
885
|
+
C.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
886
|
+
const i = {
|
887
|
+
name: "PRESET_ROSE_SEPARATE_LABEL",
|
888
|
+
description: "Separate rose chart of Label",
|
889
|
+
descriptionZh: "分開顯示Label的玫瑰圖",
|
890
|
+
chartParams: {
|
891
|
+
padding: {
|
892
|
+
top: 40,
|
893
|
+
right: 40,
|
894
|
+
bottom: 40,
|
895
|
+
left: 40
|
896
|
+
},
|
897
|
+
colors: {
|
898
|
+
light: {
|
899
|
+
label: [
|
900
|
+
"#4BABFF",
|
901
|
+
"#0088FF",
|
902
|
+
"#435399",
|
903
|
+
"#86DC72",
|
904
|
+
"#42C724",
|
905
|
+
"#16B59B",
|
906
|
+
"#F9B052",
|
907
|
+
"#F4721B",
|
908
|
+
"#FF3232",
|
909
|
+
"#7E7D7D"
|
910
|
+
]
|
911
|
+
},
|
912
|
+
dark: {
|
913
|
+
label: [
|
914
|
+
"#8BC8FF",
|
915
|
+
"#4BABFF",
|
916
|
+
"#0088FF",
|
917
|
+
"#55D339",
|
918
|
+
"#29AB0C",
|
919
|
+
"#16B59B",
|
920
|
+
"#FCDCAD",
|
921
|
+
"#F9B052",
|
922
|
+
"#FF6C6C",
|
923
|
+
"#C4C4C4"
|
924
|
+
]
|
925
|
+
}
|
926
|
+
}
|
927
|
+
},
|
928
|
+
dataFormatter: {
|
929
|
+
sort: (t, a) => a.value - t.value,
|
930
|
+
separateLabel: !0
|
931
|
+
},
|
932
|
+
pluginParams: {
|
933
|
+
RoseLabels: {
|
934
|
+
labelFn: (t) => t.seriesLabel
|
935
|
+
}
|
936
|
+
}
|
937
|
+
};
|
938
|
+
i.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
939
|
+
i.pluginParams.RoseLabels.labelFn.toString = () => "d => d.seriesLabel";
|
940
|
+
const A = {
|
941
|
+
name: "PRESET_ROSE_SEPARATE_ALL",
|
942
|
+
description: "Separate rose chart of all data",
|
943
|
+
descriptionZh: "全部資料分開顯示的玫瑰圖",
|
944
|
+
chartParams: {
|
945
|
+
padding: {
|
946
|
+
top: 40,
|
947
|
+
right: 40,
|
948
|
+
bottom: 40,
|
949
|
+
left: 40
|
950
|
+
},
|
951
|
+
colors: {
|
952
|
+
light: {
|
953
|
+
label: [
|
954
|
+
"#4BABFF",
|
955
|
+
"#0088FF",
|
956
|
+
"#435399",
|
957
|
+
"#86DC72",
|
958
|
+
"#42C724",
|
959
|
+
"#16B59B",
|
960
|
+
"#F9B052",
|
961
|
+
"#F4721B",
|
962
|
+
"#FF3232",
|
963
|
+
"#7E7D7D"
|
964
|
+
]
|
965
|
+
},
|
966
|
+
dark: {
|
967
|
+
label: [
|
968
|
+
"#8BC8FF",
|
969
|
+
"#4BABFF",
|
970
|
+
"#0088FF",
|
971
|
+
"#55D339",
|
972
|
+
"#29AB0C",
|
973
|
+
"#16B59B",
|
974
|
+
"#FCDCAD",
|
975
|
+
"#F9B052",
|
976
|
+
"#FF6C6C",
|
977
|
+
"#C4C4C4"
|
978
|
+
]
|
979
|
+
}
|
980
|
+
}
|
981
|
+
},
|
982
|
+
dataFormatter: {
|
983
|
+
sort: (t, a) => a.value - t.value,
|
984
|
+
separateLabel: !0,
|
985
|
+
separateSeries: !0
|
986
|
+
},
|
987
|
+
pluginParams: {}
|
988
|
+
};
|
989
|
+
A.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
990
|
+
const D = {
|
704
991
|
name: "PRESET_ROSE_SEPARATE_SERIES",
|
705
992
|
description: "Separate rose chart of Series",
|
706
993
|
descriptionZh: "分開顯示Series的玫瑰圖",
|
@@ -748,8 +1035,8 @@ const E = {
|
|
748
1035
|
},
|
749
1036
|
pluginParams: {}
|
750
1037
|
};
|
751
|
-
|
752
|
-
const
|
1038
|
+
D.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
1039
|
+
const c = {
|
753
1040
|
name: "PRESET_ROSE_SIMPLE",
|
754
1041
|
description: "Simple Rose chart",
|
755
1042
|
descriptionZh: "簡單Rose參數",
|
@@ -802,8 +1089,8 @@ const C = {
|
|
802
1089
|
}
|
803
1090
|
}
|
804
1091
|
};
|
805
|
-
|
806
|
-
const
|
1092
|
+
c.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
1093
|
+
const g = {
|
807
1094
|
name: "PRESET_ROSE_SUM_SERIES",
|
808
1095
|
description: "Rose chart of combined Series data",
|
809
1096
|
descriptionZh: "合併Series資料的玫瑰圖",
|
@@ -851,8 +1138,8 @@ const A = {
|
|
851
1138
|
},
|
852
1139
|
pluginParams: {}
|
853
1140
|
};
|
854
|
-
|
855
|
-
const
|
1141
|
+
g.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
1142
|
+
const p = {
|
856
1143
|
name: "PRESET_ROSE_SEPARATE_SERIES_AND_SUM_SERIES",
|
857
1144
|
description: "Separate and sum Series data",
|
858
1145
|
descriptionZh: "分開顯示Series並合併Series資料",
|
@@ -901,8 +1188,8 @@ const D = {
|
|
901
1188
|
},
|
902
1189
|
pluginParams: {}
|
903
1190
|
};
|
904
|
-
|
905
|
-
const
|
1191
|
+
p.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
1192
|
+
const L = {
|
906
1193
|
name: "PRESET_SERIES_BASIC",
|
907
1194
|
description: "Basic Series parameters",
|
908
1195
|
descriptionZh: "基本Series參數",
|
@@ -944,7 +1231,7 @@ const m = {
|
|
944
1231
|
// 圓型圖例列點
|
945
1232
|
}
|
946
1233
|
}
|
947
|
-
},
|
1234
|
+
}, S = {
|
948
1235
|
name: "PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES",
|
949
1236
|
description: "Separate and sum Series data",
|
950
1237
|
descriptionZh: "分開顯示Series並合併Series資料",
|
@@ -987,8 +1274,8 @@ const m = {
|
|
987
1274
|
},
|
988
1275
|
pluginParams: {}
|
989
1276
|
};
|
990
|
-
|
991
|
-
const
|
1277
|
+
S.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
1278
|
+
const u = {
|
992
1279
|
name: "PRESET_SERIES_SEPARATE_SERIES",
|
993
1280
|
description: "Separate Series",
|
994
1281
|
descriptionZh: "分開顯示Series",
|
@@ -1030,8 +1317,8 @@ const g = {
|
|
1030
1317
|
},
|
1031
1318
|
pluginParams: {}
|
1032
1319
|
};
|
1033
|
-
|
1034
|
-
const
|
1320
|
+
u.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
1321
|
+
const R = {
|
1035
1322
|
name: "PRESET_SERIES_SUM_SERIES",
|
1036
1323
|
description: "Combine Series data",
|
1037
1324
|
descriptionZh: "合併Series資料",
|
@@ -1073,8 +1360,8 @@ const p = {
|
|
1073
1360
|
},
|
1074
1361
|
pluginParams: {}
|
1075
1362
|
};
|
1076
|
-
|
1077
|
-
const
|
1363
|
+
R.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
1364
|
+
const I = {
|
1078
1365
|
name: "PRESET_BARS_HORIZONTAL_AND_ROUND",
|
1079
1366
|
description: "Horizontal bars with round corners",
|
1080
1367
|
descriptionZh: "橫向圓角長條圖",
|
@@ -1140,7 +1427,7 @@ const h = {
|
|
1140
1427
|
listRectRadius: 7
|
1141
1428
|
}
|
1142
1429
|
}
|
1143
|
-
},
|
1430
|
+
}, M = {
|
1144
1431
|
name: "PRESET_BARS_HORIZONTAL_AND_THIN",
|
1145
1432
|
description: "Horizontal thin bars",
|
1146
1433
|
descriptionZh: "橫向細長長條圖",
|
@@ -1206,7 +1493,7 @@ const h = {
|
|
1206
1493
|
padding: 14
|
1207
1494
|
}
|
1208
1495
|
}
|
1209
|
-
},
|
1496
|
+
}, G = {
|
1210
1497
|
name: "PRESET_BARS_ROUND",
|
1211
1498
|
description: "Rounded bars",
|
1212
1499
|
descriptionZh: "圓角長條圖",
|
@@ -1267,7 +1554,7 @@ const h = {
|
|
1267
1554
|
listRectRadius: 7
|
1268
1555
|
}
|
1269
1556
|
}
|
1270
|
-
},
|
1557
|
+
}, x = {
|
1271
1558
|
name: "PRESET_BARS_THIN",
|
1272
1559
|
description: "Thin bars",
|
1273
1560
|
descriptionZh: "細長條圖",
|
@@ -1325,7 +1612,7 @@ const h = {
|
|
1325
1612
|
padding: 14
|
1326
1613
|
}
|
1327
1614
|
}
|
1328
|
-
},
|
1615
|
+
}, O = {
|
1329
1616
|
name: "PRESET_GRID_BASIC",
|
1330
1617
|
description: "Basic Grid",
|
1331
1618
|
descriptionZh: "基本Grid",
|
@@ -1373,7 +1660,7 @@ const h = {
|
|
1373
1660
|
padding: 14
|
1374
1661
|
}
|
1375
1662
|
}
|
1376
|
-
},
|
1663
|
+
}, k = {
|
1377
1664
|
name: "PRESET_GRID_HORIZONTAL",
|
1378
1665
|
description: "Horizontal Grid",
|
1379
1666
|
descriptionZh: "橫向圖",
|
@@ -1430,7 +1717,7 @@ const h = {
|
|
1430
1717
|
padding: 14
|
1431
1718
|
}
|
1432
1719
|
}
|
1433
|
-
},
|
1720
|
+
}, N = {
|
1434
1721
|
name: "PRESET_GRID_PN_SCALE_SIMPLE",
|
1435
1722
|
description: "Simple positive negative scale",
|
1436
1723
|
descriptionZh: "簡單正負值分向圖",
|
@@ -1484,7 +1771,7 @@ const h = {
|
|
1484
1771
|
padding: 7
|
1485
1772
|
}
|
1486
1773
|
}
|
1487
|
-
},
|
1774
|
+
}, v = {
|
1488
1775
|
name: "PRESET_GRID_PN_SCALE",
|
1489
1776
|
description: "Positive negative scale",
|
1490
1777
|
descriptionZh: "正負值分向圖",
|
@@ -1538,7 +1825,7 @@ const h = {
|
|
1538
1825
|
padding: 14
|
1539
1826
|
}
|
1540
1827
|
}
|
1541
|
-
},
|
1828
|
+
}, U = {
|
1542
1829
|
name: "PRESET_GRID_ROTATE_AXIS_LABEL",
|
1543
1830
|
description: "Rotate axis label",
|
1544
1831
|
descriptionZh: "傾斜標籤",
|
@@ -1594,7 +1881,7 @@ const h = {
|
|
1594
1881
|
padding: 14
|
1595
1882
|
}
|
1596
1883
|
}
|
1597
|
-
},
|
1884
|
+
}, Z = {
|
1598
1885
|
name: "PRESET_GRID_SEPARATE_SERIES",
|
1599
1886
|
description: "Separate Series",
|
1600
1887
|
descriptionZh: "分開顯示Series",
|
@@ -1656,7 +1943,7 @@ const h = {
|
|
1656
1943
|
padding: 14
|
1657
1944
|
}
|
1658
1945
|
}
|
1659
|
-
},
|
1946
|
+
}, f = {
|
1660
1947
|
name: "PRESET_GRID_SIMPLE",
|
1661
1948
|
description: "Simple Grid",
|
1662
1949
|
descriptionZh: "簡單Grid",
|
@@ -1709,7 +1996,7 @@ const h = {
|
|
1709
1996
|
padding: 7
|
1710
1997
|
}
|
1711
1998
|
}
|
1712
|
-
},
|
1999
|
+
}, V = {
|
1713
2000
|
name: "PRESET_LINE_AREAS_BASIC",
|
1714
2001
|
description: "Basic LineArea",
|
1715
2002
|
descriptionZh: "基本折線區域圖",
|
@@ -1771,7 +2058,7 @@ const h = {
|
|
1771
2058
|
listRectHeight: 2
|
1772
2059
|
}
|
1773
2060
|
}
|
1774
|
-
},
|
2061
|
+
}, H = {
|
1775
2062
|
name: "PRESET_LINE_AREAS_CURVE",
|
1776
2063
|
description: "Curve LineArea",
|
1777
2064
|
descriptionZh: "弧線的折線區域圖",
|
@@ -1838,7 +2125,7 @@ const h = {
|
|
1838
2125
|
listRectHeight: 2
|
1839
2126
|
}
|
1840
2127
|
}
|
1841
|
-
},
|
2128
|
+
}, w = {
|
1842
2129
|
name: "PRESET_LINE_AREAS_HORIZONTAL",
|
1843
2130
|
description: "Horizontal LineArea",
|
1844
2131
|
descriptionZh: "橫向折線區域圖",
|
@@ -1903,7 +2190,7 @@ const h = {
|
|
1903
2190
|
listRectHeight: 2
|
1904
2191
|
}
|
1905
2192
|
}
|
1906
|
-
},
|
2193
|
+
}, y = {
|
1907
2194
|
name: "PRESET_LINE_AREAS_LOOSE_TICKS",
|
1908
2195
|
description: "Loose Ticks LineArea",
|
1909
2196
|
descriptionZh: "寬鬆標籤的折線區域圖",
|
@@ -1967,7 +2254,7 @@ const h = {
|
|
1967
2254
|
listRectHeight: 2
|
1968
2255
|
}
|
1969
2256
|
}
|
1970
|
-
},
|
2257
|
+
}, Y = {
|
1971
2258
|
name: "PRESET_LINE_AREAS_ROTATE_AXIS_LABEL",
|
1972
2259
|
description: "Rotate Axis Label LineArea",
|
1973
2260
|
descriptionZh: "傾斜標籤的折線區域圖",
|
@@ -2033,7 +2320,7 @@ const h = {
|
|
2033
2320
|
listRectHeight: 2
|
2034
2321
|
}
|
2035
2322
|
}
|
2036
|
-
},
|
2323
|
+
}, W = {
|
2037
2324
|
name: "PRESET_LINE_AREAS_SEPARATE_SERIES",
|
2038
2325
|
description: "Separate Series LineArea",
|
2039
2326
|
descriptionZh: "分開顯示Series的折線區域圖",
|
@@ -2104,7 +2391,7 @@ const h = {
|
|
2104
2391
|
listRectHeight: 2
|
2105
2392
|
}
|
2106
2393
|
}
|
2107
|
-
},
|
2394
|
+
}, X = {
|
2108
2395
|
name: "PRESET_LINE_AREAS_SIMPLE",
|
2109
2396
|
description: "Simple LineArea",
|
2110
2397
|
descriptionZh: "簡單折線區域圖",
|
@@ -2170,7 +2457,7 @@ const h = {
|
|
2170
2457
|
listRectHeight: 2
|
2171
2458
|
}
|
2172
2459
|
}
|
2173
|
-
},
|
2460
|
+
}, z = {
|
2174
2461
|
name: "PRESET_LINES_BASIC",
|
2175
2462
|
description: "Basic Line",
|
2176
2463
|
descriptionZh: "基本折線圖",
|
@@ -2225,7 +2512,7 @@ const h = {
|
|
2225
2512
|
listRectHeight: 2
|
2226
2513
|
}
|
2227
2514
|
}
|
2228
|
-
},
|
2515
|
+
}, K = {
|
2229
2516
|
name: "PRESET_LINES_CURVE",
|
2230
2517
|
description: "Curve Line",
|
2231
2518
|
descriptionZh: "弧線折線圖",
|
@@ -2283,7 +2570,7 @@ const h = {
|
|
2283
2570
|
listRectHeight: 2
|
2284
2571
|
}
|
2285
2572
|
}
|
2286
|
-
},
|
2573
|
+
}, j = {
|
2287
2574
|
name: "PRESET_LINES_HORIZONTAL",
|
2288
2575
|
description: "Horizontal Line",
|
2289
2576
|
descriptionZh: "橫向折線圖",
|
@@ -2346,7 +2633,7 @@ const h = {
|
|
2346
2633
|
listRectHeight: 2
|
2347
2634
|
}
|
2348
2635
|
}
|
2349
|
-
},
|
2636
|
+
}, q = {
|
2350
2637
|
name: "PRESET_LINES_LOOSE_TICKS",
|
2351
2638
|
description: "Loose Ticks Line",
|
2352
2639
|
descriptionZh: "寬鬆標籤的折線圖",
|
@@ -2403,7 +2690,7 @@ const h = {
|
|
2403
2690
|
listRectHeight: 2
|
2404
2691
|
}
|
2405
2692
|
}
|
2406
|
-
},
|
2693
|
+
}, J = {
|
2407
2694
|
name: "PRESET_LINES_ROTATE_AXIS_LABEL",
|
2408
2695
|
description: "Line chart with slanted labels",
|
2409
2696
|
descriptionZh: "傾斜標籤的折線圖",
|
@@ -2463,7 +2750,7 @@ const h = {
|
|
2463
2750
|
listRectHeight: 2
|
2464
2751
|
}
|
2465
2752
|
}
|
2466
|
-
},
|
2753
|
+
}, Q = {
|
2467
2754
|
name: "PRESET_LINES_SIMPLE",
|
2468
2755
|
description: "Simple line",
|
2469
2756
|
descriptionZh: "簡單折線圖",
|
@@ -2523,7 +2810,7 @@ const h = {
|
|
2523
2810
|
listRectHeight: 2
|
2524
2811
|
}
|
2525
2812
|
}
|
2526
|
-
},
|
2813
|
+
}, $ = {
|
2527
2814
|
name: "PRESET_LINES_WITH_SOLID_DOTS",
|
2528
2815
|
description: "Solid Dots Line",
|
2529
2816
|
descriptionZh: "實心圓點的折線圖",
|
@@ -2582,7 +2869,7 @@ const h = {
|
|
2582
2869
|
listRectHeight: 2
|
2583
2870
|
}
|
2584
2871
|
}
|
2585
|
-
},
|
2872
|
+
}, tt = {
|
2586
2873
|
name: "PRESET_MULTI_GRID_BASIC",
|
2587
2874
|
description: "Basic MultiGrid",
|
2588
2875
|
descriptionZh: "基本MultiGrid",
|
@@ -2637,7 +2924,7 @@ const h = {
|
|
2637
2924
|
]
|
2638
2925
|
}
|
2639
2926
|
}
|
2640
|
-
},
|
2927
|
+
}, at = {
|
2641
2928
|
name: "PRESET_MULTI_GRID_DIVERGING_SIMPLE",
|
2642
2929
|
description: "Simple diverging Grid",
|
2643
2930
|
descriptionZh: "簡單雙向Grid",
|
@@ -2746,7 +3033,7 @@ const h = {
|
|
2746
3033
|
padding: 7
|
2747
3034
|
}
|
2748
3035
|
}
|
2749
|
-
},
|
3036
|
+
}, et = {
|
2750
3037
|
name: "PRESET_MULTI_GRID_DIVERGING",
|
2751
3038
|
description: "Diverging Grid",
|
2752
3039
|
descriptionZh: "雙向Grid",
|
@@ -2852,7 +3139,7 @@ const h = {
|
|
2852
3139
|
padding: 14
|
2853
3140
|
}
|
2854
3141
|
}
|
2855
|
-
},
|
3142
|
+
}, it = {
|
2856
3143
|
name: "PRESET_MULTI_GRID_ROUND_STYLE_SIMPLE",
|
2857
3144
|
description: "Simple MultiGrid with round style",
|
2858
3145
|
descriptionZh: "簡單MultiGrid圓弧風格",
|
@@ -2903,7 +3190,11 @@ const h = {
|
|
2903
3190
|
scaleRange: [0, 0.95]
|
2904
3191
|
}
|
2905
3192
|
}
|
2906
|
-
]
|
3193
|
+
],
|
3194
|
+
container: {
|
3195
|
+
columnGap: 40,
|
3196
|
+
rowGap: 60
|
3197
|
+
}
|
2907
3198
|
},
|
2908
3199
|
pluginParams: {
|
2909
3200
|
MultiBars: {
|
@@ -2937,7 +3228,7 @@ const h = {
|
|
2937
3228
|
OverlappingValueAxes: {},
|
2938
3229
|
OverlappingStackedValueAxes: {}
|
2939
3230
|
}
|
2940
|
-
},
|
3231
|
+
}, Ft = {
|
2941
3232
|
name: "PRESET_MULTI_GRID_ROUND_STYLE",
|
2942
3233
|
description: "MultiGrid with round style",
|
2943
3234
|
descriptionZh: "MultiGrid圓弧風格",
|
@@ -3012,7 +3303,7 @@ const h = {
|
|
3012
3303
|
OverlappingValueAxes: {},
|
3013
3304
|
OverlappingStackedValueAxes: {}
|
3014
3305
|
}
|
3015
|
-
},
|
3306
|
+
}, rt = {
|
3016
3307
|
name: "PRESET_MULTI_GRID_SEPARATE_GRID_SIMPLE",
|
3017
3308
|
description: "Simple separate grid",
|
3018
3309
|
descriptionZh: "簡單的分開顯示Grid圖表",
|
@@ -3103,7 +3394,7 @@ const h = {
|
|
3103
3394
|
padding: 7
|
3104
3395
|
}
|
3105
3396
|
}
|
3106
|
-
},
|
3397
|
+
}, lt = {
|
3107
3398
|
name: "PRESET_MULTI_GRID_SEPARATE_GRID",
|
3108
3399
|
description: "Separate Grid",
|
3109
3400
|
descriptionZh: "分開顯示Grid圖表",
|
@@ -3186,7 +3477,7 @@ const h = {
|
|
3186
3477
|
padding: 14
|
3187
3478
|
}
|
3188
3479
|
}
|
3189
|
-
},
|
3480
|
+
}, st = {
|
3190
3481
|
name: "PRESET_MULTI_GRID_SIMPLE",
|
3191
3482
|
description: "Simple MultiGrid",
|
3192
3483
|
descriptionZh: "簡單MultiGrid",
|
@@ -3251,7 +3542,7 @@ const h = {
|
|
3251
3542
|
]
|
3252
3543
|
}
|
3253
3544
|
}
|
3254
|
-
},
|
3545
|
+
}, ot = {
|
3255
3546
|
name: "PRESET_MULTI_LINE_AREAS_SEPARATE_GRID_SIMPLE",
|
3256
3547
|
description: "Simple separate grid line areas",
|
3257
3548
|
descriptionZh: "簡單的分開顯示Grid的折線區域圖",
|
@@ -3373,7 +3664,7 @@ const h = {
|
|
3373
3664
|
]
|
3374
3665
|
}
|
3375
3666
|
}
|
3376
|
-
},
|
3667
|
+
}, nt = {
|
3377
3668
|
name: "PRESET_MULTI_LINE_AREAS_SEPARATE_GRID",
|
3378
3669
|
description: "Separate Grid line areas",
|
3379
3670
|
descriptionZh: "分開顯示Grid的折線區域圖",
|
@@ -3498,7 +3789,7 @@ const h = {
|
|
3498
3789
|
]
|
3499
3790
|
}
|
3500
3791
|
}
|
3501
|
-
},
|
3792
|
+
}, Bt = {
|
3502
3793
|
name: "PRESET_MULTI_LINES_SEPARATE_GRID_SIMPLE",
|
3503
3794
|
description: "Simple separate grid line",
|
3504
3795
|
descriptionZh: "簡單的分開顯示Grid的折線圖",
|
@@ -3551,8 +3842,8 @@ const h = {
|
|
3551
3842
|
],
|
3552
3843
|
separateGrid: !0,
|
3553
3844
|
container: {
|
3554
|
-
columnGap:
|
3555
|
-
rowGap:
|
3845
|
+
columnGap: 40,
|
3846
|
+
rowGap: 60
|
3556
3847
|
}
|
3557
3848
|
},
|
3558
3849
|
pluginParams: {
|
@@ -3615,7 +3906,7 @@ const h = {
|
|
3615
3906
|
]
|
3616
3907
|
}
|
3617
3908
|
}
|
3618
|
-
},
|
3909
|
+
}, dt = {
|
3619
3910
|
name: "PRESET_MULTI_LINES_SEPARATE_GRID",
|
3620
3911
|
description: "Separate Grid line",
|
3621
3912
|
descriptionZh: "分開顯示Grid的折線圖",
|
@@ -3726,7 +4017,7 @@ const h = {
|
|
3726
4017
|
]
|
3727
4018
|
}
|
3728
4019
|
}
|
3729
|
-
},
|
4020
|
+
}, Et = {
|
3730
4021
|
name: "PRESET_MULTI_VALUE_BASIC",
|
3731
4022
|
description: "Basic MultiValue",
|
3732
4023
|
descriptionZh: "基本MultiValue參數",
|
@@ -3774,7 +4065,7 @@ const h = {
|
|
3774
4065
|
padding: 14
|
3775
4066
|
}
|
3776
4067
|
}
|
3777
|
-
},
|
4068
|
+
}, Ct = {
|
3778
4069
|
name: "PRESET_MULTI_VALUE_SEPARATE_CATEGORY",
|
3779
4070
|
description: "MultiValue separate category",
|
3780
4071
|
descriptionZh: "MultiValue 分開顯示category",
|
@@ -3837,7 +4128,7 @@ const h = {
|
|
3837
4128
|
padding: 14
|
3838
4129
|
}
|
3839
4130
|
}
|
3840
|
-
},
|
4131
|
+
}, At = {
|
3841
4132
|
name: "PRESET_MULTI_VALUE_SIMPLE",
|
3842
4133
|
description: "Simple MultiValue",
|
3843
4134
|
descriptionZh: "簡單MultiValue參數",
|
@@ -3885,7 +4176,7 @@ const h = {
|
|
3885
4176
|
padding: 7
|
3886
4177
|
}
|
3887
4178
|
}
|
3888
|
-
},
|
4179
|
+
}, Dt = {
|
3889
4180
|
name: "PRESET_ORDINAL_BUBBLES_ALL_ITEMS",
|
3890
4181
|
description: "Ordinal bubbles with all items",
|
3891
4182
|
descriptionZh: "顯示全部項目的序數泡泡圖",
|
@@ -3938,7 +4229,7 @@ const h = {
|
|
3938
4229
|
// 圓型圖例列點
|
3939
4230
|
}
|
3940
4231
|
}
|
3941
|
-
},
|
4232
|
+
}, ct = {
|
3942
4233
|
name: "PRESET_ORDINAL_BUBBLES_BASIC",
|
3943
4234
|
description: "Basic ordinal bubbles",
|
3944
4235
|
descriptionZh: "序數泡泡圖",
|
@@ -3989,7 +4280,7 @@ const h = {
|
|
3989
4280
|
// 圓型圖例列點
|
3990
4281
|
}
|
3991
4282
|
}
|
3992
|
-
},
|
4283
|
+
}, gt = {
|
3993
4284
|
name: "PRESET_ORDINAL_BUBBLES_LINEAR_OPACITY",
|
3994
4285
|
description: "Ordinal bubbles with linear opacity",
|
3995
4286
|
descriptionZh: "漸變透明度的序數泡泡圖",
|
@@ -4044,7 +4335,7 @@ const h = {
|
|
4044
4335
|
// 圓型圖例列點
|
4045
4336
|
}
|
4046
4337
|
}
|
4047
|
-
},
|
4338
|
+
}, pt = {
|
4048
4339
|
name: "PRESET_ORDINAL_BUBBLES_SCALING_BY_RADIUS",
|
4049
4340
|
description: "Ordinal bubbles with radius scaling",
|
4050
4341
|
descriptionZh: "以半徑尺寸為比例的序數泡泡圖",
|
@@ -4099,7 +4390,7 @@ const h = {
|
|
4099
4390
|
// 圓型圖例列點
|
4100
4391
|
}
|
4101
4392
|
}
|
4102
|
-
},
|
4393
|
+
}, St = {
|
4103
4394
|
name: "PRESET_ORDINAL_BUBBLES_SEPARATE_CATEGORY",
|
4104
4395
|
description: "Ordinal bubbles with separate category",
|
4105
4396
|
descriptionZh: "分開顯示category的序數泡泡圖",
|
@@ -4160,7 +4451,7 @@ const h = {
|
|
4160
4451
|
// 圓型圖例列點
|
4161
4452
|
}
|
4162
4453
|
}
|
4163
|
-
},
|
4454
|
+
}, ut = {
|
4164
4455
|
name: "PRESET_ORDINAL_BUBBLES_SIMPLE",
|
4165
4456
|
description: "Simple ordinal bubbles",
|
4166
4457
|
descriptionZh: "簡單的序數泡泡圖",
|
@@ -4214,7 +4505,7 @@ const h = {
|
|
4214
4505
|
// 圓型圖例列點
|
4215
4506
|
}
|
4216
4507
|
}
|
4217
|
-
},
|
4508
|
+
}, Rt = {
|
4218
4509
|
name: "PRESET_RACING_BARS_ALL_ITEMS",
|
4219
4510
|
description: "Racing bars for all items",
|
4220
4511
|
descriptionZh: "顯示全部項目的賽跑長條圖",
|
@@ -4267,7 +4558,7 @@ const h = {
|
|
4267
4558
|
padding: 14
|
4268
4559
|
}
|
4269
4560
|
}
|
4270
|
-
},
|
4561
|
+
}, _t = {
|
4271
4562
|
name: "PRESET_RACING_BARS_BASIC",
|
4272
4563
|
description: "Basic racing bars",
|
4273
4564
|
descriptionZh: "基本賽跑長條圖",
|
@@ -4319,7 +4610,7 @@ const h = {
|
|
4319
4610
|
padding: 14
|
4320
4611
|
}
|
4321
4612
|
}
|
4322
|
-
},
|
4613
|
+
}, mt = {
|
4323
4614
|
name: "PRESET_RACING_BARS_FAST",
|
4324
4615
|
description: "Fast racing bars",
|
4325
4616
|
descriptionZh: "快速的賽跑長條圖",
|
@@ -4371,7 +4662,7 @@ const h = {
|
|
4371
4662
|
padding: 14
|
4372
4663
|
}
|
4373
4664
|
}
|
4374
|
-
},
|
4665
|
+
}, bt = {
|
4375
4666
|
name: "PRESET_RACING_BARS_FASTER",
|
4376
4667
|
description: "Faster racing bars",
|
4377
4668
|
descriptionZh: "更快速的賽跑長條圖",
|
@@ -4423,7 +4714,7 @@ const h = {
|
|
4423
4714
|
padding: 14
|
4424
4715
|
}
|
4425
4716
|
}
|
4426
|
-
},
|
4717
|
+
}, ht = {
|
4427
4718
|
name: "PRESET_RACING_BARS_LOOP",
|
4428
4719
|
description: "Looping racing bars",
|
4429
4720
|
descriptionZh: "循環的賽跑長條圖",
|
@@ -4476,7 +4767,7 @@ const h = {
|
|
4476
4767
|
padding: 14
|
4477
4768
|
}
|
4478
4769
|
}
|
4479
|
-
},
|
4770
|
+
}, Pt = {
|
4480
4771
|
name: "PRESET_RACING_BARS_OUTSIDE_LABELS",
|
4481
4772
|
description: "Racing bars with labels outside",
|
4482
4773
|
descriptionZh: "標籤在外面的賽跑長條圖",
|
@@ -4532,7 +4823,7 @@ const h = {
|
|
4532
4823
|
padding: 14
|
4533
4824
|
}
|
4534
4825
|
}
|
4535
|
-
},
|
4826
|
+
}, Tt = {
|
4536
4827
|
name: "PRESET_RACING_BARS_SEPARATE_CATEGORY",
|
4537
4828
|
description: "Racing bars with separate category",
|
4538
4829
|
descriptionZh: "分開顯示category的賽跑長條圖",
|
@@ -4601,7 +4892,7 @@ const h = {
|
|
4601
4892
|
padding: 14
|
4602
4893
|
}
|
4603
4894
|
}
|
4604
|
-
},
|
4895
|
+
}, Lt = {
|
4605
4896
|
name: "PRESET_RACING_BARS_SIMPLE",
|
4606
4897
|
description: "Simple racing bars",
|
4607
4898
|
descriptionZh: "簡單賽跑長條圖",
|
@@ -4653,7 +4944,7 @@ const h = {
|
|
4653
4944
|
padding: 7
|
4654
4945
|
}
|
4655
4946
|
}
|
4656
|
-
},
|
4947
|
+
}, It = {
|
4657
4948
|
name: "PRESET_RACING_BARS_STOP",
|
4658
4949
|
description: "Stopped racing bars",
|
4659
4950
|
descriptionZh: "停止的賽跑長條圖",
|
@@ -4704,7 +4995,7 @@ const h = {
|
|
4704
4995
|
padding: 14
|
4705
4996
|
}
|
4706
4997
|
}
|
4707
|
-
},
|
4998
|
+
}, Mt = {
|
4708
4999
|
name: "PRESET_SCATTER_BASIC",
|
4709
5000
|
description: "Basic scatter",
|
4710
5001
|
descriptionZh: "基本散布圖",
|
@@ -4754,7 +5045,7 @@ const h = {
|
|
4754
5045
|
// 圓型圖例列點
|
4755
5046
|
}
|
4756
5047
|
}
|
4757
|
-
},
|
5048
|
+
}, Gt = {
|
4758
5049
|
name: "PRESET_SCATTER_BUBBLES_BASIC",
|
4759
5050
|
description: "Basic scatter bubbles",
|
4760
5051
|
descriptionZh: "基本的散布泡泡圖",
|
@@ -4804,7 +5095,7 @@ const h = {
|
|
4804
5095
|
// 圓型圖例列點
|
4805
5096
|
}
|
4806
5097
|
}
|
4807
|
-
},
|
5098
|
+
}, xt = {
|
4808
5099
|
name: "PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS",
|
4809
5100
|
description: "Scatter bubbles with radius scaling",
|
4810
5101
|
descriptionZh: "以半徑尺寸為比例的散布泡泡圖",
|
@@ -4857,7 +5148,7 @@ const h = {
|
|
4857
5148
|
arcScaleType: "radius"
|
4858
5149
|
}
|
4859
5150
|
}
|
4860
|
-
},
|
5151
|
+
}, Ot = {
|
4861
5152
|
name: "PRESET_SCATTER_BUBBLES_LINEAR_OPACITY",
|
4862
5153
|
description: "Scatter bubbles with linear opacity",
|
4863
5154
|
descriptionZh: "以資料量漸變透明度的散布泡泡圖",
|
@@ -4910,7 +5201,7 @@ const h = {
|
|
4910
5201
|
valueLinearOpacity: [0.5, 1]
|
4911
5202
|
}
|
4912
5203
|
}
|
4913
|
-
},
|
5204
|
+
}, kt = {
|
4914
5205
|
name: "PRESET_SCATTER_BUBBLES_SEPARATE_CATEGORY",
|
4915
5206
|
description: "Scatter bubbles with separate category",
|
4916
5207
|
descriptionZh: "分開顯示category的散布泡泡圖",
|
@@ -4967,7 +5258,7 @@ const h = {
|
|
4967
5258
|
// 圓型圖例列點
|
4968
5259
|
}
|
4969
5260
|
}
|
4970
|
-
},
|
5261
|
+
}, Nt = {
|
4971
5262
|
name: "PRESET_SCATTER_BUBBLES_SIMPLE",
|
4972
5263
|
description: "Simple scatter bubbles",
|
4973
5264
|
descriptionZh: "簡單的散布泡泡圖",
|
@@ -5017,7 +5308,7 @@ const h = {
|
|
5017
5308
|
// 圓型圖例列點
|
5018
5309
|
}
|
5019
5310
|
}
|
5020
|
-
},
|
5311
|
+
}, vt = {
|
5021
5312
|
name: "PRESET_SCATTER_SEPARATE_CATEGORY",
|
5022
5313
|
description: "Scatter with separate category",
|
5023
5314
|
descriptionZh: "分開顯示category的散布圖",
|
@@ -5082,7 +5373,7 @@ const h = {
|
|
5082
5373
|
// 圓型圖例列點
|
5083
5374
|
}
|
5084
5375
|
}
|
5085
|
-
},
|
5376
|
+
}, Ut = {
|
5086
5377
|
name: "PRESET_SCATTER_SIMPLE",
|
5087
5378
|
description: "Simple scatter",
|
5088
5379
|
descriptionZh: "簡單散布圖",
|
@@ -5132,7 +5423,7 @@ const h = {
|
|
5132
5423
|
// 圓型圖例列點
|
5133
5424
|
}
|
5134
5425
|
}
|
5135
|
-
},
|
5426
|
+
}, Zt = {
|
5136
5427
|
name: "PRESET_FORCE_DIRECTED_BASIC",
|
5137
5428
|
description: "Basic force directed chart",
|
5138
5429
|
descriptionZh: "基本力導向圖",
|
@@ -5175,7 +5466,7 @@ const h = {
|
|
5175
5466
|
// 圓型圖例列點
|
5176
5467
|
}
|
5177
5468
|
}
|
5178
|
-
},
|
5469
|
+
}, ft = {
|
5179
5470
|
name: "PRESET_FORCE_DIRECTED_BUBBLES_BASIC",
|
5180
5471
|
description: "Basic force directed bubbles chart",
|
5181
5472
|
descriptionZh: "基本力導向泡泡圖",
|
@@ -5218,7 +5509,7 @@ const h = {
|
|
5218
5509
|
// 圓型圖例列點
|
5219
5510
|
}
|
5220
5511
|
}
|
5221
|
-
},
|
5512
|
+
}, Vt = {
|
5222
5513
|
name: "PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH",
|
5223
5514
|
description: "Force-directed bubble chart with fixed arrow width",
|
5224
5515
|
descriptionZh: "固定箭頭寬度的力導向泡泡圖",
|
@@ -5266,7 +5557,7 @@ const h = {
|
|
5266
5557
|
// 圓型圖例列點
|
5267
5558
|
}
|
5268
5559
|
}
|
5269
|
-
},
|
5560
|
+
}, Ht = {
|
5270
5561
|
name: "PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW",
|
5271
5562
|
description: "Force-directed bubble chart without arrows",
|
5272
5563
|
descriptionZh: "沒有箭頭的力導向泡泡圖",
|
@@ -5314,7 +5605,7 @@ const h = {
|
|
5314
5605
|
// 圓型圖例列點
|
5315
5606
|
}
|
5316
5607
|
}
|
5317
|
-
},
|
5608
|
+
}, wt = {
|
5318
5609
|
name: "PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM",
|
5319
5610
|
description: "Force Directed bubbles chart without mouse drag and zoom control",
|
5320
5611
|
descriptionZh: "無滑鼠托曳及縮放控制的力導向泡泡圖",
|
@@ -5359,7 +5650,7 @@ const h = {
|
|
5359
5650
|
// 圓型圖例列點
|
5360
5651
|
}
|
5361
5652
|
}
|
5362
|
-
},
|
5653
|
+
}, yt = {
|
5363
5654
|
name: "PRESET_FORCE_DIRECTED_BUBBLES_SIMPLE",
|
5364
5655
|
description: "Simple force directed bubbles chart",
|
5365
5656
|
descriptionZh: "簡單力導向泡泡圖",
|
@@ -5403,7 +5694,7 @@ const h = {
|
|
5403
5694
|
padding: 7
|
5404
5695
|
}
|
5405
5696
|
}
|
5406
|
-
},
|
5697
|
+
}, Yt = {
|
5407
5698
|
name: "PRESET_FORCE_DIRECTED_NONE_ZOOM",
|
5408
5699
|
description: "Force directed chart without mouse drag and zoom control",
|
5409
5700
|
descriptionZh: "無滑鼠托曳及縮放控制的力導向圖",
|
@@ -5448,7 +5739,7 @@ const h = {
|
|
5448
5739
|
// 圓型圖例列點
|
5449
5740
|
}
|
5450
5741
|
}
|
5451
|
-
},
|
5742
|
+
}, Wt = {
|
5452
5743
|
name: "PRESET_FORCE_DIRECTED_FIX_FONT_SIZE",
|
5453
5744
|
description: "Force directed chart with fixed font size",
|
5454
5745
|
descriptionZh: "固定字體大小的力導向圖",
|
@@ -5498,7 +5789,7 @@ const h = {
|
|
5498
5789
|
// 圓型圖例列點
|
5499
5790
|
}
|
5500
5791
|
}
|
5501
|
-
},
|
5792
|
+
}, Xt = {
|
5502
5793
|
name: "PRESET_FORCE_DIRECTED_NONE_ARROW",
|
5503
5794
|
description: "Force directed chart without arrows",
|
5504
5795
|
descriptionZh: "沒有箭頭的力導向圖",
|
@@ -5546,7 +5837,7 @@ const h = {
|
|
5546
5837
|
// 圓型圖例列點
|
5547
5838
|
}
|
5548
5839
|
}
|
5549
|
-
},
|
5840
|
+
}, zt = {
|
5550
5841
|
name: "PRESET_FORCE_DIRECTED_SIMPLE",
|
5551
5842
|
description: "Simple force directed chart",
|
5552
5843
|
descriptionZh: "簡單力導向圖",
|
@@ -5590,7 +5881,7 @@ const h = {
|
|
5590
5881
|
padding: 7
|
5591
5882
|
}
|
5592
5883
|
}
|
5593
|
-
},
|
5884
|
+
}, Kt = {
|
5594
5885
|
name: "PRESET_TREE_MAP_BASIC",
|
5595
5886
|
description: "Basic tree map",
|
5596
5887
|
descriptionZh: "基本樹狀矩形圖",
|
@@ -5639,7 +5930,7 @@ const h = {
|
|
5639
5930
|
padding: 14
|
5640
5931
|
}
|
5641
5932
|
}
|
5642
|
-
},
|
5933
|
+
}, jt = {
|
5643
5934
|
name: "PRESET_TREE_MAP_SIMPLE",
|
5644
5935
|
description: "Simple tree map",
|
5645
5936
|
descriptionZh: "簡單樹狀矩形圖",
|
@@ -5690,101 +5981,106 @@ const h = {
|
|
5690
5981
|
}
|
5691
5982
|
};
|
5692
5983
|
export {
|
5693
|
-
|
5694
|
-
|
5695
|
-
|
5696
|
-
|
5697
|
-
|
5698
|
-
|
5699
|
-
|
5700
|
-
|
5701
|
-
|
5702
|
-
|
5703
|
-
|
5704
|
-
|
5705
|
-
|
5706
|
-
|
5707
|
-
|
5708
|
-
|
5709
|
-
|
5710
|
-
|
5711
|
-
|
5712
|
-
|
5713
|
-
|
5714
|
-
|
5715
|
-
|
5716
|
-
|
5717
|
-
|
5718
|
-
|
5719
|
-
|
5720
|
-
|
5721
|
-
|
5722
|
-
|
5723
|
-
|
5724
|
-
|
5725
|
-
|
5726
|
-
|
5727
|
-
|
5728
|
-
|
5729
|
-
|
5730
|
-
|
5731
|
-
|
5732
|
-
|
5733
|
-
|
5734
|
-
|
5735
|
-
|
5736
|
-
|
5737
|
-
|
5738
|
-
|
5739
|
-
|
5740
|
-
|
5741
|
-
|
5742
|
-
|
5743
|
-
|
5744
|
-
|
5745
|
-
|
5746
|
-
ot as
|
5747
|
-
|
5748
|
-
|
5749
|
-
|
5750
|
-
|
5751
|
-
|
5752
|
-
|
5753
|
-
|
5754
|
-
|
5755
|
-
|
5756
|
-
r as
|
5757
|
-
|
5758
|
-
|
5759
|
-
|
5760
|
-
|
5761
|
-
|
5762
|
-
|
5763
|
-
|
5764
|
-
Rt as
|
5765
|
-
|
5766
|
-
|
5767
|
-
|
5768
|
-
|
5769
|
-
|
5770
|
-
|
5771
|
-
|
5772
|
-
|
5773
|
-
|
5774
|
-
C as
|
5775
|
-
A as
|
5776
|
-
|
5777
|
-
|
5778
|
-
|
5779
|
-
|
5780
|
-
|
5781
|
-
Mt as
|
5782
|
-
Gt as
|
5783
|
-
|
5784
|
-
|
5785
|
-
|
5786
|
-
|
5787
|
-
|
5788
|
-
|
5789
|
-
|
5984
|
+
I as PRESET_BARS_HORIZONTAL_AND_ROUND,
|
5985
|
+
M as PRESET_BARS_HORIZONTAL_AND_THIN,
|
5986
|
+
G as PRESET_BARS_ROUND,
|
5987
|
+
x as PRESET_BARS_THIN,
|
5988
|
+
_ as PRESET_BUBBLES_BASIC,
|
5989
|
+
m as PRESET_BUBBLES_SCALING_BY_RADIUS,
|
5990
|
+
P as PRESET_BUBBLES_SEPARATE_ALL,
|
5991
|
+
h as PRESET_BUBBLES_SEPARATE_LABEL,
|
5992
|
+
b as PRESET_BUBBLES_SEPARATE_SERIES,
|
5993
|
+
T as PRESET_BUBBLES_SIMPLE,
|
5994
|
+
F as PRESET_BUBBLES_SUM_SERIES,
|
5995
|
+
Zt as PRESET_FORCE_DIRECTED_BASIC,
|
5996
|
+
ft as PRESET_FORCE_DIRECTED_BUBBLES_BASIC,
|
5997
|
+
Vt as PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH,
|
5998
|
+
Ht as PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW,
|
5999
|
+
wt as PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM,
|
6000
|
+
yt as PRESET_FORCE_DIRECTED_BUBBLES_SIMPLE,
|
6001
|
+
Wt as PRESET_FORCE_DIRECTED_FIX_FONT_SIZE,
|
6002
|
+
Xt as PRESET_FORCE_DIRECTED_NONE_ARROW,
|
6003
|
+
Yt as PRESET_FORCE_DIRECTED_NONE_ZOOM,
|
6004
|
+
zt as PRESET_FORCE_DIRECTED_SIMPLE,
|
6005
|
+
O as PRESET_GRID_BASIC,
|
6006
|
+
k as PRESET_GRID_HORIZONTAL,
|
6007
|
+
v as PRESET_GRID_PN_SCALE,
|
6008
|
+
N as PRESET_GRID_PN_SCALE_SIMPLE,
|
6009
|
+
U as PRESET_GRID_ROTATE_AXIS_LABEL,
|
6010
|
+
Z as PRESET_GRID_SEPARATE_SERIES,
|
6011
|
+
f as PRESET_GRID_SIMPLE,
|
6012
|
+
z as PRESET_LINES_BASIC,
|
6013
|
+
K as PRESET_LINES_CURVE,
|
6014
|
+
j as PRESET_LINES_HORIZONTAL,
|
6015
|
+
q as PRESET_LINES_LOOSE_TICKS,
|
6016
|
+
J as PRESET_LINES_ROTATE_AXIS_LABEL,
|
6017
|
+
Q as PRESET_LINES_SIMPLE,
|
6018
|
+
$ as PRESET_LINES_WITH_SOLID_DOTS,
|
6019
|
+
V as PRESET_LINE_AREAS_BASIC,
|
6020
|
+
H as PRESET_LINE_AREAS_CURVE,
|
6021
|
+
w as PRESET_LINE_AREAS_HORIZONTAL,
|
6022
|
+
y as PRESET_LINE_AREAS_LOOSE_TICKS,
|
6023
|
+
Y as PRESET_LINE_AREAS_ROTATE_AXIS_LABEL,
|
6024
|
+
W as PRESET_LINE_AREAS_SEPARATE_SERIES,
|
6025
|
+
X as PRESET_LINE_AREAS_SIMPLE,
|
6026
|
+
tt as PRESET_MULTI_GRID_BASIC,
|
6027
|
+
et as PRESET_MULTI_GRID_DIVERGING,
|
6028
|
+
at as PRESET_MULTI_GRID_DIVERGING_SIMPLE,
|
6029
|
+
Ft as PRESET_MULTI_GRID_ROUND_STYLE,
|
6030
|
+
it as PRESET_MULTI_GRID_ROUND_STYLE_SIMPLE,
|
6031
|
+
lt as PRESET_MULTI_GRID_SEPARATE_GRID,
|
6032
|
+
rt as PRESET_MULTI_GRID_SEPARATE_GRID_SIMPLE,
|
6033
|
+
st as PRESET_MULTI_GRID_SIMPLE,
|
6034
|
+
dt as PRESET_MULTI_LINES_SEPARATE_GRID,
|
6035
|
+
Bt as PRESET_MULTI_LINES_SEPARATE_GRID_SIMPLE,
|
6036
|
+
nt as PRESET_MULTI_LINE_AREAS_SEPARATE_GRID,
|
6037
|
+
ot as PRESET_MULTI_LINE_AREAS_SEPARATE_GRID_SIMPLE,
|
6038
|
+
Et as PRESET_MULTI_VALUE_BASIC,
|
6039
|
+
Ct as PRESET_MULTI_VALUE_SEPARATE_CATEGORY,
|
6040
|
+
At as PRESET_MULTI_VALUE_SIMPLE,
|
6041
|
+
Dt as PRESET_ORDINAL_BUBBLES_ALL_ITEMS,
|
6042
|
+
ct as PRESET_ORDINAL_BUBBLES_BASIC,
|
6043
|
+
gt as PRESET_ORDINAL_BUBBLES_LINEAR_OPACITY,
|
6044
|
+
pt as PRESET_ORDINAL_BUBBLES_SCALING_BY_RADIUS,
|
6045
|
+
St as PRESET_ORDINAL_BUBBLES_SEPARATE_CATEGORY,
|
6046
|
+
ut as PRESET_ORDINAL_BUBBLES_SIMPLE,
|
6047
|
+
r as PRESET_PIE_BASIC,
|
6048
|
+
l as PRESET_PIE_DONUT,
|
6049
|
+
s as PRESET_PIE_HALF_DONUT,
|
6050
|
+
e as PRESET_PIE_SEPARATE_LABEL,
|
6051
|
+
n as PRESET_PIE_SEPARATE_SERIES,
|
6052
|
+
B as PRESET_PIE_SIMPLE,
|
6053
|
+
d as PRESET_PIE_SUM_SERIES,
|
6054
|
+
o as PRESET_PIE_WITH_INNER_LABELS,
|
6055
|
+
Rt as PRESET_RACING_BARS_ALL_ITEMS,
|
6056
|
+
_t as PRESET_RACING_BARS_BASIC,
|
6057
|
+
mt as PRESET_RACING_BARS_FAST,
|
6058
|
+
bt as PRESET_RACING_BARS_FASTER,
|
6059
|
+
ht as PRESET_RACING_BARS_LOOP,
|
6060
|
+
Pt as PRESET_RACING_BARS_OUTSIDE_LABELS,
|
6061
|
+
Tt as PRESET_RACING_BARS_SEPARATE_CATEGORY,
|
6062
|
+
Lt as PRESET_RACING_BARS_SIMPLE,
|
6063
|
+
It as PRESET_RACING_BARS_STOP,
|
6064
|
+
E as PRESET_ROSE_BASIC,
|
6065
|
+
C as PRESET_ROSE_SCALING_BY_RADIUS,
|
6066
|
+
A as PRESET_ROSE_SEPARATE_ALL,
|
6067
|
+
i as PRESET_ROSE_SEPARATE_LABEL,
|
6068
|
+
D as PRESET_ROSE_SEPARATE_SERIES,
|
6069
|
+
p as PRESET_ROSE_SEPARATE_SERIES_AND_SUM_SERIES,
|
6070
|
+
c as PRESET_ROSE_SIMPLE,
|
6071
|
+
g as PRESET_ROSE_SUM_SERIES,
|
6072
|
+
Mt as PRESET_SCATTER_BASIC,
|
6073
|
+
Gt as PRESET_SCATTER_BUBBLES_BASIC,
|
6074
|
+
Ot as PRESET_SCATTER_BUBBLES_LINEAR_OPACITY,
|
6075
|
+
xt as PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS,
|
6076
|
+
kt as PRESET_SCATTER_BUBBLES_SEPARATE_CATEGORY,
|
6077
|
+
Nt as PRESET_SCATTER_BUBBLES_SIMPLE,
|
6078
|
+
vt as PRESET_SCATTER_SEPARATE_CATEGORY,
|
6079
|
+
Ut as PRESET_SCATTER_SIMPLE,
|
6080
|
+
L as PRESET_SERIES_BASIC,
|
6081
|
+
u as PRESET_SERIES_SEPARATE_SERIES,
|
6082
|
+
S as PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES,
|
6083
|
+
R as PRESET_SERIES_SUM_SERIES,
|
6084
|
+
Kt as PRESET_TREE_MAP_BASIC,
|
6085
|
+
jt as PRESET_TREE_MAP_SIMPLE
|
5790
6086
|
};
|