@orbcharts/presets-basic 3.0.2 → 3.0.4
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 +511 -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 +51 -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 +57 -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,54 @@ 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
|
+
}
|
672
|
+
};
|
673
|
+
e.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
674
|
+
e.pluginParams.PieLabels.labelFn.toString = () => "d => d.seriesLabel";
|
675
|
+
const B = {
|
495
676
|
name: "PRESET_PIE_SIMPLE",
|
496
677
|
description: "Simple pie chart",
|
497
678
|
descriptionZh: "簡單圓餅圖",
|
@@ -544,8 +725,8 @@ const o = {
|
|
544
725
|
}
|
545
726
|
}
|
546
727
|
};
|
547
|
-
|
548
|
-
const
|
728
|
+
B.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
729
|
+
const d = {
|
549
730
|
name: "PRESET_PIE_SUM_SERIES",
|
550
731
|
description: "Pie chart of combined Series data",
|
551
732
|
descriptionZh: "合併Series資料的圓餅圖",
|
@@ -587,8 +768,8 @@ const n = {
|
|
587
768
|
},
|
588
769
|
pluginParams: {}
|
589
770
|
};
|
590
|
-
|
591
|
-
const
|
771
|
+
d.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
772
|
+
const E = {
|
592
773
|
name: "PRESET_ROSE_BASIC",
|
593
774
|
description: "Basic Rose chart",
|
594
775
|
descriptionZh: "基本Rose參數",
|
@@ -640,8 +821,8 @@ const d = {
|
|
640
821
|
}
|
641
822
|
}
|
642
823
|
};
|
643
|
-
|
644
|
-
const
|
824
|
+
E.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
825
|
+
const C = {
|
645
826
|
name: "PRESET_ROSE_SCALING_BY_RADIUS",
|
646
827
|
description: "Rose chart with radius scaling",
|
647
828
|
descriptionZh: "以半徑尺寸為比例的玫瑰圖",
|
@@ -699,8 +880,110 @@ const B = {
|
|
699
880
|
}
|
700
881
|
}
|
701
882
|
};
|
702
|
-
|
703
|
-
const
|
883
|
+
C.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
884
|
+
const i = {
|
885
|
+
name: "PRESET_ROSE_SEPARATE_LABEL",
|
886
|
+
description: "Separate rose chart of Label",
|
887
|
+
descriptionZh: "分開顯示Label的玫瑰圖",
|
888
|
+
chartParams: {
|
889
|
+
padding: {
|
890
|
+
top: 40,
|
891
|
+
right: 40,
|
892
|
+
bottom: 40,
|
893
|
+
left: 40
|
894
|
+
},
|
895
|
+
colors: {
|
896
|
+
light: {
|
897
|
+
label: [
|
898
|
+
"#4BABFF",
|
899
|
+
"#0088FF",
|
900
|
+
"#435399",
|
901
|
+
"#86DC72",
|
902
|
+
"#42C724",
|
903
|
+
"#16B59B",
|
904
|
+
"#F9B052",
|
905
|
+
"#F4721B",
|
906
|
+
"#FF3232",
|
907
|
+
"#7E7D7D"
|
908
|
+
]
|
909
|
+
},
|
910
|
+
dark: {
|
911
|
+
label: [
|
912
|
+
"#8BC8FF",
|
913
|
+
"#4BABFF",
|
914
|
+
"#0088FF",
|
915
|
+
"#55D339",
|
916
|
+
"#29AB0C",
|
917
|
+
"#16B59B",
|
918
|
+
"#FCDCAD",
|
919
|
+
"#F9B052",
|
920
|
+
"#FF6C6C",
|
921
|
+
"#C4C4C4"
|
922
|
+
]
|
923
|
+
}
|
924
|
+
}
|
925
|
+
},
|
926
|
+
dataFormatter: {
|
927
|
+
sort: (t, a) => a.value - t.value,
|
928
|
+
separateLabel: !0
|
929
|
+
},
|
930
|
+
pluginParams: {
|
931
|
+
RoseLabels: {}
|
932
|
+
}
|
933
|
+
};
|
934
|
+
i.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
935
|
+
i.pluginParams.RoseLabels.labelFn.toString = () => "d => d.seriesLabel";
|
936
|
+
const A = {
|
937
|
+
name: "PRESET_ROSE_SEPARATE_ALL",
|
938
|
+
description: "Separate rose chart of all data",
|
939
|
+
descriptionZh: "全部資料分開顯示的玫瑰圖",
|
940
|
+
chartParams: {
|
941
|
+
padding: {
|
942
|
+
top: 40,
|
943
|
+
right: 40,
|
944
|
+
bottom: 40,
|
945
|
+
left: 40
|
946
|
+
},
|
947
|
+
colors: {
|
948
|
+
light: {
|
949
|
+
label: [
|
950
|
+
"#4BABFF",
|
951
|
+
"#0088FF",
|
952
|
+
"#435399",
|
953
|
+
"#86DC72",
|
954
|
+
"#42C724",
|
955
|
+
"#16B59B",
|
956
|
+
"#F9B052",
|
957
|
+
"#F4721B",
|
958
|
+
"#FF3232",
|
959
|
+
"#7E7D7D"
|
960
|
+
]
|
961
|
+
},
|
962
|
+
dark: {
|
963
|
+
label: [
|
964
|
+
"#8BC8FF",
|
965
|
+
"#4BABFF",
|
966
|
+
"#0088FF",
|
967
|
+
"#55D339",
|
968
|
+
"#29AB0C",
|
969
|
+
"#16B59B",
|
970
|
+
"#FCDCAD",
|
971
|
+
"#F9B052",
|
972
|
+
"#FF6C6C",
|
973
|
+
"#C4C4C4"
|
974
|
+
]
|
975
|
+
}
|
976
|
+
}
|
977
|
+
},
|
978
|
+
dataFormatter: {
|
979
|
+
sort: (t, a) => a.value - t.value,
|
980
|
+
separateLabel: !0,
|
981
|
+
separateSeries: !0
|
982
|
+
},
|
983
|
+
pluginParams: {}
|
984
|
+
};
|
985
|
+
A.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
986
|
+
const D = {
|
704
987
|
name: "PRESET_ROSE_SEPARATE_SERIES",
|
705
988
|
description: "Separate rose chart of Series",
|
706
989
|
descriptionZh: "分開顯示Series的玫瑰圖",
|
@@ -748,8 +1031,8 @@ const E = {
|
|
748
1031
|
},
|
749
1032
|
pluginParams: {}
|
750
1033
|
};
|
751
|
-
|
752
|
-
const
|
1034
|
+
D.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
1035
|
+
const c = {
|
753
1036
|
name: "PRESET_ROSE_SIMPLE",
|
754
1037
|
description: "Simple Rose chart",
|
755
1038
|
descriptionZh: "簡單Rose參數",
|
@@ -802,8 +1085,8 @@ const C = {
|
|
802
1085
|
}
|
803
1086
|
}
|
804
1087
|
};
|
805
|
-
|
806
|
-
const
|
1088
|
+
c.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
1089
|
+
const g = {
|
807
1090
|
name: "PRESET_ROSE_SUM_SERIES",
|
808
1091
|
description: "Rose chart of combined Series data",
|
809
1092
|
descriptionZh: "合併Series資料的玫瑰圖",
|
@@ -851,8 +1134,8 @@ const A = {
|
|
851
1134
|
},
|
852
1135
|
pluginParams: {}
|
853
1136
|
};
|
854
|
-
|
855
|
-
const
|
1137
|
+
g.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
1138
|
+
const p = {
|
856
1139
|
name: "PRESET_ROSE_SEPARATE_SERIES_AND_SUM_SERIES",
|
857
1140
|
description: "Separate and sum Series data",
|
858
1141
|
descriptionZh: "分開顯示Series並合併Series資料",
|
@@ -901,8 +1184,8 @@ const D = {
|
|
901
1184
|
},
|
902
1185
|
pluginParams: {}
|
903
1186
|
};
|
904
|
-
|
905
|
-
const
|
1187
|
+
p.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
1188
|
+
const L = {
|
906
1189
|
name: "PRESET_SERIES_BASIC",
|
907
1190
|
description: "Basic Series parameters",
|
908
1191
|
descriptionZh: "基本Series參數",
|
@@ -944,7 +1227,7 @@ const m = {
|
|
944
1227
|
// 圓型圖例列點
|
945
1228
|
}
|
946
1229
|
}
|
947
|
-
},
|
1230
|
+
}, S = {
|
948
1231
|
name: "PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES",
|
949
1232
|
description: "Separate and sum Series data",
|
950
1233
|
descriptionZh: "分開顯示Series並合併Series資料",
|
@@ -987,8 +1270,8 @@ const m = {
|
|
987
1270
|
},
|
988
1271
|
pluginParams: {}
|
989
1272
|
};
|
990
|
-
|
991
|
-
const
|
1273
|
+
S.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
1274
|
+
const u = {
|
992
1275
|
name: "PRESET_SERIES_SEPARATE_SERIES",
|
993
1276
|
description: "Separate Series",
|
994
1277
|
descriptionZh: "分開顯示Series",
|
@@ -1030,8 +1313,8 @@ const g = {
|
|
1030
1313
|
},
|
1031
1314
|
pluginParams: {}
|
1032
1315
|
};
|
1033
|
-
|
1034
|
-
const
|
1316
|
+
u.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
1317
|
+
const R = {
|
1035
1318
|
name: "PRESET_SERIES_SUM_SERIES",
|
1036
1319
|
description: "Combine Series data",
|
1037
1320
|
descriptionZh: "合併Series資料",
|
@@ -1073,8 +1356,8 @@ const p = {
|
|
1073
1356
|
},
|
1074
1357
|
pluginParams: {}
|
1075
1358
|
};
|
1076
|
-
|
1077
|
-
const
|
1359
|
+
R.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
1360
|
+
const I = {
|
1078
1361
|
name: "PRESET_BARS_HORIZONTAL_AND_ROUND",
|
1079
1362
|
description: "Horizontal bars with round corners",
|
1080
1363
|
descriptionZh: "橫向圓角長條圖",
|
@@ -1140,7 +1423,7 @@ const h = {
|
|
1140
1423
|
listRectRadius: 7
|
1141
1424
|
}
|
1142
1425
|
}
|
1143
|
-
},
|
1426
|
+
}, M = {
|
1144
1427
|
name: "PRESET_BARS_HORIZONTAL_AND_THIN",
|
1145
1428
|
description: "Horizontal thin bars",
|
1146
1429
|
descriptionZh: "橫向細長長條圖",
|
@@ -1206,7 +1489,7 @@ const h = {
|
|
1206
1489
|
padding: 14
|
1207
1490
|
}
|
1208
1491
|
}
|
1209
|
-
},
|
1492
|
+
}, G = {
|
1210
1493
|
name: "PRESET_BARS_ROUND",
|
1211
1494
|
description: "Rounded bars",
|
1212
1495
|
descriptionZh: "圓角長條圖",
|
@@ -1267,7 +1550,7 @@ const h = {
|
|
1267
1550
|
listRectRadius: 7
|
1268
1551
|
}
|
1269
1552
|
}
|
1270
|
-
},
|
1553
|
+
}, x = {
|
1271
1554
|
name: "PRESET_BARS_THIN",
|
1272
1555
|
description: "Thin bars",
|
1273
1556
|
descriptionZh: "細長條圖",
|
@@ -1325,7 +1608,7 @@ const h = {
|
|
1325
1608
|
padding: 14
|
1326
1609
|
}
|
1327
1610
|
}
|
1328
|
-
},
|
1611
|
+
}, O = {
|
1329
1612
|
name: "PRESET_GRID_BASIC",
|
1330
1613
|
description: "Basic Grid",
|
1331
1614
|
descriptionZh: "基本Grid",
|
@@ -1373,7 +1656,7 @@ const h = {
|
|
1373
1656
|
padding: 14
|
1374
1657
|
}
|
1375
1658
|
}
|
1376
|
-
},
|
1659
|
+
}, k = {
|
1377
1660
|
name: "PRESET_GRID_HORIZONTAL",
|
1378
1661
|
description: "Horizontal Grid",
|
1379
1662
|
descriptionZh: "橫向圖",
|
@@ -1430,7 +1713,7 @@ const h = {
|
|
1430
1713
|
padding: 14
|
1431
1714
|
}
|
1432
1715
|
}
|
1433
|
-
},
|
1716
|
+
}, N = {
|
1434
1717
|
name: "PRESET_GRID_PN_SCALE_SIMPLE",
|
1435
1718
|
description: "Simple positive negative scale",
|
1436
1719
|
descriptionZh: "簡單正負值分向圖",
|
@@ -1484,7 +1767,7 @@ const h = {
|
|
1484
1767
|
padding: 7
|
1485
1768
|
}
|
1486
1769
|
}
|
1487
|
-
},
|
1770
|
+
}, v = {
|
1488
1771
|
name: "PRESET_GRID_PN_SCALE",
|
1489
1772
|
description: "Positive negative scale",
|
1490
1773
|
descriptionZh: "正負值分向圖",
|
@@ -1538,7 +1821,7 @@ const h = {
|
|
1538
1821
|
padding: 14
|
1539
1822
|
}
|
1540
1823
|
}
|
1541
|
-
},
|
1824
|
+
}, U = {
|
1542
1825
|
name: "PRESET_GRID_ROTATE_AXIS_LABEL",
|
1543
1826
|
description: "Rotate axis label",
|
1544
1827
|
descriptionZh: "傾斜標籤",
|
@@ -1594,7 +1877,7 @@ const h = {
|
|
1594
1877
|
padding: 14
|
1595
1878
|
}
|
1596
1879
|
}
|
1597
|
-
},
|
1880
|
+
}, Z = {
|
1598
1881
|
name: "PRESET_GRID_SEPARATE_SERIES",
|
1599
1882
|
description: "Separate Series",
|
1600
1883
|
descriptionZh: "分開顯示Series",
|
@@ -1656,7 +1939,7 @@ const h = {
|
|
1656
1939
|
padding: 14
|
1657
1940
|
}
|
1658
1941
|
}
|
1659
|
-
},
|
1942
|
+
}, f = {
|
1660
1943
|
name: "PRESET_GRID_SIMPLE",
|
1661
1944
|
description: "Simple Grid",
|
1662
1945
|
descriptionZh: "簡單Grid",
|
@@ -1709,7 +1992,7 @@ const h = {
|
|
1709
1992
|
padding: 7
|
1710
1993
|
}
|
1711
1994
|
}
|
1712
|
-
},
|
1995
|
+
}, V = {
|
1713
1996
|
name: "PRESET_LINE_AREAS_BASIC",
|
1714
1997
|
description: "Basic LineArea",
|
1715
1998
|
descriptionZh: "基本折線區域圖",
|
@@ -1771,7 +2054,7 @@ const h = {
|
|
1771
2054
|
listRectHeight: 2
|
1772
2055
|
}
|
1773
2056
|
}
|
1774
|
-
},
|
2057
|
+
}, H = {
|
1775
2058
|
name: "PRESET_LINE_AREAS_CURVE",
|
1776
2059
|
description: "Curve LineArea",
|
1777
2060
|
descriptionZh: "弧線的折線區域圖",
|
@@ -1838,7 +2121,7 @@ const h = {
|
|
1838
2121
|
listRectHeight: 2
|
1839
2122
|
}
|
1840
2123
|
}
|
1841
|
-
},
|
2124
|
+
}, w = {
|
1842
2125
|
name: "PRESET_LINE_AREAS_HORIZONTAL",
|
1843
2126
|
description: "Horizontal LineArea",
|
1844
2127
|
descriptionZh: "橫向折線區域圖",
|
@@ -1903,7 +2186,7 @@ const h = {
|
|
1903
2186
|
listRectHeight: 2
|
1904
2187
|
}
|
1905
2188
|
}
|
1906
|
-
},
|
2189
|
+
}, y = {
|
1907
2190
|
name: "PRESET_LINE_AREAS_LOOSE_TICKS",
|
1908
2191
|
description: "Loose Ticks LineArea",
|
1909
2192
|
descriptionZh: "寬鬆標籤的折線區域圖",
|
@@ -1967,7 +2250,7 @@ const h = {
|
|
1967
2250
|
listRectHeight: 2
|
1968
2251
|
}
|
1969
2252
|
}
|
1970
|
-
},
|
2253
|
+
}, Y = {
|
1971
2254
|
name: "PRESET_LINE_AREAS_ROTATE_AXIS_LABEL",
|
1972
2255
|
description: "Rotate Axis Label LineArea",
|
1973
2256
|
descriptionZh: "傾斜標籤的折線區域圖",
|
@@ -2033,7 +2316,7 @@ const h = {
|
|
2033
2316
|
listRectHeight: 2
|
2034
2317
|
}
|
2035
2318
|
}
|
2036
|
-
},
|
2319
|
+
}, W = {
|
2037
2320
|
name: "PRESET_LINE_AREAS_SEPARATE_SERIES",
|
2038
2321
|
description: "Separate Series LineArea",
|
2039
2322
|
descriptionZh: "分開顯示Series的折線區域圖",
|
@@ -2104,7 +2387,7 @@ const h = {
|
|
2104
2387
|
listRectHeight: 2
|
2105
2388
|
}
|
2106
2389
|
}
|
2107
|
-
},
|
2390
|
+
}, X = {
|
2108
2391
|
name: "PRESET_LINE_AREAS_SIMPLE",
|
2109
2392
|
description: "Simple LineArea",
|
2110
2393
|
descriptionZh: "簡單折線區域圖",
|
@@ -2170,7 +2453,7 @@ const h = {
|
|
2170
2453
|
listRectHeight: 2
|
2171
2454
|
}
|
2172
2455
|
}
|
2173
|
-
},
|
2456
|
+
}, z = {
|
2174
2457
|
name: "PRESET_LINES_BASIC",
|
2175
2458
|
description: "Basic Line",
|
2176
2459
|
descriptionZh: "基本折線圖",
|
@@ -2225,7 +2508,7 @@ const h = {
|
|
2225
2508
|
listRectHeight: 2
|
2226
2509
|
}
|
2227
2510
|
}
|
2228
|
-
},
|
2511
|
+
}, K = {
|
2229
2512
|
name: "PRESET_LINES_CURVE",
|
2230
2513
|
description: "Curve Line",
|
2231
2514
|
descriptionZh: "弧線折線圖",
|
@@ -2283,7 +2566,7 @@ const h = {
|
|
2283
2566
|
listRectHeight: 2
|
2284
2567
|
}
|
2285
2568
|
}
|
2286
|
-
},
|
2569
|
+
}, j = {
|
2287
2570
|
name: "PRESET_LINES_HORIZONTAL",
|
2288
2571
|
description: "Horizontal Line",
|
2289
2572
|
descriptionZh: "橫向折線圖",
|
@@ -2346,7 +2629,7 @@ const h = {
|
|
2346
2629
|
listRectHeight: 2
|
2347
2630
|
}
|
2348
2631
|
}
|
2349
|
-
},
|
2632
|
+
}, q = {
|
2350
2633
|
name: "PRESET_LINES_LOOSE_TICKS",
|
2351
2634
|
description: "Loose Ticks Line",
|
2352
2635
|
descriptionZh: "寬鬆標籤的折線圖",
|
@@ -2403,7 +2686,7 @@ const h = {
|
|
2403
2686
|
listRectHeight: 2
|
2404
2687
|
}
|
2405
2688
|
}
|
2406
|
-
},
|
2689
|
+
}, J = {
|
2407
2690
|
name: "PRESET_LINES_ROTATE_AXIS_LABEL",
|
2408
2691
|
description: "Line chart with slanted labels",
|
2409
2692
|
descriptionZh: "傾斜標籤的折線圖",
|
@@ -2463,7 +2746,7 @@ const h = {
|
|
2463
2746
|
listRectHeight: 2
|
2464
2747
|
}
|
2465
2748
|
}
|
2466
|
-
},
|
2749
|
+
}, Q = {
|
2467
2750
|
name: "PRESET_LINES_SIMPLE",
|
2468
2751
|
description: "Simple line",
|
2469
2752
|
descriptionZh: "簡單折線圖",
|
@@ -2523,7 +2806,7 @@ const h = {
|
|
2523
2806
|
listRectHeight: 2
|
2524
2807
|
}
|
2525
2808
|
}
|
2526
|
-
},
|
2809
|
+
}, $ = {
|
2527
2810
|
name: "PRESET_LINES_WITH_SOLID_DOTS",
|
2528
2811
|
description: "Solid Dots Line",
|
2529
2812
|
descriptionZh: "實心圓點的折線圖",
|
@@ -2582,7 +2865,7 @@ const h = {
|
|
2582
2865
|
listRectHeight: 2
|
2583
2866
|
}
|
2584
2867
|
}
|
2585
|
-
},
|
2868
|
+
}, tt = {
|
2586
2869
|
name: "PRESET_MULTI_GRID_BASIC",
|
2587
2870
|
description: "Basic MultiGrid",
|
2588
2871
|
descriptionZh: "基本MultiGrid",
|
@@ -2637,7 +2920,7 @@ const h = {
|
|
2637
2920
|
]
|
2638
2921
|
}
|
2639
2922
|
}
|
2640
|
-
},
|
2923
|
+
}, at = {
|
2641
2924
|
name: "PRESET_MULTI_GRID_DIVERGING_SIMPLE",
|
2642
2925
|
description: "Simple diverging Grid",
|
2643
2926
|
descriptionZh: "簡單雙向Grid",
|
@@ -2746,7 +3029,7 @@ const h = {
|
|
2746
3029
|
padding: 7
|
2747
3030
|
}
|
2748
3031
|
}
|
2749
|
-
},
|
3032
|
+
}, et = {
|
2750
3033
|
name: "PRESET_MULTI_GRID_DIVERGING",
|
2751
3034
|
description: "Diverging Grid",
|
2752
3035
|
descriptionZh: "雙向Grid",
|
@@ -2852,7 +3135,7 @@ const h = {
|
|
2852
3135
|
padding: 14
|
2853
3136
|
}
|
2854
3137
|
}
|
2855
|
-
},
|
3138
|
+
}, it = {
|
2856
3139
|
name: "PRESET_MULTI_GRID_ROUND_STYLE_SIMPLE",
|
2857
3140
|
description: "Simple MultiGrid with round style",
|
2858
3141
|
descriptionZh: "簡單MultiGrid圓弧風格",
|
@@ -2903,7 +3186,11 @@ const h = {
|
|
2903
3186
|
scaleRange: [0, 0.95]
|
2904
3187
|
}
|
2905
3188
|
}
|
2906
|
-
]
|
3189
|
+
],
|
3190
|
+
container: {
|
3191
|
+
columnGap: 40,
|
3192
|
+
rowGap: 60
|
3193
|
+
}
|
2907
3194
|
},
|
2908
3195
|
pluginParams: {
|
2909
3196
|
MultiBars: {
|
@@ -2937,7 +3224,7 @@ const h = {
|
|
2937
3224
|
OverlappingValueAxes: {},
|
2938
3225
|
OverlappingStackedValueAxes: {}
|
2939
3226
|
}
|
2940
|
-
},
|
3227
|
+
}, Ft = {
|
2941
3228
|
name: "PRESET_MULTI_GRID_ROUND_STYLE",
|
2942
3229
|
description: "MultiGrid with round style",
|
2943
3230
|
descriptionZh: "MultiGrid圓弧風格",
|
@@ -3012,7 +3299,7 @@ const h = {
|
|
3012
3299
|
OverlappingValueAxes: {},
|
3013
3300
|
OverlappingStackedValueAxes: {}
|
3014
3301
|
}
|
3015
|
-
},
|
3302
|
+
}, rt = {
|
3016
3303
|
name: "PRESET_MULTI_GRID_SEPARATE_GRID_SIMPLE",
|
3017
3304
|
description: "Simple separate grid",
|
3018
3305
|
descriptionZh: "簡單的分開顯示Grid圖表",
|
@@ -3103,7 +3390,7 @@ const h = {
|
|
3103
3390
|
padding: 7
|
3104
3391
|
}
|
3105
3392
|
}
|
3106
|
-
},
|
3393
|
+
}, lt = {
|
3107
3394
|
name: "PRESET_MULTI_GRID_SEPARATE_GRID",
|
3108
3395
|
description: "Separate Grid",
|
3109
3396
|
descriptionZh: "分開顯示Grid圖表",
|
@@ -3186,7 +3473,7 @@ const h = {
|
|
3186
3473
|
padding: 14
|
3187
3474
|
}
|
3188
3475
|
}
|
3189
|
-
},
|
3476
|
+
}, st = {
|
3190
3477
|
name: "PRESET_MULTI_GRID_SIMPLE",
|
3191
3478
|
description: "Simple MultiGrid",
|
3192
3479
|
descriptionZh: "簡單MultiGrid",
|
@@ -3251,7 +3538,7 @@ const h = {
|
|
3251
3538
|
]
|
3252
3539
|
}
|
3253
3540
|
}
|
3254
|
-
},
|
3541
|
+
}, ot = {
|
3255
3542
|
name: "PRESET_MULTI_LINE_AREAS_SEPARATE_GRID_SIMPLE",
|
3256
3543
|
description: "Simple separate grid line areas",
|
3257
3544
|
descriptionZh: "簡單的分開顯示Grid的折線區域圖",
|
@@ -3373,7 +3660,7 @@ const h = {
|
|
3373
3660
|
]
|
3374
3661
|
}
|
3375
3662
|
}
|
3376
|
-
},
|
3663
|
+
}, nt = {
|
3377
3664
|
name: "PRESET_MULTI_LINE_AREAS_SEPARATE_GRID",
|
3378
3665
|
description: "Separate Grid line areas",
|
3379
3666
|
descriptionZh: "分開顯示Grid的折線區域圖",
|
@@ -3498,7 +3785,7 @@ const h = {
|
|
3498
3785
|
]
|
3499
3786
|
}
|
3500
3787
|
}
|
3501
|
-
},
|
3788
|
+
}, Bt = {
|
3502
3789
|
name: "PRESET_MULTI_LINES_SEPARATE_GRID_SIMPLE",
|
3503
3790
|
description: "Simple separate grid line",
|
3504
3791
|
descriptionZh: "簡單的分開顯示Grid的折線圖",
|
@@ -3551,8 +3838,8 @@ const h = {
|
|
3551
3838
|
],
|
3552
3839
|
separateGrid: !0,
|
3553
3840
|
container: {
|
3554
|
-
columnGap:
|
3555
|
-
rowGap:
|
3841
|
+
columnGap: 40,
|
3842
|
+
rowGap: 60
|
3556
3843
|
}
|
3557
3844
|
},
|
3558
3845
|
pluginParams: {
|
@@ -3615,7 +3902,7 @@ const h = {
|
|
3615
3902
|
]
|
3616
3903
|
}
|
3617
3904
|
}
|
3618
|
-
},
|
3905
|
+
}, dt = {
|
3619
3906
|
name: "PRESET_MULTI_LINES_SEPARATE_GRID",
|
3620
3907
|
description: "Separate Grid line",
|
3621
3908
|
descriptionZh: "分開顯示Grid的折線圖",
|
@@ -3726,7 +4013,7 @@ const h = {
|
|
3726
4013
|
]
|
3727
4014
|
}
|
3728
4015
|
}
|
3729
|
-
},
|
4016
|
+
}, Et = {
|
3730
4017
|
name: "PRESET_MULTI_VALUE_BASIC",
|
3731
4018
|
description: "Basic MultiValue",
|
3732
4019
|
descriptionZh: "基本MultiValue參數",
|
@@ -3774,7 +4061,7 @@ const h = {
|
|
3774
4061
|
padding: 14
|
3775
4062
|
}
|
3776
4063
|
}
|
3777
|
-
},
|
4064
|
+
}, Ct = {
|
3778
4065
|
name: "PRESET_MULTI_VALUE_SEPARATE_CATEGORY",
|
3779
4066
|
description: "MultiValue separate category",
|
3780
4067
|
descriptionZh: "MultiValue 分開顯示category",
|
@@ -3837,7 +4124,7 @@ const h = {
|
|
3837
4124
|
padding: 14
|
3838
4125
|
}
|
3839
4126
|
}
|
3840
|
-
},
|
4127
|
+
}, At = {
|
3841
4128
|
name: "PRESET_MULTI_VALUE_SIMPLE",
|
3842
4129
|
description: "Simple MultiValue",
|
3843
4130
|
descriptionZh: "簡單MultiValue參數",
|
@@ -3885,7 +4172,7 @@ const h = {
|
|
3885
4172
|
padding: 7
|
3886
4173
|
}
|
3887
4174
|
}
|
3888
|
-
},
|
4175
|
+
}, Dt = {
|
3889
4176
|
name: "PRESET_ORDINAL_BUBBLES_ALL_ITEMS",
|
3890
4177
|
description: "Ordinal bubbles with all items",
|
3891
4178
|
descriptionZh: "顯示全部項目的序數泡泡圖",
|
@@ -3938,7 +4225,7 @@ const h = {
|
|
3938
4225
|
// 圓型圖例列點
|
3939
4226
|
}
|
3940
4227
|
}
|
3941
|
-
},
|
4228
|
+
}, ct = {
|
3942
4229
|
name: "PRESET_ORDINAL_BUBBLES_BASIC",
|
3943
4230
|
description: "Basic ordinal bubbles",
|
3944
4231
|
descriptionZh: "序數泡泡圖",
|
@@ -3989,7 +4276,7 @@ const h = {
|
|
3989
4276
|
// 圓型圖例列點
|
3990
4277
|
}
|
3991
4278
|
}
|
3992
|
-
},
|
4279
|
+
}, gt = {
|
3993
4280
|
name: "PRESET_ORDINAL_BUBBLES_LINEAR_OPACITY",
|
3994
4281
|
description: "Ordinal bubbles with linear opacity",
|
3995
4282
|
descriptionZh: "漸變透明度的序數泡泡圖",
|
@@ -4044,7 +4331,7 @@ const h = {
|
|
4044
4331
|
// 圓型圖例列點
|
4045
4332
|
}
|
4046
4333
|
}
|
4047
|
-
},
|
4334
|
+
}, pt = {
|
4048
4335
|
name: "PRESET_ORDINAL_BUBBLES_SCALING_BY_RADIUS",
|
4049
4336
|
description: "Ordinal bubbles with radius scaling",
|
4050
4337
|
descriptionZh: "以半徑尺寸為比例的序數泡泡圖",
|
@@ -4099,7 +4386,7 @@ const h = {
|
|
4099
4386
|
// 圓型圖例列點
|
4100
4387
|
}
|
4101
4388
|
}
|
4102
|
-
},
|
4389
|
+
}, St = {
|
4103
4390
|
name: "PRESET_ORDINAL_BUBBLES_SEPARATE_CATEGORY",
|
4104
4391
|
description: "Ordinal bubbles with separate category",
|
4105
4392
|
descriptionZh: "分開顯示category的序數泡泡圖",
|
@@ -4160,7 +4447,7 @@ const h = {
|
|
4160
4447
|
// 圓型圖例列點
|
4161
4448
|
}
|
4162
4449
|
}
|
4163
|
-
},
|
4450
|
+
}, ut = {
|
4164
4451
|
name: "PRESET_ORDINAL_BUBBLES_SIMPLE",
|
4165
4452
|
description: "Simple ordinal bubbles",
|
4166
4453
|
descriptionZh: "簡單的序數泡泡圖",
|
@@ -4214,7 +4501,7 @@ const h = {
|
|
4214
4501
|
// 圓型圖例列點
|
4215
4502
|
}
|
4216
4503
|
}
|
4217
|
-
},
|
4504
|
+
}, Rt = {
|
4218
4505
|
name: "PRESET_RACING_BARS_ALL_ITEMS",
|
4219
4506
|
description: "Racing bars for all items",
|
4220
4507
|
descriptionZh: "顯示全部項目的賽跑長條圖",
|
@@ -4267,7 +4554,7 @@ const h = {
|
|
4267
4554
|
padding: 14
|
4268
4555
|
}
|
4269
4556
|
}
|
4270
|
-
},
|
4557
|
+
}, _t = {
|
4271
4558
|
name: "PRESET_RACING_BARS_BASIC",
|
4272
4559
|
description: "Basic racing bars",
|
4273
4560
|
descriptionZh: "基本賽跑長條圖",
|
@@ -4319,7 +4606,7 @@ const h = {
|
|
4319
4606
|
padding: 14
|
4320
4607
|
}
|
4321
4608
|
}
|
4322
|
-
},
|
4609
|
+
}, mt = {
|
4323
4610
|
name: "PRESET_RACING_BARS_FAST",
|
4324
4611
|
description: "Fast racing bars",
|
4325
4612
|
descriptionZh: "快速的賽跑長條圖",
|
@@ -4371,7 +4658,7 @@ const h = {
|
|
4371
4658
|
padding: 14
|
4372
4659
|
}
|
4373
4660
|
}
|
4374
|
-
},
|
4661
|
+
}, bt = {
|
4375
4662
|
name: "PRESET_RACING_BARS_FASTER",
|
4376
4663
|
description: "Faster racing bars",
|
4377
4664
|
descriptionZh: "更快速的賽跑長條圖",
|
@@ -4423,7 +4710,7 @@ const h = {
|
|
4423
4710
|
padding: 14
|
4424
4711
|
}
|
4425
4712
|
}
|
4426
|
-
},
|
4713
|
+
}, ht = {
|
4427
4714
|
name: "PRESET_RACING_BARS_LOOP",
|
4428
4715
|
description: "Looping racing bars",
|
4429
4716
|
descriptionZh: "循環的賽跑長條圖",
|
@@ -4476,7 +4763,7 @@ const h = {
|
|
4476
4763
|
padding: 14
|
4477
4764
|
}
|
4478
4765
|
}
|
4479
|
-
},
|
4766
|
+
}, Pt = {
|
4480
4767
|
name: "PRESET_RACING_BARS_OUTSIDE_LABELS",
|
4481
4768
|
description: "Racing bars with labels outside",
|
4482
4769
|
descriptionZh: "標籤在外面的賽跑長條圖",
|
@@ -4532,7 +4819,7 @@ const h = {
|
|
4532
4819
|
padding: 14
|
4533
4820
|
}
|
4534
4821
|
}
|
4535
|
-
},
|
4822
|
+
}, Tt = {
|
4536
4823
|
name: "PRESET_RACING_BARS_SEPARATE_CATEGORY",
|
4537
4824
|
description: "Racing bars with separate category",
|
4538
4825
|
descriptionZh: "分開顯示category的賽跑長條圖",
|
@@ -4601,7 +4888,7 @@ const h = {
|
|
4601
4888
|
padding: 14
|
4602
4889
|
}
|
4603
4890
|
}
|
4604
|
-
},
|
4891
|
+
}, Lt = {
|
4605
4892
|
name: "PRESET_RACING_BARS_SIMPLE",
|
4606
4893
|
description: "Simple racing bars",
|
4607
4894
|
descriptionZh: "簡單賽跑長條圖",
|
@@ -4653,7 +4940,7 @@ const h = {
|
|
4653
4940
|
padding: 7
|
4654
4941
|
}
|
4655
4942
|
}
|
4656
|
-
},
|
4943
|
+
}, It = {
|
4657
4944
|
name: "PRESET_RACING_BARS_STOP",
|
4658
4945
|
description: "Stopped racing bars",
|
4659
4946
|
descriptionZh: "停止的賽跑長條圖",
|
@@ -4704,7 +4991,7 @@ const h = {
|
|
4704
4991
|
padding: 14
|
4705
4992
|
}
|
4706
4993
|
}
|
4707
|
-
},
|
4994
|
+
}, Mt = {
|
4708
4995
|
name: "PRESET_SCATTER_BASIC",
|
4709
4996
|
description: "Basic scatter",
|
4710
4997
|
descriptionZh: "基本散布圖",
|
@@ -4754,7 +5041,7 @@ const h = {
|
|
4754
5041
|
// 圓型圖例列點
|
4755
5042
|
}
|
4756
5043
|
}
|
4757
|
-
},
|
5044
|
+
}, Gt = {
|
4758
5045
|
name: "PRESET_SCATTER_BUBBLES_BASIC",
|
4759
5046
|
description: "Basic scatter bubbles",
|
4760
5047
|
descriptionZh: "基本的散布泡泡圖",
|
@@ -4804,7 +5091,7 @@ const h = {
|
|
4804
5091
|
// 圓型圖例列點
|
4805
5092
|
}
|
4806
5093
|
}
|
4807
|
-
},
|
5094
|
+
}, xt = {
|
4808
5095
|
name: "PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS",
|
4809
5096
|
description: "Scatter bubbles with radius scaling",
|
4810
5097
|
descriptionZh: "以半徑尺寸為比例的散布泡泡圖",
|
@@ -4857,7 +5144,7 @@ const h = {
|
|
4857
5144
|
arcScaleType: "radius"
|
4858
5145
|
}
|
4859
5146
|
}
|
4860
|
-
},
|
5147
|
+
}, Ot = {
|
4861
5148
|
name: "PRESET_SCATTER_BUBBLES_LINEAR_OPACITY",
|
4862
5149
|
description: "Scatter bubbles with linear opacity",
|
4863
5150
|
descriptionZh: "以資料量漸變透明度的散布泡泡圖",
|
@@ -4910,7 +5197,7 @@ const h = {
|
|
4910
5197
|
valueLinearOpacity: [0.5, 1]
|
4911
5198
|
}
|
4912
5199
|
}
|
4913
|
-
},
|
5200
|
+
}, kt = {
|
4914
5201
|
name: "PRESET_SCATTER_BUBBLES_SEPARATE_CATEGORY",
|
4915
5202
|
description: "Scatter bubbles with separate category",
|
4916
5203
|
descriptionZh: "分開顯示category的散布泡泡圖",
|
@@ -4967,7 +5254,7 @@ const h = {
|
|
4967
5254
|
// 圓型圖例列點
|
4968
5255
|
}
|
4969
5256
|
}
|
4970
|
-
},
|
5257
|
+
}, Nt = {
|
4971
5258
|
name: "PRESET_SCATTER_BUBBLES_SIMPLE",
|
4972
5259
|
description: "Simple scatter bubbles",
|
4973
5260
|
descriptionZh: "簡單的散布泡泡圖",
|
@@ -5017,7 +5304,7 @@ const h = {
|
|
5017
5304
|
// 圓型圖例列點
|
5018
5305
|
}
|
5019
5306
|
}
|
5020
|
-
},
|
5307
|
+
}, vt = {
|
5021
5308
|
name: "PRESET_SCATTER_SEPARATE_CATEGORY",
|
5022
5309
|
description: "Scatter with separate category",
|
5023
5310
|
descriptionZh: "分開顯示category的散布圖",
|
@@ -5082,7 +5369,7 @@ const h = {
|
|
5082
5369
|
// 圓型圖例列點
|
5083
5370
|
}
|
5084
5371
|
}
|
5085
|
-
},
|
5372
|
+
}, Ut = {
|
5086
5373
|
name: "PRESET_SCATTER_SIMPLE",
|
5087
5374
|
description: "Simple scatter",
|
5088
5375
|
descriptionZh: "簡單散布圖",
|
@@ -5132,7 +5419,7 @@ const h = {
|
|
5132
5419
|
// 圓型圖例列點
|
5133
5420
|
}
|
5134
5421
|
}
|
5135
|
-
},
|
5422
|
+
}, Zt = {
|
5136
5423
|
name: "PRESET_FORCE_DIRECTED_BASIC",
|
5137
5424
|
description: "Basic force directed chart",
|
5138
5425
|
descriptionZh: "基本力導向圖",
|
@@ -5175,7 +5462,7 @@ const h = {
|
|
5175
5462
|
// 圓型圖例列點
|
5176
5463
|
}
|
5177
5464
|
}
|
5178
|
-
},
|
5465
|
+
}, ft = {
|
5179
5466
|
name: "PRESET_FORCE_DIRECTED_BUBBLES_BASIC",
|
5180
5467
|
description: "Basic force directed bubbles chart",
|
5181
5468
|
descriptionZh: "基本力導向泡泡圖",
|
@@ -5218,7 +5505,7 @@ const h = {
|
|
5218
5505
|
// 圓型圖例列點
|
5219
5506
|
}
|
5220
5507
|
}
|
5221
|
-
},
|
5508
|
+
}, Vt = {
|
5222
5509
|
name: "PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH",
|
5223
5510
|
description: "Force-directed bubble chart with fixed arrow width",
|
5224
5511
|
descriptionZh: "固定箭頭寬度的力導向泡泡圖",
|
@@ -5266,7 +5553,7 @@ const h = {
|
|
5266
5553
|
// 圓型圖例列點
|
5267
5554
|
}
|
5268
5555
|
}
|
5269
|
-
},
|
5556
|
+
}, Ht = {
|
5270
5557
|
name: "PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW",
|
5271
5558
|
description: "Force-directed bubble chart without arrows",
|
5272
5559
|
descriptionZh: "沒有箭頭的力導向泡泡圖",
|
@@ -5314,7 +5601,7 @@ const h = {
|
|
5314
5601
|
// 圓型圖例列點
|
5315
5602
|
}
|
5316
5603
|
}
|
5317
|
-
},
|
5604
|
+
}, wt = {
|
5318
5605
|
name: "PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM",
|
5319
5606
|
description: "Force Directed bubbles chart without mouse drag and zoom control",
|
5320
5607
|
descriptionZh: "無滑鼠托曳及縮放控制的力導向泡泡圖",
|
@@ -5359,7 +5646,7 @@ const h = {
|
|
5359
5646
|
// 圓型圖例列點
|
5360
5647
|
}
|
5361
5648
|
}
|
5362
|
-
},
|
5649
|
+
}, yt = {
|
5363
5650
|
name: "PRESET_FORCE_DIRECTED_BUBBLES_SIMPLE",
|
5364
5651
|
description: "Simple force directed bubbles chart",
|
5365
5652
|
descriptionZh: "簡單力導向泡泡圖",
|
@@ -5403,7 +5690,7 @@ const h = {
|
|
5403
5690
|
padding: 7
|
5404
5691
|
}
|
5405
5692
|
}
|
5406
|
-
},
|
5693
|
+
}, Yt = {
|
5407
5694
|
name: "PRESET_FORCE_DIRECTED_NONE_ZOOM",
|
5408
5695
|
description: "Force directed chart without mouse drag and zoom control",
|
5409
5696
|
descriptionZh: "無滑鼠托曳及縮放控制的力導向圖",
|
@@ -5448,7 +5735,7 @@ const h = {
|
|
5448
5735
|
// 圓型圖例列點
|
5449
5736
|
}
|
5450
5737
|
}
|
5451
|
-
},
|
5738
|
+
}, Wt = {
|
5452
5739
|
name: "PRESET_FORCE_DIRECTED_FIX_FONT_SIZE",
|
5453
5740
|
description: "Force directed chart with fixed font size",
|
5454
5741
|
descriptionZh: "固定字體大小的力導向圖",
|
@@ -5498,7 +5785,7 @@ const h = {
|
|
5498
5785
|
// 圓型圖例列點
|
5499
5786
|
}
|
5500
5787
|
}
|
5501
|
-
},
|
5788
|
+
}, Xt = {
|
5502
5789
|
name: "PRESET_FORCE_DIRECTED_NONE_ARROW",
|
5503
5790
|
description: "Force directed chart without arrows",
|
5504
5791
|
descriptionZh: "沒有箭頭的力導向圖",
|
@@ -5546,7 +5833,7 @@ const h = {
|
|
5546
5833
|
// 圓型圖例列點
|
5547
5834
|
}
|
5548
5835
|
}
|
5549
|
-
},
|
5836
|
+
}, zt = {
|
5550
5837
|
name: "PRESET_FORCE_DIRECTED_SIMPLE",
|
5551
5838
|
description: "Simple force directed chart",
|
5552
5839
|
descriptionZh: "簡單力導向圖",
|
@@ -5590,7 +5877,7 @@ const h = {
|
|
5590
5877
|
padding: 7
|
5591
5878
|
}
|
5592
5879
|
}
|
5593
|
-
},
|
5880
|
+
}, Kt = {
|
5594
5881
|
name: "PRESET_TREE_MAP_BASIC",
|
5595
5882
|
description: "Basic tree map",
|
5596
5883
|
descriptionZh: "基本樹狀矩形圖",
|
@@ -5639,7 +5926,7 @@ const h = {
|
|
5639
5926
|
padding: 14
|
5640
5927
|
}
|
5641
5928
|
}
|
5642
|
-
},
|
5929
|
+
}, jt = {
|
5643
5930
|
name: "PRESET_TREE_MAP_SIMPLE",
|
5644
5931
|
description: "Simple tree map",
|
5645
5932
|
descriptionZh: "簡單樹狀矩形圖",
|
@@ -5690,101 +5977,106 @@ const h = {
|
|
5690
5977
|
}
|
5691
5978
|
};
|
5692
5979
|
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
|
-
|
5980
|
+
I as PRESET_BARS_HORIZONTAL_AND_ROUND,
|
5981
|
+
M as PRESET_BARS_HORIZONTAL_AND_THIN,
|
5982
|
+
G as PRESET_BARS_ROUND,
|
5983
|
+
x as PRESET_BARS_THIN,
|
5984
|
+
_ as PRESET_BUBBLES_BASIC,
|
5985
|
+
m as PRESET_BUBBLES_SCALING_BY_RADIUS,
|
5986
|
+
P as PRESET_BUBBLES_SEPARATE_ALL,
|
5987
|
+
h as PRESET_BUBBLES_SEPARATE_LABEL,
|
5988
|
+
b as PRESET_BUBBLES_SEPARATE_SERIES,
|
5989
|
+
T as PRESET_BUBBLES_SIMPLE,
|
5990
|
+
F as PRESET_BUBBLES_SUM_SERIES,
|
5991
|
+
Zt as PRESET_FORCE_DIRECTED_BASIC,
|
5992
|
+
ft as PRESET_FORCE_DIRECTED_BUBBLES_BASIC,
|
5993
|
+
Vt as PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH,
|
5994
|
+
Ht as PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW,
|
5995
|
+
wt as PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM,
|
5996
|
+
yt as PRESET_FORCE_DIRECTED_BUBBLES_SIMPLE,
|
5997
|
+
Wt as PRESET_FORCE_DIRECTED_FIX_FONT_SIZE,
|
5998
|
+
Xt as PRESET_FORCE_DIRECTED_NONE_ARROW,
|
5999
|
+
Yt as PRESET_FORCE_DIRECTED_NONE_ZOOM,
|
6000
|
+
zt as PRESET_FORCE_DIRECTED_SIMPLE,
|
6001
|
+
O as PRESET_GRID_BASIC,
|
6002
|
+
k as PRESET_GRID_HORIZONTAL,
|
6003
|
+
v as PRESET_GRID_PN_SCALE,
|
6004
|
+
N as PRESET_GRID_PN_SCALE_SIMPLE,
|
6005
|
+
U as PRESET_GRID_ROTATE_AXIS_LABEL,
|
6006
|
+
Z as PRESET_GRID_SEPARATE_SERIES,
|
6007
|
+
f as PRESET_GRID_SIMPLE,
|
6008
|
+
z as PRESET_LINES_BASIC,
|
6009
|
+
K as PRESET_LINES_CURVE,
|
6010
|
+
j as PRESET_LINES_HORIZONTAL,
|
6011
|
+
q as PRESET_LINES_LOOSE_TICKS,
|
6012
|
+
J as PRESET_LINES_ROTATE_AXIS_LABEL,
|
6013
|
+
Q as PRESET_LINES_SIMPLE,
|
6014
|
+
$ as PRESET_LINES_WITH_SOLID_DOTS,
|
6015
|
+
V as PRESET_LINE_AREAS_BASIC,
|
6016
|
+
H as PRESET_LINE_AREAS_CURVE,
|
6017
|
+
w as PRESET_LINE_AREAS_HORIZONTAL,
|
6018
|
+
y as PRESET_LINE_AREAS_LOOSE_TICKS,
|
6019
|
+
Y as PRESET_LINE_AREAS_ROTATE_AXIS_LABEL,
|
6020
|
+
W as PRESET_LINE_AREAS_SEPARATE_SERIES,
|
6021
|
+
X as PRESET_LINE_AREAS_SIMPLE,
|
6022
|
+
tt as PRESET_MULTI_GRID_BASIC,
|
6023
|
+
et as PRESET_MULTI_GRID_DIVERGING,
|
6024
|
+
at as PRESET_MULTI_GRID_DIVERGING_SIMPLE,
|
6025
|
+
Ft as PRESET_MULTI_GRID_ROUND_STYLE,
|
6026
|
+
it as PRESET_MULTI_GRID_ROUND_STYLE_SIMPLE,
|
6027
|
+
lt as PRESET_MULTI_GRID_SEPARATE_GRID,
|
6028
|
+
rt as PRESET_MULTI_GRID_SEPARATE_GRID_SIMPLE,
|
6029
|
+
st as PRESET_MULTI_GRID_SIMPLE,
|
6030
|
+
dt as PRESET_MULTI_LINES_SEPARATE_GRID,
|
6031
|
+
Bt as PRESET_MULTI_LINES_SEPARATE_GRID_SIMPLE,
|
6032
|
+
nt as PRESET_MULTI_LINE_AREAS_SEPARATE_GRID,
|
6033
|
+
ot as PRESET_MULTI_LINE_AREAS_SEPARATE_GRID_SIMPLE,
|
6034
|
+
Et as PRESET_MULTI_VALUE_BASIC,
|
6035
|
+
Ct as PRESET_MULTI_VALUE_SEPARATE_CATEGORY,
|
6036
|
+
At as PRESET_MULTI_VALUE_SIMPLE,
|
6037
|
+
Dt as PRESET_ORDINAL_BUBBLES_ALL_ITEMS,
|
6038
|
+
ct as PRESET_ORDINAL_BUBBLES_BASIC,
|
6039
|
+
gt as PRESET_ORDINAL_BUBBLES_LINEAR_OPACITY,
|
6040
|
+
pt as PRESET_ORDINAL_BUBBLES_SCALING_BY_RADIUS,
|
6041
|
+
St as PRESET_ORDINAL_BUBBLES_SEPARATE_CATEGORY,
|
6042
|
+
ut as PRESET_ORDINAL_BUBBLES_SIMPLE,
|
6043
|
+
r as PRESET_PIE_BASIC,
|
6044
|
+
l as PRESET_PIE_DONUT,
|
6045
|
+
s as PRESET_PIE_HALF_DONUT,
|
6046
|
+
e as PRESET_PIE_SEPARATE_LABEL,
|
6047
|
+
n as PRESET_PIE_SEPARATE_SERIES,
|
6048
|
+
B as PRESET_PIE_SIMPLE,
|
6049
|
+
d as PRESET_PIE_SUM_SERIES,
|
6050
|
+
o as PRESET_PIE_WITH_INNER_LABELS,
|
6051
|
+
Rt as PRESET_RACING_BARS_ALL_ITEMS,
|
6052
|
+
_t as PRESET_RACING_BARS_BASIC,
|
6053
|
+
mt as PRESET_RACING_BARS_FAST,
|
6054
|
+
bt as PRESET_RACING_BARS_FASTER,
|
6055
|
+
ht as PRESET_RACING_BARS_LOOP,
|
6056
|
+
Pt as PRESET_RACING_BARS_OUTSIDE_LABELS,
|
6057
|
+
Tt as PRESET_RACING_BARS_SEPARATE_CATEGORY,
|
6058
|
+
Lt as PRESET_RACING_BARS_SIMPLE,
|
6059
|
+
It as PRESET_RACING_BARS_STOP,
|
6060
|
+
E as PRESET_ROSE_BASIC,
|
6061
|
+
C as PRESET_ROSE_SCALING_BY_RADIUS,
|
6062
|
+
A as PRESET_ROSE_SEPARATE_ALL,
|
6063
|
+
i as PRESET_ROSE_SEPARATE_LABEL,
|
6064
|
+
D as PRESET_ROSE_SEPARATE_SERIES,
|
6065
|
+
p as PRESET_ROSE_SEPARATE_SERIES_AND_SUM_SERIES,
|
6066
|
+
c as PRESET_ROSE_SIMPLE,
|
6067
|
+
g as PRESET_ROSE_SUM_SERIES,
|
6068
|
+
Mt as PRESET_SCATTER_BASIC,
|
6069
|
+
Gt as PRESET_SCATTER_BUBBLES_BASIC,
|
6070
|
+
Ot as PRESET_SCATTER_BUBBLES_LINEAR_OPACITY,
|
6071
|
+
xt as PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS,
|
6072
|
+
kt as PRESET_SCATTER_BUBBLES_SEPARATE_CATEGORY,
|
6073
|
+
Nt as PRESET_SCATTER_BUBBLES_SIMPLE,
|
6074
|
+
vt as PRESET_SCATTER_SEPARATE_CATEGORY,
|
6075
|
+
Ut as PRESET_SCATTER_SIMPLE,
|
6076
|
+
L as PRESET_SERIES_BASIC,
|
6077
|
+
u as PRESET_SERIES_SEPARATE_SERIES,
|
6078
|
+
S as PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES,
|
6079
|
+
R as PRESET_SERIES_SUM_SERIES,
|
6080
|
+
Kt as PRESET_TREE_MAP_BASIC,
|
6081
|
+
jt as PRESET_TREE_MAP_SIMPLE
|
5790
6082
|
};
|