@orbcharts/presets-basic 3.0.0-beta.13 → 3.0.0-beta.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (111) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-presets-basic.es.js +1870 -542
  3. package/dist/orbcharts-presets-basic.umd.js +1 -1
  4. package/lib/core-types.ts +7 -7
  5. package/lib/plugins-basic-types.ts +6 -6
  6. package/package.json +42 -42
  7. package/src/grid/PRESET_BARS_HORIZONTAL_AND_ROUND.ts +74 -60
  8. package/src/grid/PRESET_BARS_HORIZONTAL_AND_THIN.ts +75 -61
  9. package/src/grid/PRESET_BARS_ROUND.ts +70 -56
  10. package/src/grid/PRESET_BARS_THIN.ts +67 -53
  11. package/src/grid/PRESET_GRID_BASIC.ts +58 -44
  12. package/src/grid/PRESET_GRID_HORIZONTAL.ts +75 -61
  13. package/src/grid/PRESET_GRID_PN_SCALE.ts +66 -52
  14. package/src/grid/PRESET_GRID_PN_SCALE_SIMPLE.ts +63 -49
  15. package/src/grid/PRESET_GRID_ROTATE_AXIS_LABEL.ts +66 -52
  16. package/src/grid/PRESET_GRID_SEPARATE_SERIES.ts +71 -57
  17. package/src/grid/PRESET_GRID_SIMPLE.ts +58 -44
  18. package/src/grid/PRESET_LINES_BASIC.ts +62 -48
  19. package/src/grid/PRESET_LINES_CURVE.ts +65 -51
  20. package/src/grid/PRESET_LINES_HIGHLIGHT_GROUP_DOTS.ts +64 -50
  21. package/src/grid/PRESET_LINES_HORIZONTAL.ts +70 -56
  22. package/src/grid/PRESET_LINES_LOOSE_TICKS.ts +64 -50
  23. package/src/grid/PRESET_LINES_ROTATE_AXIS_LABEL.ts +67 -53
  24. package/src/grid/PRESET_LINES_SIMPLE.ts +67 -53
  25. package/src/grid/PRESET_LINES_WITH_SOLID_DOTS.ts +66 -52
  26. package/src/grid/PRESET_LINE_AREAS_BASIC.ts +68 -54
  27. package/src/grid/PRESET_LINE_AREAS_CURVE.ts +79 -65
  28. package/src/grid/PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS.ts +72 -58
  29. package/src/grid/PRESET_LINE_AREAS_HORIZONTAL.ts +72 -58
  30. package/src/grid/PRESET_LINE_AREAS_LOOSE_TICKS.ts +70 -56
  31. package/src/grid/PRESET_LINE_AREAS_ROTATE_AXIS_LABEL.ts +73 -59
  32. package/src/grid/PRESET_LINE_AREAS_SEPARATE_SERIES.ts +74 -60
  33. package/src/grid/PRESET_LINE_AREAS_SIMPLE.ts +71 -57
  34. package/src/grid/index.ts +26 -26
  35. package/src/index.ts +6 -6
  36. package/src/multiGrid/PRESET_MULTI_GRID_BASIC.ts +64 -50
  37. package/src/multiGrid/PRESET_MULTI_GRID_DIVERGING.ts +112 -98
  38. package/src/multiGrid/PRESET_MULTI_GRID_DIVERGING_SIMPLE.ts +115 -101
  39. package/src/multiGrid/PRESET_MULTI_GRID_ROUND_STYLE.ts +85 -71
  40. package/src/multiGrid/PRESET_MULTI_GRID_ROUND_STYLE_SIMPLE.ts +95 -81
  41. package/src/multiGrid/PRESET_MULTI_GRID_SEPARATE_GRID.ts +87 -73
  42. package/src/multiGrid/PRESET_MULTI_GRID_SEPARATE_GRID_SIMPLE.ts +98 -84
  43. package/src/multiGrid/PRESET_MULTI_GRID_SIMPLE.ts +74 -60
  44. package/src/multiGrid/PRESET_MULTI_LINES_SEPARATE_GRID.ts +115 -101
  45. package/src/multiGrid/PRESET_MULTI_LINES_SEPARATE_GRID_SIMPLE.ts +124 -110
  46. package/src/multiGrid/PRESET_MULTI_LINE_AREAS_SEPARATE_GRID.ts +133 -119
  47. package/src/multiGrid/PRESET_MULTI_LINE_AREAS_SEPARATE_GRID_SIMPLE.ts +127 -113
  48. package/src/multiGrid/index.ts +12 -12
  49. package/src/multiValue/PRESET_MULTI_VALUE_BASIC.ts +53 -39
  50. package/src/multiValue/PRESET_MULTI_VALUE_SEPARATE_CATEGORY.ts +64 -50
  51. package/src/multiValue/PRESET_MULTI_VALUE_SIMPLE.ts +53 -39
  52. package/src/multiValue/PRESET_RACING_BARS_ALL_ITEMS.ts +58 -44
  53. package/src/multiValue/PRESET_RACING_BARS_BASIC.ts +57 -43
  54. package/src/multiValue/PRESET_RACING_BARS_FAST.ts +57 -43
  55. package/src/multiValue/PRESET_RACING_BARS_FASTER.ts +57 -43
  56. package/src/multiValue/PRESET_RACING_BARS_LOOP.ts +58 -44
  57. package/src/multiValue/PRESET_RACING_BARS_OUTSIDE_LABELS.ts +61 -47
  58. package/src/multiValue/PRESET_RACING_BARS_SEPARATE_CATEGORY.ts +74 -60
  59. package/src/multiValue/PRESET_RACING_BARS_SIMPLE.ts +57 -43
  60. package/src/multiValue/PRESET_RACING_BARS_STOP.ts +56 -42
  61. package/src/multiValue/PRESET_SCATTER_BASIC.ts +54 -40
  62. package/src/multiValue/PRESET_SCATTER_BUBBLES_BASIC.ts +54 -40
  63. package/src/multiValue/PRESET_SCATTER_BUBBLES_LINEAR_OPACITY.ts +57 -43
  64. package/src/multiValue/PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS.ts +57 -43
  65. package/src/multiValue/PRESET_SCATTER_BUBBLES_SEPARATE_CATEGORY.ts +57 -43
  66. package/src/multiValue/PRESET_SCATTER_BUBBLES_SIMPLE.ts +54 -40
  67. package/src/multiValue/PRESET_SCATTER_SEPARATE_CATEGORY.ts +65 -51
  68. package/src/multiValue/PRESET_SCATTER_SIMPLE.ts +54 -40
  69. package/src/multiValue/index.ts +20 -20
  70. package/src/params.ts +83 -83
  71. package/src/relationship/PRESET_FORCE_DIRECTED_BASIC.ts +47 -33
  72. package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_BASIC.ts +47 -33
  73. package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH.ts +52 -38
  74. package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW.ts +52 -38
  75. package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM.ts +49 -35
  76. package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_SIMPLE.ts +48 -34
  77. package/src/relationship/PRESET_FORCE_DIRECTED_FIX_FONT_SIZE.ts +54 -40
  78. package/src/relationship/PRESET_FORCE_DIRECTED_NONE_ARROW.ts +52 -38
  79. package/src/relationship/PRESET_FORCE_DIRECTED_NONE_ZOOM.ts +49 -35
  80. package/src/relationship/PRESET_FORCE_DIRECTED_SIMPLE.ts +48 -34
  81. package/src/relationship/index.ts +9 -9
  82. package/src/series/PRESET_BUBBLES_BASIC.ts +46 -32
  83. package/src/series/PRESET_BUBBLES_SCALING_BY_RADIUS.ts +49 -35
  84. package/src/series/PRESET_BUBBLES_SEPARATE_SERIES.ts +58 -44
  85. package/src/series/PRESET_BUBBLES_SIMPLE.ts +53 -39
  86. package/src/series/PRESET_BUBBLES_SUM_SERIES.ts +48 -34
  87. package/src/series/PRESET_PIE_BASIC.ts +49 -35
  88. package/src/series/PRESET_PIE_DONUT.ts +54 -40
  89. package/src/series/PRESET_PIE_HALF_DONUT.ts +66 -52
  90. package/src/series/PRESET_PIE_SEPARATE_SERIES.ts +47 -33
  91. package/src/series/PRESET_PIE_SIMPLE.ts +56 -42
  92. package/src/series/PRESET_PIE_SUM_SERIES.ts +48 -34
  93. package/src/series/PRESET_PIE_WITH_INNER_LABELS.ts +55 -41
  94. package/src/series/PRESET_ROSE_BASIC.ts +55 -41
  95. package/src/series/PRESET_ROSE_SCALING_BY_RADIUS.ts +61 -47
  96. package/src/series/PRESET_ROSE_SEPARATE_SERIES.ts +55 -41
  97. package/src/series/PRESET_ROSE_SEPARATE_SERIES_AND_SUM_SERIES.ts +56 -42
  98. package/src/series/PRESET_ROSE_SIMPLE.ts +56 -42
  99. package/src/series/PRESET_ROSE_SUM_SERIES.ts +54 -40
  100. package/src/series/PRESET_SERIES_BASIC.ts +46 -32
  101. package/src/series/PRESET_SERIES_SEPARATE_SERIES.ts +47 -15
  102. package/src/series/PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES.ts +48 -16
  103. package/src/series/PRESET_SERIES_SUM_SERIES.ts +49 -17
  104. package/src/series/index.ts +23 -23
  105. package/src/tree/PRESET_TREE_MAP_BASIC.ts +58 -44
  106. package/src/tree/PRESET_TREE_MAP_SIMPLE.ts +54 -40
  107. package/src/tree/index.ts +1 -1
  108. package/src/types.ts +368 -368
  109. package/tsconfig.base.json +13 -13
  110. package/tsconfig.json +2 -2
  111. package/vite.config.js +22 -22
@@ -1,4 +1,4 @@
1
- const u = {
1
+ const S = {
2
2
  name: "PRESET_BUBBLES_BASIC",
3
3
  description: "Basic bubble chart",
4
4
  descriptionZh: "基本泡泡圖",
@@ -6,14 +6,28 @@ const u = {
6
6
  colors: {
7
7
  light: {
8
8
  label: [
9
- "#6CBAFF",
9
+ "#0088FF",
10
+ "#FF3232",
11
+ "#38BEA8",
12
+ "#6F3BD5",
13
+ "#314285",
14
+ "#42C724",
15
+ "#D52580",
16
+ "#F4721B",
17
+ "#D117EA",
18
+ "#7E7D7D"
19
+ ]
20
+ },
21
+ dark: {
22
+ label: [
23
+ "#4BABFF",
10
24
  "#FF6C6C",
11
- "#F9B052",
12
25
  "#7DD3C4",
13
- "#AA93D2",
14
- "#0088FF",
15
- "#FFBABA",
26
+ "#8E6BC9",
27
+ "#5366AC",
16
28
  "#86DC72",
29
+ "#FF72BB",
30
+ "#F9B052",
17
31
  "#EF76FF",
18
32
  "#C4C4C4"
19
33
  ]
@@ -26,7 +40,7 @@ const u = {
26
40
  // 圓型圖例列點
27
41
  }
28
42
  }
29
- }, _ = {
43
+ }, R = {
30
44
  name: "PRESET_BUBBLES_SCALING_BY_RADIUS",
31
45
  description: "Bubble chart scaled by radius size",
32
46
  descriptionZh: "以半徑尺寸為比例的泡泡圖",
@@ -34,14 +48,28 @@ const u = {
34
48
  colors: {
35
49
  light: {
36
50
  label: [
37
- "#6CBAFF",
51
+ "#0088FF",
52
+ "#FF3232",
53
+ "#38BEA8",
54
+ "#6F3BD5",
55
+ "#314285",
56
+ "#42C724",
57
+ "#D52580",
58
+ "#F4721B",
59
+ "#D117EA",
60
+ "#7E7D7D"
61
+ ]
62
+ },
63
+ dark: {
64
+ label: [
65
+ "#4BABFF",
38
66
  "#FF6C6C",
39
- "#F9B052",
40
67
  "#7DD3C4",
41
- "#AA93D2",
42
- "#0088FF",
43
- "#FFBABA",
68
+ "#8E6BC9",
69
+ "#5366AC",
44
70
  "#86DC72",
71
+ "#FF72BB",
72
+ "#F9B052",
45
73
  "#EF76FF",
46
74
  "#C4C4C4"
47
75
  ]
@@ -57,7 +85,7 @@ const u = {
57
85
  // 圓型圖例列點
58
86
  }
59
87
  }
60
- }, C = {
88
+ }, u = {
61
89
  name: "PRESET_BUBBLES_SEPARATE_SERIES",
62
90
  description: "Bubble chart showing series separately",
63
91
  descriptionZh: "分開顯示Series的泡泡圖",
@@ -65,14 +93,28 @@ const u = {
65
93
  colors: {
66
94
  light: {
67
95
  label: [
68
- "#6CBAFF",
96
+ "#0088FF",
97
+ "#FF3232",
98
+ "#38BEA8",
99
+ "#6F3BD5",
100
+ "#314285",
101
+ "#42C724",
102
+ "#D52580",
103
+ "#F4721B",
104
+ "#D117EA",
105
+ "#7E7D7D"
106
+ ]
107
+ },
108
+ dark: {
109
+ label: [
110
+ "#4BABFF",
69
111
  "#FF6C6C",
70
- "#F9B052",
71
112
  "#7DD3C4",
72
- "#AA93D2",
73
- "#0088FF",
74
- "#FFBABA",
113
+ "#8E6BC9",
114
+ "#5366AC",
75
115
  "#86DC72",
116
+ "#FF72BB",
117
+ "#F9B052",
76
118
  "#EF76FF",
77
119
  "#C4C4C4"
78
120
  ]
@@ -97,7 +139,7 @@ const u = {
97
139
  },
98
140
  SeriesTooltip: {}
99
141
  }
100
- }, m = {
142
+ }, _ = {
101
143
  name: "PRESET_BUBBLES_SIMPLE",
102
144
  description: "Simple bubble chart",
103
145
  descriptionZh: "簡單泡泡圖",
@@ -111,14 +153,28 @@ const u = {
111
153
  colors: {
112
154
  light: {
113
155
  label: [
114
- "#6CBAFF",
156
+ "#0088FF",
157
+ "#FF3232",
158
+ "#38BEA8",
159
+ "#6F3BD5",
160
+ "#314285",
161
+ "#42C724",
162
+ "#D52580",
163
+ "#F4721B",
164
+ "#D117EA",
165
+ "#7E7D7D"
166
+ ]
167
+ },
168
+ dark: {
169
+ label: [
170
+ "#4BABFF",
115
171
  "#FF6C6C",
116
- "#F9B052",
117
172
  "#7DD3C4",
118
- "#AA93D2",
119
- "#0088FF",
120
- "#FFBABA",
173
+ "#8E6BC9",
174
+ "#5366AC",
121
175
  "#86DC72",
176
+ "#FF72BB",
177
+ "#F9B052",
122
178
  "#EF76FF",
123
179
  "#C4C4C4"
124
180
  ]
@@ -132,7 +188,7 @@ const u = {
132
188
  padding: 7
133
189
  }
134
190
  }
135
- }, i = {
191
+ }, a = {
136
192
  name: "PRESET_BUBBLES_SUM_SERIES",
137
193
  description: "Bubble chart of combined Series data",
138
194
  descriptionZh: "合併Series資料的泡泡圖",
@@ -140,14 +196,28 @@ const u = {
140
196
  colors: {
141
197
  light: {
142
198
  label: [
143
- "#6CBAFF",
199
+ "#0088FF",
200
+ "#FF3232",
201
+ "#38BEA8",
202
+ "#6F3BD5",
203
+ "#314285",
204
+ "#42C724",
205
+ "#D52580",
206
+ "#F4721B",
207
+ "#D117EA",
208
+ "#7E7D7D"
209
+ ]
210
+ },
211
+ dark: {
212
+ label: [
213
+ "#4BABFF",
144
214
  "#FF6C6C",
145
- "#F9B052",
146
215
  "#7DD3C4",
147
- "#AA93D2",
148
- "#0088FF",
149
- "#FFBABA",
216
+ "#8E6BC9",
217
+ "#5366AC",
150
218
  "#86DC72",
219
+ "#FF72BB",
220
+ "#F9B052",
151
221
  "#EF76FF",
152
222
  "#C4C4C4"
153
223
  ]
@@ -160,8 +230,8 @@ const u = {
160
230
  },
161
231
  pluginParams: {}
162
232
  };
163
- i.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
164
- const a = {
233
+ a.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
234
+ const i = {
165
235
  name: "PRESET_PIE_BASIC",
166
236
  description: "Basic pie chart",
167
237
  descriptionZh: "基本圓餅圖",
@@ -169,15 +239,29 @@ const a = {
169
239
  colors: {
170
240
  light: {
171
241
  label: [
172
- "#7DD3C4",
173
- "#FFA0A0",
174
- "#6CBAFF",
175
- "#55D339",
242
+ "#0088FF",
243
+ "#4BABFF",
244
+ "#38BEA8",
245
+ "#86DC72",
246
+ "#F9B052",
247
+ "#F4721B",
248
+ "#FF3232",
249
+ "#5F2714",
250
+ "#D117EA",
251
+ "7E7D7D"
252
+ ]
253
+ },
254
+ dark: {
255
+ label: [
256
+ "#4BABFF",
257
+ "#8BC8FF",
258
+ "#61CBB9",
259
+ "#ACE1A0",
260
+ "#FCDCAD",
176
261
  "#F9B052",
177
262
  "#FF6C6C",
178
- "#8E6BC9",
179
- "#0088FF",
180
263
  "#904026",
264
+ "#EF76FF",
181
265
  "#C4C4C4"
182
266
  ]
183
267
  }
@@ -193,8 +277,8 @@ const a = {
193
277
  }
194
278
  }
195
279
  };
196
- a.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
197
- const r = {
280
+ i.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
281
+ const F = {
198
282
  name: "PRESET_PIE_DONUT",
199
283
  description: "Donut chart",
200
284
  descriptionZh: "甜甜圈圖",
@@ -202,15 +286,29 @@ const r = {
202
286
  colors: {
203
287
  light: {
204
288
  label: [
205
- "#7DD3C4",
206
- "#FFA0A0",
207
- "#6CBAFF",
208
- "#55D339",
289
+ "#0088FF",
290
+ "#4BABFF",
291
+ "#38BEA8",
292
+ "#86DC72",
293
+ "#F9B052",
294
+ "#F4721B",
295
+ "#FF3232",
296
+ "#5F2714",
297
+ "#D117EA",
298
+ "7E7D7D"
299
+ ]
300
+ },
301
+ dark: {
302
+ label: [
303
+ "#4BABFF",
304
+ "#8BC8FF",
305
+ "#61CBB9",
306
+ "#ACE1A0",
307
+ "#FCDCAD",
209
308
  "#F9B052",
210
309
  "#FF6C6C",
211
- "#8E6BC9",
212
- "#0088FF",
213
310
  "#904026",
311
+ "#EF76FF",
214
312
  "#C4C4C4"
215
313
  ]
216
314
  }
@@ -231,8 +329,8 @@ const r = {
231
329
  }
232
330
  }
233
331
  };
234
- r.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
235
- const s = {
332
+ F.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
333
+ const r = {
236
334
  name: "PRESET_PIE_HALF_DONUT",
237
335
  description: "Half donut chart",
238
336
  descriptionZh: "半圓甜甜圈圖",
@@ -240,15 +338,29 @@ const s = {
240
338
  colors: {
241
339
  light: {
242
340
  label: [
243
- "#7DD3C4",
244
- "#FFA0A0",
245
- "#6CBAFF",
246
- "#55D339",
341
+ "#0088FF",
342
+ "#4BABFF",
343
+ "#38BEA8",
344
+ "#86DC72",
345
+ "#F9B052",
346
+ "#F4721B",
347
+ "#FF3232",
348
+ "#5F2714",
349
+ "#D117EA",
350
+ "7E7D7D"
351
+ ]
352
+ },
353
+ dark: {
354
+ label: [
355
+ "#4BABFF",
356
+ "#8BC8FF",
357
+ "#61CBB9",
358
+ "#ACE1A0",
359
+ "#FCDCAD",
247
360
  "#F9B052",
248
361
  "#FF6C6C",
249
- "#8E6BC9",
250
- "#0088FF",
251
362
  "#904026",
363
+ "#EF76FF",
252
364
  "#C4C4C4"
253
365
  ]
254
366
  }
@@ -281,7 +393,7 @@ const s = {
281
393
  }
282
394
  }
283
395
  };
284
- s.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
396
+ r.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
285
397
  const l = {
286
398
  name: "PRESET_PIE_WITH_INNER_LABELS",
287
399
  description: "Pie chart with inner data labels",
@@ -290,15 +402,29 @@ const l = {
290
402
  colors: {
291
403
  light: {
292
404
  label: [
293
- "#7DD3C4",
294
- "#FFA0A0",
295
- "#6CBAFF",
296
- "#55D339",
405
+ "#0088FF",
406
+ "#4BABFF",
407
+ "#38BEA8",
408
+ "#86DC72",
409
+ "#F9B052",
410
+ "#F4721B",
411
+ "#FF3232",
412
+ "#5F2714",
413
+ "#D117EA",
414
+ "7E7D7D"
415
+ ]
416
+ },
417
+ dark: {
418
+ label: [
419
+ "#4BABFF",
420
+ "#8BC8FF",
421
+ "#61CBB9",
422
+ "#ACE1A0",
423
+ "#FCDCAD",
297
424
  "#F9B052",
298
425
  "#FF6C6C",
299
- "#8E6BC9",
300
- "#0088FF",
301
426
  "#904026",
427
+ "#EF76FF",
302
428
  "#C4C4C4"
303
429
  ]
304
430
  }
@@ -322,7 +448,7 @@ const l = {
322
448
  }
323
449
  };
324
450
  l.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
325
- const o = {
451
+ const s = {
326
452
  name: "PRESET_PIE_SEPARATE_SERIES",
327
453
  description: "Separate pie chart of Series",
328
454
  descriptionZh: "分開顯示Series的圓餅圖",
@@ -330,15 +456,29 @@ const o = {
330
456
  colors: {
331
457
  light: {
332
458
  label: [
333
- "#7DD3C4",
334
- "#FFA0A0",
335
- "#6CBAFF",
336
- "#55D339",
459
+ "#0088FF",
460
+ "#4BABFF",
461
+ "#38BEA8",
462
+ "#86DC72",
463
+ "#F9B052",
464
+ "#F4721B",
465
+ "#FF3232",
466
+ "#5F2714",
467
+ "#D117EA",
468
+ "7E7D7D"
469
+ ]
470
+ },
471
+ dark: {
472
+ label: [
473
+ "#4BABFF",
474
+ "#8BC8FF",
475
+ "#61CBB9",
476
+ "#ACE1A0",
477
+ "#FCDCAD",
337
478
  "#F9B052",
338
479
  "#FF6C6C",
339
- "#8E6BC9",
340
- "#0088FF",
341
480
  "#904026",
481
+ "#EF76FF",
342
482
  "#C4C4C4"
343
483
  ]
344
484
  }
@@ -350,8 +490,8 @@ const o = {
350
490
  },
351
491
  pluginParams: {}
352
492
  };
353
- o.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
354
- const n = {
493
+ s.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
494
+ const o = {
355
495
  name: "PRESET_PIE_SIMPLE",
356
496
  description: "Simple pie chart",
357
497
  descriptionZh: "簡單圓餅圖",
@@ -365,15 +505,29 @@ const n = {
365
505
  colors: {
366
506
  light: {
367
507
  label: [
368
- "#7DD3C4",
369
- "#FFA0A0",
370
- "#6CBAFF",
371
- "#55D339",
508
+ "#0088FF",
509
+ "#4BABFF",
510
+ "#38BEA8",
511
+ "#86DC72",
512
+ "#F9B052",
513
+ "#F4721B",
514
+ "#FF3232",
515
+ "#5F2714",
516
+ "#D117EA",
517
+ "7E7D7D"
518
+ ]
519
+ },
520
+ dark: {
521
+ label: [
522
+ "#4BABFF",
523
+ "#8BC8FF",
524
+ "#61CBB9",
525
+ "#ACE1A0",
526
+ "#FCDCAD",
372
527
  "#F9B052",
373
528
  "#FF6C6C",
374
- "#8E6BC9",
375
- "#0088FF",
376
529
  "#904026",
530
+ "#EF76FF",
377
531
  "#C4C4C4"
378
532
  ]
379
533
  }
@@ -390,7 +544,7 @@ const n = {
390
544
  }
391
545
  }
392
546
  };
393
- n.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
547
+ o.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
394
548
  const d = {
395
549
  name: "PRESET_PIE_SUM_SERIES",
396
550
  description: "Pie chart of combined Series data",
@@ -399,15 +553,29 @@ const d = {
399
553
  colors: {
400
554
  light: {
401
555
  label: [
402
- "#7DD3C4",
403
- "#FFA0A0",
404
- "#6CBAFF",
405
- "#55D339",
556
+ "#0088FF",
557
+ "#4BABFF",
558
+ "#38BEA8",
559
+ "#86DC72",
560
+ "#F9B052",
561
+ "#F4721B",
562
+ "#FF3232",
563
+ "#5F2714",
564
+ "#D117EA",
565
+ "7E7D7D"
566
+ ]
567
+ },
568
+ dark: {
569
+ label: [
570
+ "#4BABFF",
571
+ "#8BC8FF",
572
+ "#61CBB9",
573
+ "#ACE1A0",
574
+ "#FCDCAD",
406
575
  "#F9B052",
407
576
  "#FF6C6C",
408
- "#8E6BC9",
409
- "#0088FF",
410
577
  "#904026",
578
+ "#EF76FF",
411
579
  "#C4C4C4"
412
580
  ]
413
581
  }
@@ -420,7 +588,7 @@ const d = {
420
588
  pluginParams: {}
421
589
  };
422
590
  d.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
423
- const E = {
591
+ const n = {
424
592
  name: "PRESET_ROSE_BASIC",
425
593
  description: "Basic Rose chart",
426
594
  descriptionZh: "基本Rose參數",
@@ -433,6 +601,20 @@ const E = {
433
601
  },
434
602
  colors: {
435
603
  light: {
604
+ label: [
605
+ "#4BABFF",
606
+ "#0088FF",
607
+ "#435399",
608
+ "#86DC72",
609
+ "#42C724",
610
+ "#16B59B",
611
+ "#F9B052",
612
+ "#F4721B",
613
+ "#FF3232",
614
+ "#7E7D7D"
615
+ ]
616
+ },
617
+ dark: {
436
618
  label: [
437
619
  "#8BC8FF",
438
620
  "#4BABFF",
@@ -458,8 +640,8 @@ const E = {
458
640
  }
459
641
  }
460
642
  };
461
- E.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
462
- const c = {
643
+ n.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
644
+ const B = {
463
645
  name: "PRESET_ROSE_SCALING_BY_RADIUS",
464
646
  description: "Rose chart with radius scaling",
465
647
  descriptionZh: "以半徑尺寸為比例的玫瑰圖",
@@ -472,6 +654,20 @@ const c = {
472
654
  },
473
655
  colors: {
474
656
  light: {
657
+ label: [
658
+ "#4BABFF",
659
+ "#0088FF",
660
+ "#435399",
661
+ "#86DC72",
662
+ "#42C724",
663
+ "#16B59B",
664
+ "#F9B052",
665
+ "#F4721B",
666
+ "#FF3232",
667
+ "#7E7D7D"
668
+ ]
669
+ },
670
+ dark: {
475
671
  label: [
476
672
  "#8BC8FF",
477
673
  "#4BABFF",
@@ -503,8 +699,8 @@ const c = {
503
699
  }
504
700
  }
505
701
  };
506
- c.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
507
- const F = {
702
+ B.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
703
+ const E = {
508
704
  name: "PRESET_ROSE_SEPARATE_SERIES",
509
705
  description: "Separate rose chart of Series",
510
706
  descriptionZh: "分開顯示Series的玫瑰圖",
@@ -517,6 +713,20 @@ const F = {
517
713
  },
518
714
  colors: {
519
715
  light: {
716
+ label: [
717
+ "#4BABFF",
718
+ "#0088FF",
719
+ "#435399",
720
+ "#86DC72",
721
+ "#42C724",
722
+ "#16B59B",
723
+ "#F9B052",
724
+ "#F4721B",
725
+ "#FF3232",
726
+ "#7E7D7D"
727
+ ]
728
+ },
729
+ dark: {
520
730
  label: [
521
731
  "#8BC8FF",
522
732
  "#4BABFF",
@@ -541,8 +751,8 @@ const F = {
541
751
  // ...ALL_PLUGIN_PARAMS_NONE_DATA,
542
752
  }
543
753
  };
544
- F.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
545
- const g = {
754
+ E.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
755
+ const C = {
546
756
  name: "PRESET_ROSE_SIMPLE",
547
757
  description: "Simple Rose chart",
548
758
  descriptionZh: "簡單Rose參數",
@@ -555,6 +765,20 @@ const g = {
555
765
  },
556
766
  colors: {
557
767
  light: {
768
+ label: [
769
+ "#4BABFF",
770
+ "#0088FF",
771
+ "#435399",
772
+ "#86DC72",
773
+ "#42C724",
774
+ "#16B59B",
775
+ "#F9B052",
776
+ "#F4721B",
777
+ "#FF3232",
778
+ "#7E7D7D"
779
+ ]
780
+ },
781
+ dark: {
558
782
  label: [
559
783
  "#8BC8FF",
560
784
  "#4BABFF",
@@ -581,8 +805,8 @@ const g = {
581
805
  }
582
806
  }
583
807
  };
584
- g.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
585
- const B = {
808
+ C.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
809
+ const A = {
586
810
  name: "PRESET_ROSE_SUM_SERIES",
587
811
  description: "Rose chart of combined Series data",
588
812
  descriptionZh: "合併Series資料的玫瑰圖",
@@ -595,6 +819,20 @@ const B = {
595
819
  },
596
820
  colors: {
597
821
  light: {
822
+ label: [
823
+ "#4BABFF",
824
+ "#0088FF",
825
+ "#435399",
826
+ "#86DC72",
827
+ "#42C724",
828
+ "#16B59B",
829
+ "#F9B052",
830
+ "#F4721B",
831
+ "#FF3232",
832
+ "#7E7D7D"
833
+ ]
834
+ },
835
+ dark: {
598
836
  label: [
599
837
  "#8BC8FF",
600
838
  "#4BABFF",
@@ -616,8 +854,8 @@ const B = {
616
854
  },
617
855
  pluginParams: {}
618
856
  };
619
- B.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
620
- const p = {
857
+ A.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
858
+ const D = {
621
859
  name: "PRESET_ROSE_SEPARATE_SERIES_AND_SUM_SERIES",
622
860
  description: "Separate and sum Series data",
623
861
  descriptionZh: "分開顯示Series並合併Series資料",
@@ -630,6 +868,20 @@ const p = {
630
868
  },
631
869
  colors: {
632
870
  light: {
871
+ label: [
872
+ "#4BABFF",
873
+ "#0088FF",
874
+ "#435399",
875
+ "#86DC72",
876
+ "#42C724",
877
+ "#16B59B",
878
+ "#F9B052",
879
+ "#F4721B",
880
+ "#FF3232",
881
+ "#7E7D7D"
882
+ ]
883
+ },
884
+ dark: {
633
885
  label: [
634
886
  "#8BC8FF",
635
887
  "#4BABFF",
@@ -655,8 +907,8 @@ const p = {
655
907
  // ...ALL_PLUGIN_PARAMS_NONE_DATA,
656
908
  }
657
909
  };
658
- p.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
659
- const h = {
910
+ D.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
911
+ const m = {
660
912
  name: "PRESET_SERIES_BASIC",
661
913
  description: "Basic Series parameters",
662
914
  descriptionZh: "基本Series參數",
@@ -664,14 +916,28 @@ const h = {
664
916
  colors: {
665
917
  light: {
666
918
  label: [
667
- "#6CBAFF",
919
+ "#0088FF",
920
+ "#FF3232",
921
+ "#38BEA8",
922
+ "#6F3BD5",
923
+ "#314285",
924
+ "#42C724",
925
+ "#D52580",
926
+ "#F4721B",
927
+ "#D117EA",
928
+ "#7E7D7D"
929
+ ]
930
+ },
931
+ dark: {
932
+ label: [
933
+ "#4BABFF",
668
934
  "#FF6C6C",
669
- "#F9B052",
670
935
  "#7DD3C4",
671
- "#AA93D2",
672
- "#0088FF",
673
- "#FFBABA",
936
+ "#8E6BC9",
937
+ "#5366AC",
674
938
  "#86DC72",
939
+ "#FF72BB",
940
+ "#F9B052",
675
941
  "#EF76FF",
676
942
  "#C4C4C4"
677
943
  ]
@@ -684,10 +950,42 @@ const h = {
684
950
  // 圓型圖例列點
685
951
  }
686
952
  }
687
- }, A = {
953
+ }, c = {
688
954
  name: "PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES",
689
955
  description: "Separate and sum Series data",
690
956
  descriptionZh: "分開顯示Series並合併Series資料",
957
+ chartParams: {
958
+ colors: {
959
+ light: {
960
+ label: [
961
+ "#0088FF",
962
+ "#FF3232",
963
+ "#38BEA8",
964
+ "#6F3BD5",
965
+ "#314285",
966
+ "#42C724",
967
+ "#D52580",
968
+ "#F4721B",
969
+ "#D117EA",
970
+ "#7E7D7D"
971
+ ]
972
+ },
973
+ dark: {
974
+ label: [
975
+ "#4BABFF",
976
+ "#FF6C6C",
977
+ "#7DD3C4",
978
+ "#8E6BC9",
979
+ "#5366AC",
980
+ "#86DC72",
981
+ "#FF72BB",
982
+ "#F9B052",
983
+ "#EF76FF",
984
+ "#C4C4C4"
985
+ ]
986
+ }
987
+ }
988
+ },
691
989
  dataFormatter: {
692
990
  sort: (t, e) => e.value - t.value,
693
991
  separateSeries: !0,
@@ -695,47 +993,125 @@ const h = {
695
993
  },
696
994
  pluginParams: {}
697
995
  };
698
- A.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
699
- const S = {
996
+ c.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
997
+ const g = {
700
998
  name: "PRESET_SERIES_SEPARATE_SERIES",
701
999
  description: "Separate Series",
702
1000
  descriptionZh: "分開顯示Series",
1001
+ chartParams: {
1002
+ colors: {
1003
+ light: {
1004
+ label: [
1005
+ "#0088FF",
1006
+ "#FF3232",
1007
+ "#38BEA8",
1008
+ "#6F3BD5",
1009
+ "#314285",
1010
+ "#42C724",
1011
+ "#D52580",
1012
+ "#F4721B",
1013
+ "#D117EA",
1014
+ "#7E7D7D"
1015
+ ]
1016
+ },
1017
+ dark: {
1018
+ label: [
1019
+ "#4BABFF",
1020
+ "#FF6C6C",
1021
+ "#7DD3C4",
1022
+ "#8E6BC9",
1023
+ "#5366AC",
1024
+ "#86DC72",
1025
+ "#FF72BB",
1026
+ "#F9B052",
1027
+ "#EF76FF",
1028
+ "#C4C4C4"
1029
+ ]
1030
+ }
1031
+ }
1032
+ },
703
1033
  dataFormatter: {
704
1034
  sort: (t, e) => e.value - t.value,
705
1035
  separateSeries: !0
706
1036
  },
707
1037
  pluginParams: {}
708
1038
  };
709
- S.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
710
- const R = {
1039
+ g.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
1040
+ const p = {
711
1041
  name: "PRESET_SERIES_SUM_SERIES",
712
1042
  description: "Combine Series data",
713
1043
  descriptionZh: "合併Series資料",
1044
+ chartParams: {
1045
+ colors: {
1046
+ light: {
1047
+ label: [
1048
+ "#0088FF",
1049
+ "#FF3232",
1050
+ "#38BEA8",
1051
+ "#6F3BD5",
1052
+ "#314285",
1053
+ "#42C724",
1054
+ "#D52580",
1055
+ "#F4721B",
1056
+ "#D117EA",
1057
+ "#7E7D7D"
1058
+ ]
1059
+ },
1060
+ dark: {
1061
+ label: [
1062
+ "#4BABFF",
1063
+ "#FF6C6C",
1064
+ "#7DD3C4",
1065
+ "#8E6BC9",
1066
+ "#5366AC",
1067
+ "#86DC72",
1068
+ "#FF72BB",
1069
+ "#F9B052",
1070
+ "#EF76FF",
1071
+ "#C4C4C4"
1072
+ ]
1073
+ }
1074
+ }
1075
+ },
714
1076
  dataFormatter: {
715
1077
  sort: (t, e) => e.value - t.value,
716
1078
  sumSeries: !0
717
1079
  },
718
1080
  pluginParams: {}
719
1081
  };
720
- R.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
721
- const P = {
1082
+ p.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
1083
+ const h = {
722
1084
  name: "PRESET_BARS_HORIZONTAL_AND_ROUND",
723
1085
  description: "Horizontal bars with round corners",
724
1086
  descriptionZh: "橫向圓角長條圖",
725
1087
  chartParams: {
726
1088
  colors: {
727
1089
  light: {
1090
+ label: [
1091
+ "#0088FF",
1092
+ "#FF72BB",
1093
+ "#16B59B",
1094
+ "#F9B052",
1095
+ "#6F3BD5",
1096
+ "#42C724",
1097
+ "#FF3232",
1098
+ "#904026",
1099
+ "#1F3172",
1100
+ "#E23D93"
1101
+ ]
1102
+ },
1103
+ dark: {
728
1104
  label: [
729
1105
  "#4BABFF",
730
1106
  "#FFA0A0",
731
1107
  "#7DD3C4",
732
- "#F9B052",
1108
+ "#FAC77D",
733
1109
  "#8454D4",
734
1110
  "#42C724",
735
- "#FF4B4B",
736
- "#904026",
737
- "#4B25B3",
738
- "#C50669"
1111
+ "#FF6C6C",
1112
+ "#D4785A",
1113
+ "#5366AC",
1114
+ "#FF8DC8"
739
1115
  ]
740
1116
  }
741
1117
  },
@@ -770,24 +1146,38 @@ const P = {
770
1146
  listRectRadius: 7
771
1147
  }
772
1148
  }
773
- }, D = {
1149
+ }, P = {
774
1150
  name: "PRESET_BARS_HORIZONTAL_AND_THIN",
775
1151
  description: "Horizontal thin bars",
776
1152
  descriptionZh: "橫向細長長條圖",
777
1153
  chartParams: {
778
1154
  colors: {
779
1155
  light: {
1156
+ label: [
1157
+ "#0088FF",
1158
+ "#FF72BB",
1159
+ "#16B59B",
1160
+ "#F9B052",
1161
+ "#6F3BD5",
1162
+ "#42C724",
1163
+ "#FF3232",
1164
+ "#904026",
1165
+ "#1F3172",
1166
+ "#E23D93"
1167
+ ]
1168
+ },
1169
+ dark: {
780
1170
  label: [
781
1171
  "#4BABFF",
782
1172
  "#FFA0A0",
783
1173
  "#7DD3C4",
784
- "#F9B052",
1174
+ "#FAC77D",
785
1175
  "#8454D4",
786
1176
  "#42C724",
787
- "#FF4B4B",
788
- "#904026",
789
- "#4B25B3",
790
- "#C50669"
1177
+ "#FF6C6C",
1178
+ "#D4785A",
1179
+ "#5366AC",
1180
+ "#FF8DC8"
791
1181
  ]
792
1182
  }
793
1183
  },
@@ -823,24 +1213,38 @@ const P = {
823
1213
  padding: 14
824
1214
  }
825
1215
  }
826
- }, T = {
1216
+ }, b = {
827
1217
  name: "PRESET_BARS_ROUND",
828
1218
  description: "Rounded bars",
829
1219
  descriptionZh: "圓角長條圖",
830
1220
  chartParams: {
831
1221
  colors: {
832
1222
  light: {
1223
+ label: [
1224
+ "#0088FF",
1225
+ "#FF72BB",
1226
+ "#16B59B",
1227
+ "#F9B052",
1228
+ "#6F3BD5",
1229
+ "#42C724",
1230
+ "#FF3232",
1231
+ "#904026",
1232
+ "#1F3172",
1233
+ "#E23D93"
1234
+ ]
1235
+ },
1236
+ dark: {
833
1237
  label: [
834
1238
  "#4BABFF",
835
1239
  "#FFA0A0",
836
1240
  "#7DD3C4",
837
- "#F9B052",
1241
+ "#FAC77D",
838
1242
  "#8454D4",
839
1243
  "#42C724",
840
- "#FF4B4B",
841
- "#904026",
842
- "#4B25B3",
843
- "#C50669"
1244
+ "#FF6C6C",
1245
+ "#D4785A",
1246
+ "#5366AC",
1247
+ "#FF8DC8"
844
1248
  ]
845
1249
  }
846
1250
  },
@@ -871,24 +1275,38 @@ const P = {
871
1275
  listRectRadius: 7
872
1276
  }
873
1277
  }
874
- }, I = {
1278
+ }, T = {
875
1279
  name: "PRESET_BARS_THIN",
876
1280
  description: "Thin bars",
877
1281
  descriptionZh: "細長條圖",
878
1282
  chartParams: {
879
1283
  colors: {
880
1284
  light: {
1285
+ label: [
1286
+ "#0088FF",
1287
+ "#FF72BB",
1288
+ "#16B59B",
1289
+ "#F9B052",
1290
+ "#6F3BD5",
1291
+ "#42C724",
1292
+ "#FF3232",
1293
+ "#904026",
1294
+ "#1F3172",
1295
+ "#E23D93"
1296
+ ]
1297
+ },
1298
+ dark: {
881
1299
  label: [
882
1300
  "#4BABFF",
883
1301
  "#FFA0A0",
884
1302
  "#7DD3C4",
885
- "#F9B052",
1303
+ "#FAC77D",
886
1304
  "#8454D4",
887
1305
  "#42C724",
888
- "#FF4B4B",
889
- "#904026",
890
- "#4B25B3",
891
- "#C50669"
1306
+ "#FF6C6C",
1307
+ "#D4785A",
1308
+ "#5366AC",
1309
+ "#FF8DC8"
892
1310
  ]
893
1311
  }
894
1312
  },
@@ -916,24 +1334,38 @@ const P = {
916
1334
  padding: 14
917
1335
  }
918
1336
  }
919
- }, b = {
1337
+ }, I = {
920
1338
  name: "PRESET_GRID_BASIC",
921
1339
  description: "Basic Grid",
922
1340
  descriptionZh: "基本Grid",
923
1341
  chartParams: {
924
1342
  colors: {
925
1343
  light: {
1344
+ label: [
1345
+ "#0088FF",
1346
+ "#FF72BB",
1347
+ "#16B59B",
1348
+ "#F9B052",
1349
+ "#6F3BD5",
1350
+ "#42C724",
1351
+ "#FF3232",
1352
+ "#904026",
1353
+ "#1F3172",
1354
+ "#E23D93"
1355
+ ]
1356
+ },
1357
+ dark: {
926
1358
  label: [
927
1359
  "#4BABFF",
928
1360
  "#FFA0A0",
929
1361
  "#7DD3C4",
930
- "#F9B052",
1362
+ "#FAC77D",
931
1363
  "#8454D4",
932
1364
  "#42C724",
933
- "#FF4B4B",
934
- "#904026",
935
- "#4B25B3",
936
- "#C50669"
1365
+ "#FF6C6C",
1366
+ "#D4785A",
1367
+ "#5366AC",
1368
+ "#FF8DC8"
937
1369
  ]
938
1370
  }
939
1371
  },
@@ -961,17 +1393,31 @@ const P = {
961
1393
  chartParams: {
962
1394
  colors: {
963
1395
  light: {
1396
+ label: [
1397
+ "#0088FF",
1398
+ "#FF72BB",
1399
+ "#16B59B",
1400
+ "#F9B052",
1401
+ "#6F3BD5",
1402
+ "#42C724",
1403
+ "#FF3232",
1404
+ "#904026",
1405
+ "#1F3172",
1406
+ "#E23D93"
1407
+ ]
1408
+ },
1409
+ dark: {
964
1410
  label: [
965
1411
  "#4BABFF",
966
1412
  "#FFA0A0",
967
1413
  "#7DD3C4",
968
- "#F9B052",
1414
+ "#FAC77D",
969
1415
  "#8454D4",
970
1416
  "#42C724",
971
- "#FF4B4B",
972
- "#904026",
973
- "#4B25B3",
974
- "#C50669"
1417
+ "#FF6C6C",
1418
+ "#D4785A",
1419
+ "#5366AC",
1420
+ "#FF8DC8"
975
1421
  ]
976
1422
  }
977
1423
  },
@@ -1016,17 +1462,31 @@ const P = {
1016
1462
  chartParams: {
1017
1463
  colors: {
1018
1464
  light: {
1465
+ label: [
1466
+ "#0088FF",
1467
+ "#FF72BB",
1468
+ "#16B59B",
1469
+ "#F9B052",
1470
+ "#6F3BD5",
1471
+ "#42C724",
1472
+ "#FF3232",
1473
+ "#904026",
1474
+ "#1F3172",
1475
+ "#E23D93"
1476
+ ]
1477
+ },
1478
+ dark: {
1019
1479
  label: [
1020
1480
  "#4BABFF",
1021
1481
  "#FFA0A0",
1022
1482
  "#7DD3C4",
1023
- "#F9B052",
1483
+ "#FAC77D",
1024
1484
  "#8454D4",
1025
1485
  "#42C724",
1026
- "#FF4B4B",
1027
- "#904026",
1028
- "#4B25B3",
1029
- "#C50669"
1486
+ "#FF6C6C",
1487
+ "#D4785A",
1488
+ "#5366AC",
1489
+ "#FF8DC8"
1030
1490
  ]
1031
1491
  }
1032
1492
  },
@@ -1060,17 +1520,31 @@ const P = {
1060
1520
  chartParams: {
1061
1521
  colors: {
1062
1522
  light: {
1523
+ label: [
1524
+ "#0088FF",
1525
+ "#FF72BB",
1526
+ "#16B59B",
1527
+ "#F9B052",
1528
+ "#6F3BD5",
1529
+ "#42C724",
1530
+ "#FF3232",
1531
+ "#904026",
1532
+ "#1F3172",
1533
+ "#E23D93"
1534
+ ]
1535
+ },
1536
+ dark: {
1063
1537
  label: [
1064
1538
  "#4BABFF",
1065
1539
  "#FFA0A0",
1066
1540
  "#7DD3C4",
1067
- "#F9B052",
1541
+ "#FAC77D",
1068
1542
  "#8454D4",
1069
1543
  "#42C724",
1070
- "#FF4B4B",
1071
- "#904026",
1072
- "#4B25B3",
1073
- "#C50669"
1544
+ "#FF6C6C",
1545
+ "#D4785A",
1546
+ "#5366AC",
1547
+ "#FF8DC8"
1074
1548
  ]
1075
1549
  }
1076
1550
  },
@@ -1106,17 +1580,31 @@ const P = {
1106
1580
  chartParams: {
1107
1581
  colors: {
1108
1582
  light: {
1583
+ label: [
1584
+ "#0088FF",
1585
+ "#FF72BB",
1586
+ "#16B59B",
1587
+ "#F9B052",
1588
+ "#6F3BD5",
1589
+ "#42C724",
1590
+ "#FF3232",
1591
+ "#904026",
1592
+ "#1F3172",
1593
+ "#E23D93"
1594
+ ]
1595
+ },
1596
+ dark: {
1109
1597
  label: [
1110
1598
  "#4BABFF",
1111
1599
  "#FFA0A0",
1112
1600
  "#7DD3C4",
1113
- "#F9B052",
1601
+ "#FAC77D",
1114
1602
  "#8454D4",
1115
1603
  "#42C724",
1116
- "#FF4B4B",
1117
- "#904026",
1118
- "#4B25B3",
1119
- "#C50669"
1604
+ "#FF6C6C",
1605
+ "#D4785A",
1606
+ "#5366AC",
1607
+ "#FF8DC8"
1120
1608
  ]
1121
1609
  }
1122
1610
  },
@@ -1145,24 +1633,38 @@ const P = {
1145
1633
  padding: 14
1146
1634
  }
1147
1635
  }
1148
- }, O = {
1636
+ }, k = {
1149
1637
  name: "PRESET_GRID_SEPARATE_SERIES",
1150
1638
  description: "Separate Series",
1151
1639
  descriptionZh: "分開顯示Series",
1152
1640
  chartParams: {
1153
1641
  colors: {
1154
1642
  light: {
1643
+ label: [
1644
+ "#0088FF",
1645
+ "#FF72BB",
1646
+ "#16B59B",
1647
+ "#F9B052",
1648
+ "#6F3BD5",
1649
+ "#42C724",
1650
+ "#FF3232",
1651
+ "#904026",
1652
+ "#1F3172",
1653
+ "#E23D93"
1654
+ ]
1655
+ },
1656
+ dark: {
1155
1657
  label: [
1156
1658
  "#4BABFF",
1157
1659
  "#FFA0A0",
1158
1660
  "#7DD3C4",
1159
- "#F9B052",
1661
+ "#FAC77D",
1160
1662
  "#8454D4",
1161
1663
  "#42C724",
1162
- "#FF4B4B",
1163
- "#904026",
1164
- "#4B25B3",
1165
- "#C50669"
1664
+ "#FF6C6C",
1665
+ "#D4785A",
1666
+ "#5366AC",
1667
+ "#FF8DC8"
1166
1668
  ]
1167
1669
  }
1168
1670
  },
@@ -1196,24 +1698,38 @@ const P = {
1196
1698
  padding: 14
1197
1699
  }
1198
1700
  }
1199
- }, N = {
1701
+ }, O = {
1200
1702
  name: "PRESET_GRID_SIMPLE",
1201
1703
  description: "Simple Grid",
1202
1704
  descriptionZh: "簡單Grid",
1203
1705
  chartParams: {
1204
1706
  colors: {
1205
1707
  light: {
1708
+ label: [
1709
+ "#0088FF",
1710
+ "#FF72BB",
1711
+ "#16B59B",
1712
+ "#F9B052",
1713
+ "#6F3BD5",
1714
+ "#42C724",
1715
+ "#FF3232",
1716
+ "#904026",
1717
+ "#1F3172",
1718
+ "#E23D93"
1719
+ ]
1720
+ },
1721
+ dark: {
1206
1722
  label: [
1207
1723
  "#4BABFF",
1208
1724
  "#FFA0A0",
1209
1725
  "#7DD3C4",
1210
- "#F9B052",
1726
+ "#FAC77D",
1211
1727
  "#8454D4",
1212
1728
  "#42C724",
1213
- "#FF4B4B",
1214
- "#904026",
1215
- "#4B25B3",
1216
- "#C50669"
1729
+ "#FF6C6C",
1730
+ "#D4785A",
1731
+ "#5366AC",
1732
+ "#FF8DC8"
1217
1733
  ]
1218
1734
  }
1219
1735
  },
@@ -1235,24 +1751,38 @@ const P = {
1235
1751
  padding: 7
1236
1752
  }
1237
1753
  }
1238
- }, v = {
1754
+ }, N = {
1239
1755
  name: "PRESET_LINE_AREAS_BASIC",
1240
1756
  description: "Basic LineArea",
1241
1757
  descriptionZh: "基本折線區域圖",
1242
1758
  chartParams: {
1243
1759
  colors: {
1244
1760
  light: {
1761
+ label: [
1762
+ "#0088FF",
1763
+ "#FF72BB",
1764
+ "#16B59B",
1765
+ "#F9B052",
1766
+ "#6F3BD5",
1767
+ "#42C724",
1768
+ "#FF3232",
1769
+ "#904026",
1770
+ "#1F3172",
1771
+ "#E23D93"
1772
+ ]
1773
+ },
1774
+ dark: {
1245
1775
  label: [
1246
1776
  "#4BABFF",
1247
1777
  "#FFA0A0",
1248
1778
  "#7DD3C4",
1249
- "#F9B052",
1779
+ "#FAC77D",
1250
1780
  "#8454D4",
1251
1781
  "#42C724",
1252
- "#FF4B4B",
1253
- "#904026",
1254
- "#4B25B3",
1255
- "#C50669"
1782
+ "#FF6C6C",
1783
+ "#D4785A",
1784
+ "#5366AC",
1785
+ "#FF8DC8"
1256
1786
  ]
1257
1787
  }
1258
1788
  },
@@ -1283,24 +1813,38 @@ const P = {
1283
1813
  listRectHeight: 2
1284
1814
  }
1285
1815
  }
1286
- }, Z = {
1816
+ }, v = {
1287
1817
  name: "PRESET_LINE_AREAS_CURVE",
1288
1818
  description: "Curve LineArea",
1289
1819
  descriptionZh: "弧線的折線區域圖",
1290
1820
  chartParams: {
1291
1821
  colors: {
1292
1822
  light: {
1823
+ label: [
1824
+ "#0088FF",
1825
+ "#FF72BB",
1826
+ "#16B59B",
1827
+ "#F9B052",
1828
+ "#6F3BD5",
1829
+ "#42C724",
1830
+ "#FF3232",
1831
+ "#904026",
1832
+ "#1F3172",
1833
+ "#E23D93"
1834
+ ]
1835
+ },
1836
+ dark: {
1293
1837
  label: [
1294
1838
  "#4BABFF",
1295
1839
  "#FFA0A0",
1296
1840
  "#7DD3C4",
1297
- "#F9B052",
1841
+ "#FAC77D",
1298
1842
  "#8454D4",
1299
1843
  "#42C724",
1300
- "#FF4B4B",
1301
- "#904026",
1302
- "#4B25B3",
1303
- "#C50669"
1844
+ "#FF6C6C",
1845
+ "#D4785A",
1846
+ "#5366AC",
1847
+ "#FF8DC8"
1304
1848
  ]
1305
1849
  }
1306
1850
  },
@@ -1341,24 +1885,38 @@ const P = {
1341
1885
  listRectHeight: 2
1342
1886
  }
1343
1887
  }
1344
- }, U = {
1888
+ }, Z = {
1345
1889
  name: "PRESET_LINE_AREAS_HORIZONTAL",
1346
1890
  description: "Horizontal LineArea",
1347
1891
  descriptionZh: "橫向折線區域圖",
1348
1892
  chartParams: {
1349
1893
  colors: {
1350
1894
  light: {
1895
+ label: [
1896
+ "#0088FF",
1897
+ "#FF72BB",
1898
+ "#16B59B",
1899
+ "#F9B052",
1900
+ "#6F3BD5",
1901
+ "#42C724",
1902
+ "#FF3232",
1903
+ "#904026",
1904
+ "#1F3172",
1905
+ "#E23D93"
1906
+ ]
1907
+ },
1908
+ dark: {
1351
1909
  label: [
1352
1910
  "#4BABFF",
1353
1911
  "#FFA0A0",
1354
1912
  "#7DD3C4",
1355
- "#F9B052",
1913
+ "#FAC77D",
1356
1914
  "#8454D4",
1357
1915
  "#42C724",
1358
- "#FF4B4B",
1359
- "#904026",
1360
- "#4B25B3",
1361
- "#C50669"
1916
+ "#FF6C6C",
1917
+ "#D4785A",
1918
+ "#5366AC",
1919
+ "#FF8DC8"
1362
1920
  ]
1363
1921
  }
1364
1922
  },
@@ -1392,24 +1950,38 @@ const P = {
1392
1950
  listRectHeight: 2
1393
1951
  }
1394
1952
  }
1395
- }, f = {
1953
+ }, U = {
1396
1954
  name: "PRESET_LINE_AREAS_LOOSE_TICKS",
1397
1955
  description: "Loose Ticks LineArea",
1398
1956
  descriptionZh: "寬鬆標籤的折線區域圖",
1399
1957
  chartParams: {
1400
1958
  colors: {
1401
1959
  light: {
1960
+ label: [
1961
+ "#0088FF",
1962
+ "#FF72BB",
1963
+ "#16B59B",
1964
+ "#F9B052",
1965
+ "#6F3BD5",
1966
+ "#42C724",
1967
+ "#FF3232",
1968
+ "#904026",
1969
+ "#1F3172",
1970
+ "#E23D93"
1971
+ ]
1972
+ },
1973
+ dark: {
1402
1974
  label: [
1403
1975
  "#4BABFF",
1404
1976
  "#FFA0A0",
1405
1977
  "#7DD3C4",
1406
- "#F9B052",
1978
+ "#FAC77D",
1407
1979
  "#8454D4",
1408
1980
  "#42C724",
1409
- "#FF4B4B",
1410
- "#904026",
1411
- "#4B25B3",
1412
- "#C50669"
1981
+ "#FF6C6C",
1982
+ "#D4785A",
1983
+ "#5366AC",
1984
+ "#FF8DC8"
1413
1985
  ]
1414
1986
  }
1415
1987
  },
@@ -1442,24 +2014,38 @@ const P = {
1442
2014
  listRectHeight: 2
1443
2015
  }
1444
2016
  }
1445
- }, V = {
2017
+ }, f = {
1446
2018
  name: "PRESET_LINE_AREAS_ROTATE_AXIS_LABEL",
1447
2019
  description: "Rotate Axis Label LineArea",
1448
2020
  descriptionZh: "傾斜標籤的折線區域圖",
1449
2021
  chartParams: {
1450
2022
  colors: {
1451
2023
  light: {
2024
+ label: [
2025
+ "#0088FF",
2026
+ "#FF72BB",
2027
+ "#16B59B",
2028
+ "#F9B052",
2029
+ "#6F3BD5",
2030
+ "#42C724",
2031
+ "#FF3232",
2032
+ "#904026",
2033
+ "#1F3172",
2034
+ "#E23D93"
2035
+ ]
2036
+ },
2037
+ dark: {
1452
2038
  label: [
1453
2039
  "#4BABFF",
1454
2040
  "#FFA0A0",
1455
2041
  "#7DD3C4",
1456
- "#F9B052",
2042
+ "#FAC77D",
1457
2043
  "#8454D4",
1458
2044
  "#42C724",
1459
- "#FF4B4B",
1460
- "#904026",
1461
- "#4B25B3",
1462
- "#C50669"
2045
+ "#FF6C6C",
2046
+ "#D4785A",
2047
+ "#5366AC",
2048
+ "#FF8DC8"
1463
2049
  ]
1464
2050
  }
1465
2051
  },
@@ -1494,24 +2080,38 @@ const P = {
1494
2080
  listRectHeight: 2
1495
2081
  }
1496
2082
  }
1497
- }, H = {
2083
+ }, V = {
1498
2084
  name: "PRESET_LINE_AREAS_SEPARATE_SERIES",
1499
2085
  description: "Separate Series LineArea",
1500
2086
  descriptionZh: "分開顯示Series的折線區域圖",
1501
2087
  chartParams: {
1502
2088
  colors: {
1503
2089
  light: {
2090
+ label: [
2091
+ "#0088FF",
2092
+ "#FF72BB",
2093
+ "#16B59B",
2094
+ "#F9B052",
2095
+ "#6F3BD5",
2096
+ "#42C724",
2097
+ "#FF3232",
2098
+ "#904026",
2099
+ "#1F3172",
2100
+ "#E23D93"
2101
+ ]
2102
+ },
2103
+ dark: {
1504
2104
  label: [
1505
2105
  "#4BABFF",
1506
2106
  "#FFA0A0",
1507
2107
  "#7DD3C4",
1508
- "#F9B052",
2108
+ "#FAC77D",
1509
2109
  "#8454D4",
1510
2110
  "#42C724",
1511
- "#FF4B4B",
1512
- "#904026",
1513
- "#4B25B3",
1514
- "#C50669"
2111
+ "#FF6C6C",
2112
+ "#D4785A",
2113
+ "#5366AC",
2114
+ "#FF8DC8"
1515
2115
  ]
1516
2116
  }
1517
2117
  },
@@ -1547,24 +2147,38 @@ const P = {
1547
2147
  listRectHeight: 2
1548
2148
  }
1549
2149
  }
1550
- }, k = {
2150
+ }, H = {
1551
2151
  name: "PRESET_LINE_AREAS_SIMPLE",
1552
2152
  description: "Simple LineArea",
1553
2153
  descriptionZh: "簡單折線區域圖",
1554
2154
  chartParams: {
1555
2155
  colors: {
1556
2156
  light: {
2157
+ label: [
2158
+ "#0088FF",
2159
+ "#FF72BB",
2160
+ "#16B59B",
2161
+ "#F9B052",
2162
+ "#6F3BD5",
2163
+ "#42C724",
2164
+ "#FF3232",
2165
+ "#904026",
2166
+ "#1F3172",
2167
+ "#E23D93"
2168
+ ]
2169
+ },
2170
+ dark: {
1557
2171
  label: [
1558
2172
  "#4BABFF",
1559
2173
  "#FFA0A0",
1560
2174
  "#7DD3C4",
1561
- "#F9B052",
2175
+ "#FAC77D",
1562
2176
  "#8454D4",
1563
2177
  "#42C724",
1564
- "#FF4B4B",
1565
- "#904026",
1566
- "#4B25B3",
1567
- "#C50669"
2178
+ "#FF6C6C",
2179
+ "#D4785A",
2180
+ "#5366AC",
2181
+ "#FF8DC8"
1568
2182
  ]
1569
2183
  }
1570
2184
  },
@@ -1606,17 +2220,31 @@ const P = {
1606
2220
  chartParams: {
1607
2221
  colors: {
1608
2222
  light: {
2223
+ label: [
2224
+ "#0088FF",
2225
+ "#FF72BB",
2226
+ "#16B59B",
2227
+ "#F9B052",
2228
+ "#6F3BD5",
2229
+ "#42C724",
2230
+ "#FF3232",
2231
+ "#904026",
2232
+ "#1F3172",
2233
+ "#E23D93"
2234
+ ]
2235
+ },
2236
+ dark: {
1609
2237
  label: [
1610
2238
  "#4BABFF",
1611
2239
  "#FFA0A0",
1612
2240
  "#7DD3C4",
1613
- "#F9B052",
2241
+ "#FAC77D",
1614
2242
  "#8454D4",
1615
2243
  "#42C724",
1616
- "#FF4B4B",
1617
- "#904026",
1618
- "#4B25B3",
1619
- "#C50669"
2244
+ "#FF6C6C",
2245
+ "#D4785A",
2246
+ "#5366AC",
2247
+ "#FF8DC8"
1620
2248
  ]
1621
2249
  }
1622
2250
  },
@@ -1647,17 +2275,31 @@ const P = {
1647
2275
  chartParams: {
1648
2276
  colors: {
1649
2277
  light: {
2278
+ label: [
2279
+ "#0088FF",
2280
+ "#FF72BB",
2281
+ "#16B59B",
2282
+ "#F9B052",
2283
+ "#6F3BD5",
2284
+ "#42C724",
2285
+ "#FF3232",
2286
+ "#904026",
2287
+ "#1F3172",
2288
+ "#E23D93"
2289
+ ]
2290
+ },
2291
+ dark: {
1650
2292
  label: [
1651
2293
  "#4BABFF",
1652
2294
  "#FFA0A0",
1653
2295
  "#7DD3C4",
1654
- "#F9B052",
2296
+ "#FAC77D",
1655
2297
  "#8454D4",
1656
- "#42C724",
1657
- "#FF4B4B",
1658
- "#904026",
1659
- "#4B25B3",
1660
- "#C50669"
2298
+ "#42C724",
2299
+ "#FF6C6C",
2300
+ "#D4785A",
2301
+ "#5366AC",
2302
+ "#FF8DC8"
1661
2303
  ]
1662
2304
  }
1663
2305
  },
@@ -1691,17 +2333,31 @@ const P = {
1691
2333
  chartParams: {
1692
2334
  colors: {
1693
2335
  light: {
2336
+ label: [
2337
+ "#0088FF",
2338
+ "#FF72BB",
2339
+ "#16B59B",
2340
+ "#F9B052",
2341
+ "#6F3BD5",
2342
+ "#42C724",
2343
+ "#FF3232",
2344
+ "#904026",
2345
+ "#1F3172",
2346
+ "#E23D93"
2347
+ ]
2348
+ },
2349
+ dark: {
1694
2350
  label: [
1695
2351
  "#4BABFF",
1696
2352
  "#FFA0A0",
1697
2353
  "#7DD3C4",
1698
- "#F9B052",
2354
+ "#FAC77D",
1699
2355
  "#8454D4",
1700
2356
  "#42C724",
1701
- "#FF4B4B",
1702
- "#904026",
1703
- "#4B25B3",
1704
- "#C50669"
2357
+ "#FF6C6C",
2358
+ "#D4785A",
2359
+ "#5366AC",
2360
+ "#FF8DC8"
1705
2361
  ]
1706
2362
  }
1707
2363
  },
@@ -1740,17 +2396,31 @@ const P = {
1740
2396
  chartParams: {
1741
2397
  colors: {
1742
2398
  light: {
2399
+ label: [
2400
+ "#0088FF",
2401
+ "#FF72BB",
2402
+ "#16B59B",
2403
+ "#F9B052",
2404
+ "#6F3BD5",
2405
+ "#42C724",
2406
+ "#FF3232",
2407
+ "#904026",
2408
+ "#1F3172",
2409
+ "#E23D93"
2410
+ ]
2411
+ },
2412
+ dark: {
1743
2413
  label: [
1744
2414
  "#4BABFF",
1745
2415
  "#FFA0A0",
1746
2416
  "#7DD3C4",
1747
- "#F9B052",
2417
+ "#FAC77D",
1748
2418
  "#8454D4",
1749
2419
  "#42C724",
1750
- "#FF4B4B",
1751
- "#904026",
1752
- "#4B25B3",
1753
- "#C50669"
2420
+ "#FF6C6C",
2421
+ "#D4785A",
2422
+ "#5366AC",
2423
+ "#FF8DC8"
1754
2424
  ]
1755
2425
  }
1756
2426
  },
@@ -1783,17 +2453,31 @@ const P = {
1783
2453
  chartParams: {
1784
2454
  colors: {
1785
2455
  light: {
2456
+ label: [
2457
+ "#0088FF",
2458
+ "#FF72BB",
2459
+ "#16B59B",
2460
+ "#F9B052",
2461
+ "#6F3BD5",
2462
+ "#42C724",
2463
+ "#FF3232",
2464
+ "#904026",
2465
+ "#1F3172",
2466
+ "#E23D93"
2467
+ ]
2468
+ },
2469
+ dark: {
1786
2470
  label: [
1787
2471
  "#4BABFF",
1788
2472
  "#FFA0A0",
1789
2473
  "#7DD3C4",
1790
- "#F9B052",
2474
+ "#FAC77D",
1791
2475
  "#8454D4",
1792
2476
  "#42C724",
1793
- "#FF4B4B",
1794
- "#904026",
1795
- "#4B25B3",
1796
- "#C50669"
2477
+ "#FF6C6C",
2478
+ "#D4785A",
2479
+ "#5366AC",
2480
+ "#FF8DC8"
1797
2481
  ]
1798
2482
  }
1799
2483
  },
@@ -1829,17 +2513,31 @@ const P = {
1829
2513
  chartParams: {
1830
2514
  colors: {
1831
2515
  light: {
2516
+ label: [
2517
+ "#0088FF",
2518
+ "#FF72BB",
2519
+ "#16B59B",
2520
+ "#F9B052",
2521
+ "#6F3BD5",
2522
+ "#42C724",
2523
+ "#FF3232",
2524
+ "#904026",
2525
+ "#1F3172",
2526
+ "#E23D93"
2527
+ ]
2528
+ },
2529
+ dark: {
1832
2530
  label: [
1833
2531
  "#4BABFF",
1834
2532
  "#FFA0A0",
1835
2533
  "#7DD3C4",
1836
- "#F9B052",
2534
+ "#FAC77D",
1837
2535
  "#8454D4",
1838
2536
  "#42C724",
1839
- "#FF4B4B",
1840
- "#904026",
1841
- "#4B25B3",
1842
- "#C50669"
2537
+ "#FF6C6C",
2538
+ "#D4785A",
2539
+ "#5366AC",
2540
+ "#FF8DC8"
1843
2541
  ]
1844
2542
  }
1845
2543
  },
@@ -1875,17 +2573,31 @@ const P = {
1875
2573
  chartParams: {
1876
2574
  colors: {
1877
2575
  light: {
2576
+ label: [
2577
+ "#0088FF",
2578
+ "#FF72BB",
2579
+ "#16B59B",
2580
+ "#F9B052",
2581
+ "#6F3BD5",
2582
+ "#42C724",
2583
+ "#FF3232",
2584
+ "#904026",
2585
+ "#1F3172",
2586
+ "#E23D93"
2587
+ ]
2588
+ },
2589
+ dark: {
1878
2590
  label: [
1879
2591
  "#4BABFF",
1880
2592
  "#FFA0A0",
1881
2593
  "#7DD3C4",
1882
- "#F9B052",
2594
+ "#FAC77D",
1883
2595
  "#8454D4",
1884
2596
  "#42C724",
1885
- "#FF4B4B",
1886
- "#904026",
1887
- "#4B25B3",
1888
- "#C50669"
2597
+ "#FF6C6C",
2598
+ "#D4785A",
2599
+ "#5366AC",
2600
+ "#FF8DC8"
1889
2601
  ]
1890
2602
  }
1891
2603
  },
@@ -1921,16 +2633,30 @@ const P = {
1921
2633
  colors: {
1922
2634
  light: {
1923
2635
  label: [
1924
- "#4BABFF",
1925
- "#94D6CB",
2636
+ "#0088FF",
2637
+ "#16B59B",
2638
+ "#6F3BD5",
2639
+ "#EE5F13",
1926
2640
  "#F9B052",
2641
+ "#D4785A",
2642
+ "#42C724",
2643
+ "#FF4B4B",
2644
+ "#1F3172",
2645
+ "#E23D93"
2646
+ ]
2647
+ },
2648
+ dark: {
2649
+ label: [
2650
+ "#4BABFF",
2651
+ "#7DD3C4",
1927
2652
  "#8454D4",
2653
+ "#FF6C6C",
2654
+ "#FAC77D",
1928
2655
  "#D58C75",
1929
2656
  "#42C724",
1930
2657
  "#FF8B8B",
1931
- "#904026",
1932
- "#C50669",
1933
- "#4B25B3"
2658
+ "#5366AC",
2659
+ "#FF8DC8"
1934
2660
  ]
1935
2661
  }
1936
2662
  },
@@ -1962,16 +2688,30 @@ const P = {
1962
2688
  colors: {
1963
2689
  light: {
1964
2690
  label: [
1965
- "#4BABFF",
1966
- "#94D6CB",
2691
+ "#0088FF",
2692
+ "#16B59B",
2693
+ "#6F3BD5",
2694
+ "#EE5F13",
1967
2695
  "#F9B052",
2696
+ "#D4785A",
2697
+ "#42C724",
2698
+ "#FF4B4B",
2699
+ "#1F3172",
2700
+ "#E23D93"
2701
+ ]
2702
+ },
2703
+ dark: {
2704
+ label: [
2705
+ "#4BABFF",
2706
+ "#7DD3C4",
1968
2707
  "#8454D4",
2708
+ "#FF6C6C",
2709
+ "#FAC77D",
1969
2710
  "#D58C75",
1970
2711
  "#42C724",
1971
2712
  "#FF8B8B",
1972
- "#904026",
1973
- "#C50669",
1974
- "#4B25B3"
2713
+ "#5366AC",
2714
+ "#FF8DC8"
1975
2715
  ]
1976
2716
  }
1977
2717
  },
@@ -2057,16 +2797,30 @@ const P = {
2057
2797
  colors: {
2058
2798
  light: {
2059
2799
  label: [
2060
- "#4BABFF",
2061
- "#94D6CB",
2800
+ "#0088FF",
2801
+ "#16B59B",
2802
+ "#6F3BD5",
2803
+ "#EE5F13",
2062
2804
  "#F9B052",
2805
+ "#D4785A",
2806
+ "#42C724",
2807
+ "#FF4B4B",
2808
+ "#1F3172",
2809
+ "#E23D93"
2810
+ ]
2811
+ },
2812
+ dark: {
2813
+ label: [
2814
+ "#4BABFF",
2815
+ "#7DD3C4",
2063
2816
  "#8454D4",
2817
+ "#FF6C6C",
2818
+ "#FAC77D",
2064
2819
  "#D58C75",
2065
2820
  "#42C724",
2066
2821
  "#FF8B8B",
2067
- "#904026",
2068
- "#C50669",
2069
- "#4B25B3"
2822
+ "#5366AC",
2823
+ "#FF8DC8"
2070
2824
  ]
2071
2825
  }
2072
2826
  },
@@ -2149,16 +2903,30 @@ const P = {
2149
2903
  colors: {
2150
2904
  light: {
2151
2905
  label: [
2152
- "#4BABFF",
2153
- "#94D6CB",
2906
+ "#0088FF",
2907
+ "#16B59B",
2908
+ "#6F3BD5",
2909
+ "#EE5F13",
2154
2910
  "#F9B052",
2911
+ "#D4785A",
2912
+ "#42C724",
2913
+ "#FF4B4B",
2914
+ "#1F3172",
2915
+ "#E23D93"
2916
+ ]
2917
+ },
2918
+ dark: {
2919
+ label: [
2920
+ "#4BABFF",
2921
+ "#7DD3C4",
2155
2922
  "#8454D4",
2923
+ "#FF6C6C",
2924
+ "#FAC77D",
2156
2925
  "#D58C75",
2157
2926
  "#42C724",
2158
2927
  "#FF8B8B",
2159
- "#904026",
2160
- "#C50669",
2161
- "#4B25B3"
2928
+ "#5366AC",
2929
+ "#FF8DC8"
2162
2930
  ]
2163
2931
  }
2164
2932
  },
@@ -2220,16 +2988,30 @@ const P = {
2220
2988
  colors: {
2221
2989
  light: {
2222
2990
  label: [
2223
- "#4BABFF",
2224
- "#94D6CB",
2991
+ "#0088FF",
2992
+ "#16B59B",
2993
+ "#6F3BD5",
2994
+ "#EE5F13",
2225
2995
  "#F9B052",
2996
+ "#D4785A",
2997
+ "#42C724",
2998
+ "#FF4B4B",
2999
+ "#1F3172",
3000
+ "#E23D93"
3001
+ ]
3002
+ },
3003
+ dark: {
3004
+ label: [
3005
+ "#4BABFF",
3006
+ "#7DD3C4",
2226
3007
  "#8454D4",
3008
+ "#FF6C6C",
3009
+ "#FAC77D",
2227
3010
  "#D58C75",
2228
3011
  "#42C724",
2229
3012
  "#FF8B8B",
2230
- "#904026",
2231
- "#C50669",
2232
- "#4B25B3"
3013
+ "#5366AC",
3014
+ "#FF8DC8"
2233
3015
  ]
2234
3016
  }
2235
3017
  },
@@ -2281,16 +3063,30 @@ const P = {
2281
3063
  colors: {
2282
3064
  light: {
2283
3065
  label: [
2284
- "#4BABFF",
2285
- "#94D6CB",
3066
+ "#0088FF",
3067
+ "#16B59B",
3068
+ "#6F3BD5",
3069
+ "#EE5F13",
2286
3070
  "#F9B052",
3071
+ "#D4785A",
3072
+ "#42C724",
3073
+ "#FF4B4B",
3074
+ "#1F3172",
3075
+ "#E23D93"
3076
+ ]
3077
+ },
3078
+ dark: {
3079
+ label: [
3080
+ "#4BABFF",
3081
+ "#7DD3C4",
2287
3082
  "#8454D4",
3083
+ "#FF6C6C",
3084
+ "#FAC77D",
2288
3085
  "#D58C75",
2289
3086
  "#42C724",
2290
3087
  "#FF8B8B",
2291
- "#904026",
2292
- "#C50669",
2293
- "#4B25B3"
3088
+ "#5366AC",
3089
+ "#FF8DC8"
2294
3090
  ]
2295
3091
  }
2296
3092
  },
@@ -2357,16 +3153,30 @@ const P = {
2357
3153
  colors: {
2358
3154
  light: {
2359
3155
  label: [
2360
- "#4BABFF",
2361
- "#94D6CB",
3156
+ "#0088FF",
3157
+ "#16B59B",
3158
+ "#6F3BD5",
3159
+ "#EE5F13",
2362
3160
  "#F9B052",
3161
+ "#D4785A",
3162
+ "#42C724",
3163
+ "#FF4B4B",
3164
+ "#1F3172",
3165
+ "#E23D93"
3166
+ ]
3167
+ },
3168
+ dark: {
3169
+ label: [
3170
+ "#4BABFF",
3171
+ "#7DD3C4",
2363
3172
  "#8454D4",
3173
+ "#FF6C6C",
3174
+ "#FAC77D",
2364
3175
  "#D58C75",
2365
3176
  "#42C724",
2366
3177
  "#FF8B8B",
2367
- "#904026",
2368
- "#C50669",
2369
- "#4B25B3"
3178
+ "#5366AC",
3179
+ "#FF8DC8"
2370
3180
  ]
2371
3181
  }
2372
3182
  },
@@ -2414,7 +3224,7 @@ const P = {
2414
3224
  padding: 14
2415
3225
  }
2416
3226
  }
2417
- }, it = {
3227
+ }, at = {
2418
3228
  name: "PRESET_MULTI_GRID_SIMPLE",
2419
3229
  description: "Simple MultiGrid",
2420
3230
  descriptionZh: "簡單MultiGrid",
@@ -2422,16 +3232,30 @@ const P = {
2422
3232
  colors: {
2423
3233
  light: {
2424
3234
  label: [
2425
- "#4BABFF",
2426
- "#94D6CB",
3235
+ "#0088FF",
3236
+ "#16B59B",
3237
+ "#6F3BD5",
3238
+ "#EE5F13",
2427
3239
  "#F9B052",
3240
+ "#D4785A",
3241
+ "#42C724",
3242
+ "#FF4B4B",
3243
+ "#1F3172",
3244
+ "#E23D93"
3245
+ ]
3246
+ },
3247
+ dark: {
3248
+ label: [
3249
+ "#4BABFF",
3250
+ "#7DD3C4",
2428
3251
  "#8454D4",
3252
+ "#FF6C6C",
3253
+ "#FAC77D",
2429
3254
  "#D58C75",
2430
3255
  "#42C724",
2431
3256
  "#FF8B8B",
2432
- "#904026",
2433
- "#C50669",
2434
- "#4B25B3"
3257
+ "#5366AC",
3258
+ "#FF8DC8"
2435
3259
  ]
2436
3260
  }
2437
3261
  },
@@ -2465,7 +3289,7 @@ const P = {
2465
3289
  ]
2466
3290
  }
2467
3291
  }
2468
- }, at = {
3292
+ }, it = {
2469
3293
  name: "PRESET_MULTI_LINE_AREAS_SEPARATE_GRID_SIMPLE",
2470
3294
  description: "Simple separate grid line areas",
2471
3295
  descriptionZh: "簡單的分開顯示Grid的折線區域圖",
@@ -2473,16 +3297,30 @@ const P = {
2473
3297
  colors: {
2474
3298
  light: {
2475
3299
  label: [
2476
- "#4BABFF",
2477
- "#94D6CB",
3300
+ "#0088FF",
3301
+ "#16B59B",
3302
+ "#6F3BD5",
3303
+ "#EE5F13",
2478
3304
  "#F9B052",
3305
+ "#D4785A",
3306
+ "#42C724",
3307
+ "#FF4B4B",
3308
+ "#1F3172",
3309
+ "#E23D93"
3310
+ ]
3311
+ },
3312
+ dark: {
3313
+ label: [
3314
+ "#4BABFF",
3315
+ "#7DD3C4",
2479
3316
  "#8454D4",
3317
+ "#FF6C6C",
3318
+ "#FAC77D",
2480
3319
  "#D58C75",
2481
3320
  "#42C724",
2482
3321
  "#FF8B8B",
2483
- "#904026",
2484
- "#C50669",
2485
- "#4B25B3"
3322
+ "#5366AC",
3323
+ "#FF8DC8"
2486
3324
  ]
2487
3325
  }
2488
3326
  },
@@ -2572,7 +3410,7 @@ const P = {
2572
3410
  ]
2573
3411
  }
2574
3412
  }
2575
- }, rt = {
3413
+ }, Ft = {
2576
3414
  name: "PRESET_MULTI_LINE_AREAS_SEPARATE_GRID",
2577
3415
  description: "Separate Grid line areas",
2578
3416
  descriptionZh: "分開顯示Grid的折線區域圖",
@@ -2580,16 +3418,30 @@ const P = {
2580
3418
  colors: {
2581
3419
  light: {
2582
3420
  label: [
2583
- "#4BABFF",
2584
- "#94D6CB",
3421
+ "#0088FF",
3422
+ "#16B59B",
3423
+ "#6F3BD5",
3424
+ "#EE5F13",
2585
3425
  "#F9B052",
3426
+ "#D4785A",
3427
+ "#42C724",
3428
+ "#FF4B4B",
3429
+ "#1F3172",
3430
+ "#E23D93"
3431
+ ]
3432
+ },
3433
+ dark: {
3434
+ label: [
3435
+ "#4BABFF",
3436
+ "#7DD3C4",
2586
3437
  "#8454D4",
3438
+ "#FF6C6C",
3439
+ "#FAC77D",
2587
3440
  "#D58C75",
2588
3441
  "#42C724",
2589
3442
  "#FF8B8B",
2590
- "#904026",
2591
- "#C50669",
2592
- "#4B25B3"
3443
+ "#5366AC",
3444
+ "#FF8DC8"
2593
3445
  ]
2594
3446
  }
2595
3447
  },
@@ -2683,7 +3535,7 @@ const P = {
2683
3535
  ]
2684
3536
  }
2685
3537
  }
2686
- }, st = {
3538
+ }, rt = {
2687
3539
  name: "PRESET_MULTI_LINES_SEPARATE_GRID_SIMPLE",
2688
3540
  description: "Simple separate grid line",
2689
3541
  descriptionZh: "簡單的分開顯示Grid的折線圖",
@@ -2691,16 +3543,30 @@ const P = {
2691
3543
  colors: {
2692
3544
  light: {
2693
3545
  label: [
2694
- "#4BABFF",
2695
- "#94D6CB",
3546
+ "#0088FF",
3547
+ "#16B59B",
3548
+ "#6F3BD5",
3549
+ "#EE5F13",
2696
3550
  "#F9B052",
3551
+ "#D4785A",
3552
+ "#42C724",
3553
+ "#FF4B4B",
3554
+ "#1F3172",
3555
+ "#E23D93"
3556
+ ]
3557
+ },
3558
+ dark: {
3559
+ label: [
3560
+ "#4BABFF",
3561
+ "#7DD3C4",
2697
3562
  "#8454D4",
3563
+ "#FF6C6C",
3564
+ "#FAC77D",
2698
3565
  "#D58C75",
2699
3566
  "#42C724",
2700
3567
  "#FF8B8B",
2701
- "#904026",
2702
- "#C50669",
2703
- "#4B25B3"
3568
+ "#5366AC",
3569
+ "#FF8DC8"
2704
3570
  ]
2705
3571
  }
2706
3572
  },
@@ -2793,16 +3659,30 @@ const P = {
2793
3659
  colors: {
2794
3660
  light: {
2795
3661
  label: [
2796
- "#4BABFF",
2797
- "#94D6CB",
3662
+ "#0088FF",
3663
+ "#16B59B",
3664
+ "#6F3BD5",
3665
+ "#EE5F13",
2798
3666
  "#F9B052",
3667
+ "#D4785A",
3668
+ "#42C724",
3669
+ "#FF4B4B",
3670
+ "#1F3172",
3671
+ "#E23D93"
3672
+ ]
3673
+ },
3674
+ dark: {
3675
+ label: [
3676
+ "#4BABFF",
3677
+ "#7DD3C4",
2799
3678
  "#8454D4",
3679
+ "#FF6C6C",
3680
+ "#FAC77D",
2800
3681
  "#D58C75",
2801
3682
  "#42C724",
2802
3683
  "#FF8B8B",
2803
- "#904026",
2804
- "#C50669",
2805
- "#4B25B3"
3684
+ "#5366AC",
3685
+ "#FF8DC8"
2806
3686
  ]
2807
3687
  }
2808
3688
  },
@@ -2878,7 +3758,7 @@ const P = {
2878
3758
  ]
2879
3759
  }
2880
3760
  }
2881
- }, ot = {
3761
+ }, st = {
2882
3762
  name: "PRESET_MULTI_VALUE_BASIC",
2883
3763
  description: "Basic MultiValue",
2884
3764
  descriptionZh: "基本MultiValue參數",
@@ -2897,6 +3777,20 @@ const P = {
2897
3777
  "#904026",
2898
3778
  "#C4C4C4"
2899
3779
  ]
3780
+ },
3781
+ dark: {
3782
+ label: [
3783
+ "#7DD3C4",
3784
+ "#FFA0A0",
3785
+ "#6CBAFF",
3786
+ "#55D339",
3787
+ "#F9B052",
3788
+ "#FF6C6C",
3789
+ "#8E6BC9",
3790
+ "#0088FF",
3791
+ "#904026",
3792
+ "#C4C4C4"
3793
+ ]
2900
3794
  }
2901
3795
  },
2902
3796
  padding: {
@@ -2912,7 +3806,7 @@ const P = {
2912
3806
  padding: 14
2913
3807
  }
2914
3808
  }
2915
- }, nt = {
3809
+ }, ot = {
2916
3810
  name: "PRESET_MULTI_VALUE_SEPARATE_CATEGORY",
2917
3811
  description: "MultiValue separate category",
2918
3812
  descriptionZh: "MultiValue 分開顯示category",
@@ -2931,6 +3825,20 @@ const P = {
2931
3825
  "#904026",
2932
3826
  "#C4C4C4"
2933
3827
  ]
3828
+ },
3829
+ dark: {
3830
+ label: [
3831
+ "#7DD3C4",
3832
+ "#FFA0A0",
3833
+ "#6CBAFF",
3834
+ "#55D339",
3835
+ "#F9B052",
3836
+ "#FF6C6C",
3837
+ "#8E6BC9",
3838
+ "#0088FF",
3839
+ "#904026",
3840
+ "#C4C4C4"
3841
+ ]
2934
3842
  }
2935
3843
  },
2936
3844
  padding: {
@@ -2976,6 +3884,20 @@ const P = {
2976
3884
  "#904026",
2977
3885
  "#C4C4C4"
2978
3886
  ]
3887
+ },
3888
+ dark: {
3889
+ label: [
3890
+ "#7DD3C4",
3891
+ "#FFA0A0",
3892
+ "#6CBAFF",
3893
+ "#55D339",
3894
+ "#F9B052",
3895
+ "#FF6C6C",
3896
+ "#8E6BC9",
3897
+ "#0088FF",
3898
+ "#904026",
3899
+ "#C4C4C4"
3900
+ ]
2979
3901
  }
2980
3902
  },
2981
3903
  padding: {
@@ -2991,24 +3913,38 @@ const P = {
2991
3913
  padding: 7
2992
3914
  }
2993
3915
  }
2994
- }, Et = {
3916
+ }, nt = {
2995
3917
  name: "PRESET_RACING_BARS_ALL_ITEMS",
2996
3918
  description: "Racing bars for all items",
2997
3919
  descriptionZh: "顯示全部項目的賽跑長條圖",
2998
3920
  chartParams: {
2999
3921
  colors: {
3000
3922
  light: {
3923
+ label: [
3924
+ "#0088FF",
3925
+ "#16B59B",
3926
+ "#6F3BD5",
3927
+ "#EE5F13",
3928
+ "#F9B052",
3929
+ "#D4785A",
3930
+ "#42C724",
3931
+ "#FF4B4B",
3932
+ "#1F3172",
3933
+ "#E23D93"
3934
+ ]
3935
+ },
3936
+ dark: {
3001
3937
  label: [
3002
3938
  "#4BABFF",
3003
- "#FFA0A0",
3004
3939
  "#7DD3C4",
3005
- "#F9B052",
3006
3940
  "#8454D4",
3941
+ "#FF6C6C",
3942
+ "#FAC77D",
3943
+ "#D58C75",
3007
3944
  "#42C724",
3008
- "#FF4B4B",
3009
- "#904026",
3010
- "#4B25B3",
3011
- "#C50669"
3945
+ "#FF8B8B",
3946
+ "#5366AC",
3947
+ "#FF8DC8"
3012
3948
  ]
3013
3949
  }
3014
3950
  },
@@ -3030,24 +3966,38 @@ const P = {
3030
3966
  padding: 14
3031
3967
  }
3032
3968
  }
3033
- }, ct = {
3969
+ }, Bt = {
3034
3970
  name: "PRESET_RACING_BARS_BASIC",
3035
3971
  description: "Basic racing bars",
3036
3972
  descriptionZh: "基本賽跑長條圖",
3037
3973
  chartParams: {
3038
3974
  colors: {
3039
3975
  light: {
3976
+ label: [
3977
+ "#0088FF",
3978
+ "#16B59B",
3979
+ "#6F3BD5",
3980
+ "#EE5F13",
3981
+ "#F9B052",
3982
+ "#D4785A",
3983
+ "#42C724",
3984
+ "#FF4B4B",
3985
+ "#1F3172",
3986
+ "#E23D93"
3987
+ ]
3988
+ },
3989
+ dark: {
3040
3990
  label: [
3041
3991
  "#4BABFF",
3042
- "#FFA0A0",
3043
3992
  "#7DD3C4",
3044
- "#F9B052",
3045
3993
  "#8454D4",
3994
+ "#FF6C6C",
3995
+ "#FAC77D",
3996
+ "#D58C75",
3046
3997
  "#42C724",
3047
- "#FF4B4B",
3048
- "#904026",
3049
- "#4B25B3",
3050
- "#C50669"
3998
+ "#FF8B8B",
3999
+ "#5366AC",
4000
+ "#FF8DC8"
3051
4001
  ]
3052
4002
  }
3053
4003
  },
@@ -3068,24 +4018,38 @@ const P = {
3068
4018
  padding: 14
3069
4019
  }
3070
4020
  }
3071
- }, Ft = {
4021
+ }, Et = {
3072
4022
  name: "PRESET_RACING_BARS_FAST",
3073
4023
  description: "Fast racing bars",
3074
4024
  descriptionZh: "快速的賽跑長條圖",
3075
4025
  chartParams: {
3076
4026
  colors: {
3077
4027
  light: {
4028
+ label: [
4029
+ "#0088FF",
4030
+ "#16B59B",
4031
+ "#6F3BD5",
4032
+ "#EE5F13",
4033
+ "#F9B052",
4034
+ "#D4785A",
4035
+ "#42C724",
4036
+ "#FF4B4B",
4037
+ "#1F3172",
4038
+ "#E23D93"
4039
+ ]
4040
+ },
4041
+ dark: {
3078
4042
  label: [
3079
4043
  "#4BABFF",
3080
- "#FFA0A0",
3081
4044
  "#7DD3C4",
3082
- "#F9B052",
3083
4045
  "#8454D4",
4046
+ "#FF6C6C",
4047
+ "#FAC77D",
4048
+ "#D58C75",
3084
4049
  "#42C724",
3085
- "#FF4B4B",
3086
- "#904026",
3087
- "#4B25B3",
3088
- "#C50669"
4050
+ "#FF8B8B",
4051
+ "#5366AC",
4052
+ "#FF8DC8"
3089
4053
  ]
3090
4054
  }
3091
4055
  },
@@ -3106,24 +4070,38 @@ const P = {
3106
4070
  padding: 14
3107
4071
  }
3108
4072
  }
3109
- }, gt = {
4073
+ }, Ct = {
3110
4074
  name: "PRESET_RACING_BARS_FASTER",
3111
4075
  description: "Faster racing bars",
3112
4076
  descriptionZh: "更快速的賽跑長條圖",
3113
4077
  chartParams: {
3114
4078
  colors: {
3115
4079
  light: {
4080
+ label: [
4081
+ "#0088FF",
4082
+ "#16B59B",
4083
+ "#6F3BD5",
4084
+ "#EE5F13",
4085
+ "#F9B052",
4086
+ "#D4785A",
4087
+ "#42C724",
4088
+ "#FF4B4B",
4089
+ "#1F3172",
4090
+ "#E23D93"
4091
+ ]
4092
+ },
4093
+ dark: {
3116
4094
  label: [
3117
4095
  "#4BABFF",
3118
- "#FFA0A0",
3119
4096
  "#7DD3C4",
3120
- "#F9B052",
3121
4097
  "#8454D4",
4098
+ "#FF6C6C",
4099
+ "#FAC77D",
4100
+ "#D58C75",
3122
4101
  "#42C724",
3123
- "#FF4B4B",
3124
- "#904026",
3125
- "#4B25B3",
3126
- "#C50669"
4102
+ "#FF8B8B",
4103
+ "#5366AC",
4104
+ "#FF8DC8"
3127
4105
  ]
3128
4106
  }
3129
4107
  },
@@ -3144,24 +4122,38 @@ const P = {
3144
4122
  padding: 14
3145
4123
  }
3146
4124
  }
3147
- }, Bt = {
4125
+ }, At = {
3148
4126
  name: "PRESET_RACING_BARS_LOOP",
3149
4127
  description: "Looping racing bars",
3150
4128
  descriptionZh: "循環的賽跑長條圖",
3151
4129
  chartParams: {
3152
4130
  colors: {
3153
4131
  light: {
4132
+ label: [
4133
+ "#0088FF",
4134
+ "#16B59B",
4135
+ "#6F3BD5",
4136
+ "#EE5F13",
4137
+ "#F9B052",
4138
+ "#D4785A",
4139
+ "#42C724",
4140
+ "#FF4B4B",
4141
+ "#1F3172",
4142
+ "#E23D93"
4143
+ ]
4144
+ },
4145
+ dark: {
3154
4146
  label: [
3155
4147
  "#4BABFF",
3156
- "#FFA0A0",
3157
4148
  "#7DD3C4",
3158
- "#F9B052",
3159
4149
  "#8454D4",
4150
+ "#FF6C6C",
4151
+ "#FAC77D",
4152
+ "#D58C75",
3160
4153
  "#42C724",
3161
- "#FF4B4B",
3162
- "#904026",
3163
- "#4B25B3",
3164
- "#C50669"
4154
+ "#FF8B8B",
4155
+ "#5366AC",
4156
+ "#FF8DC8"
3165
4157
  ]
3166
4158
  }
3167
4159
  },
@@ -3183,24 +4175,38 @@ const P = {
3183
4175
  padding: 14
3184
4176
  }
3185
4177
  }
3186
- }, pt = {
4178
+ }, Dt = {
3187
4179
  name: "PRESET_RACING_BARS_OUTSIDE_LABELS",
3188
4180
  description: "Racing bars with labels outside",
3189
4181
  descriptionZh: "標籤在外面的賽跑長條圖",
3190
4182
  chartParams: {
3191
4183
  colors: {
3192
4184
  light: {
4185
+ label: [
4186
+ "#0088FF",
4187
+ "#16B59B",
4188
+ "#6F3BD5",
4189
+ "#EE5F13",
4190
+ "#F9B052",
4191
+ "#D4785A",
4192
+ "#42C724",
4193
+ "#FF4B4B",
4194
+ "#1F3172",
4195
+ "#E23D93"
4196
+ ]
4197
+ },
4198
+ dark: {
3193
4199
  label: [
3194
4200
  "#4BABFF",
3195
- "#FFA0A0",
3196
4201
  "#7DD3C4",
3197
- "#F9B052",
3198
4202
  "#8454D4",
4203
+ "#FF6C6C",
4204
+ "#FAC77D",
4205
+ "#D58C75",
3199
4206
  "#42C724",
3200
- "#FF4B4B",
3201
- "#904026",
3202
- "#4B25B3",
3203
- "#C50669"
4207
+ "#FF8B8B",
4208
+ "#5366AC",
4209
+ "#FF8DC8"
3204
4210
  ]
3205
4211
  }
3206
4212
  },
@@ -3225,24 +4231,38 @@ const P = {
3225
4231
  padding: 14
3226
4232
  }
3227
4233
  }
3228
- }, At = {
4234
+ }, ct = {
3229
4235
  name: "PRESET_RACING_BARS_SEPARATE_CATEGORY",
3230
4236
  description: "Racing bars with separate category",
3231
4237
  descriptionZh: "分開顯示category的賽跑長條圖",
3232
4238
  chartParams: {
3233
4239
  colors: {
3234
4240
  light: {
4241
+ label: [
4242
+ "#0088FF",
4243
+ "#16B59B",
4244
+ "#6F3BD5",
4245
+ "#EE5F13",
4246
+ "#F9B052",
4247
+ "#D4785A",
4248
+ "#42C724",
4249
+ "#FF4B4B",
4250
+ "#1F3172",
4251
+ "#E23D93"
4252
+ ]
4253
+ },
4254
+ dark: {
3235
4255
  label: [
3236
4256
  "#4BABFF",
3237
- "#FFA0A0",
3238
4257
  "#7DD3C4",
3239
- "#F9B052",
3240
4258
  "#8454D4",
4259
+ "#FF6C6C",
4260
+ "#FAC77D",
4261
+ "#D58C75",
3241
4262
  "#42C724",
3242
- "#FF4B4B",
3243
- "#904026",
3244
- "#4B25B3",
3245
- "#C50669"
4263
+ "#FF8B8B",
4264
+ "#5366AC",
4265
+ "#FF8DC8"
3246
4266
  ]
3247
4267
  }
3248
4268
  },
@@ -3280,24 +4300,38 @@ const P = {
3280
4300
  padding: 14
3281
4301
  }
3282
4302
  }
3283
- }, St = {
4303
+ }, gt = {
3284
4304
  name: "PRESET_RACING_BARS_SIMPLE",
3285
4305
  description: "Simple racing bars",
3286
4306
  descriptionZh: "簡單賽跑長條圖",
3287
4307
  chartParams: {
3288
4308
  colors: {
3289
4309
  light: {
4310
+ label: [
4311
+ "#0088FF",
4312
+ "#16B59B",
4313
+ "#6F3BD5",
4314
+ "#EE5F13",
4315
+ "#F9B052",
4316
+ "#D4785A",
4317
+ "#42C724",
4318
+ "#FF4B4B",
4319
+ "#1F3172",
4320
+ "#E23D93"
4321
+ ]
4322
+ },
4323
+ dark: {
3290
4324
  label: [
3291
4325
  "#4BABFF",
3292
- "#FFA0A0",
3293
4326
  "#7DD3C4",
3294
- "#F9B052",
3295
4327
  "#8454D4",
4328
+ "#FF6C6C",
4329
+ "#FAC77D",
4330
+ "#D58C75",
3296
4331
  "#42C724",
3297
- "#FF4B4B",
3298
- "#904026",
3299
- "#4B25B3",
3300
- "#C50669"
4332
+ "#FF8B8B",
4333
+ "#5366AC",
4334
+ "#FF8DC8"
3301
4335
  ]
3302
4336
  }
3303
4337
  },
@@ -3318,24 +4352,38 @@ const P = {
3318
4352
  padding: 7
3319
4353
  }
3320
4354
  }
3321
- }, Rt = {
4355
+ }, pt = {
3322
4356
  name: "PRESET_RACING_BARS_STOP",
3323
4357
  description: "Stopped racing bars",
3324
4358
  descriptionZh: "停止的賽跑長條圖",
3325
4359
  chartParams: {
3326
4360
  colors: {
3327
4361
  light: {
4362
+ label: [
4363
+ "#0088FF",
4364
+ "#16B59B",
4365
+ "#6F3BD5",
4366
+ "#EE5F13",
4367
+ "#F9B052",
4368
+ "#D4785A",
4369
+ "#42C724",
4370
+ "#FF4B4B",
4371
+ "#1F3172",
4372
+ "#E23D93"
4373
+ ]
4374
+ },
4375
+ dark: {
3328
4376
  label: [
3329
4377
  "#4BABFF",
3330
- "#FFA0A0",
3331
4378
  "#7DD3C4",
3332
- "#F9B052",
3333
4379
  "#8454D4",
4380
+ "#FF6C6C",
4381
+ "#FAC77D",
4382
+ "#D58C75",
3334
4383
  "#42C724",
3335
- "#FF4B4B",
3336
- "#904026",
3337
- "#4B25B3",
3338
- "#C50669"
4384
+ "#FF8B8B",
4385
+ "#5366AC",
4386
+ "#FF8DC8"
3339
4387
  ]
3340
4388
  }
3341
4389
  },
@@ -3355,7 +4403,7 @@ const P = {
3355
4403
  padding: 14
3356
4404
  }
3357
4405
  }
3358
- }, ut = {
4406
+ }, St = {
3359
4407
  name: "PRESET_SCATTER_BASIC",
3360
4408
  description: "Basic scatter",
3361
4409
  descriptionZh: "基本散布圖",
@@ -3368,12 +4416,26 @@ const P = {
3368
4416
  "#FF3232",
3369
4417
  "#8E6BC9",
3370
4418
  "#904026",
3371
- "#D117EA",
4419
+ "#E23D93",
3372
4420
  "#F38428",
3373
4421
  "#6BDC51",
3374
4422
  "#C50669",
3375
4423
  "#4B25B3"
3376
4424
  ]
4425
+ },
4426
+ dark: {
4427
+ label: [
4428
+ "#7DD3C4",
4429
+ "#4BABFF",
4430
+ "#FF6C6C",
4431
+ "#AA93D2",
4432
+ "#D58C75",
4433
+ "#FF8DC8",
4434
+ "#F9B052",
4435
+ "#ACE1A0",
4436
+ "#F35CAA",
4437
+ "#6F3BD5"
4438
+ ]
3377
4439
  }
3378
4440
  },
3379
4441
  padding: {
@@ -3391,7 +4453,7 @@ const P = {
3391
4453
  // 圓型圖例列點
3392
4454
  }
3393
4455
  }
3394
- }, _t = {
4456
+ }, Rt = {
3395
4457
  name: "PRESET_SCATTER_BUBBLES_BASIC",
3396
4458
  description: "Basic scatter bubbles",
3397
4459
  descriptionZh: "基本的散布泡泡圖",
@@ -3399,14 +4461,28 @@ const P = {
3399
4461
  colors: {
3400
4462
  light: {
3401
4463
  label: [
3402
- "#6CBAFF",
4464
+ "#0088FF",
4465
+ "#FF3232",
4466
+ "#38BEA8",
4467
+ "#6F3BD5",
4468
+ "#314285",
4469
+ "#42C724",
4470
+ "#D52580",
4471
+ "#F4721B",
4472
+ "#D117EA",
4473
+ "#7E7D7D"
4474
+ ]
4475
+ },
4476
+ dark: {
4477
+ label: [
4478
+ "#4BABFF",
3403
4479
  "#FF6C6C",
3404
- "#F9B052",
3405
4480
  "#7DD3C4",
3406
- "#AA93D2",
3407
- "#0088FF",
3408
- "#FFBABA",
4481
+ "#8E6BC9",
4482
+ "#5366AC",
3409
4483
  "#86DC72",
4484
+ "#FF72BB",
4485
+ "#F9B052",
3410
4486
  "#EF76FF",
3411
4487
  "#C4C4C4"
3412
4488
  ]
@@ -3427,7 +4503,7 @@ const P = {
3427
4503
  // 圓型圖例列點
3428
4504
  }
3429
4505
  }
3430
- }, Ct = {
4506
+ }, ut = {
3431
4507
  name: "PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS",
3432
4508
  description: "Scatter bubbles with radius scaling",
3433
4509
  descriptionZh: "以半徑尺寸為比例的散布泡泡圖",
@@ -3435,14 +4511,28 @@ const P = {
3435
4511
  colors: {
3436
4512
  light: {
3437
4513
  label: [
3438
- "#6CBAFF",
4514
+ "#0088FF",
4515
+ "#FF3232",
4516
+ "#38BEA8",
4517
+ "#6F3BD5",
4518
+ "#314285",
4519
+ "#42C724",
4520
+ "#D52580",
4521
+ "#F4721B",
4522
+ "#D117EA",
4523
+ "#7E7D7D"
4524
+ ]
4525
+ },
4526
+ dark: {
4527
+ label: [
4528
+ "#4BABFF",
3439
4529
  "#FF6C6C",
3440
- "#F9B052",
3441
4530
  "#7DD3C4",
3442
- "#AA93D2",
3443
- "#0088FF",
3444
- "#FFBABA",
4531
+ "#8E6BC9",
4532
+ "#5366AC",
3445
4533
  "#86DC72",
4534
+ "#FF72BB",
4535
+ "#F9B052",
3446
4536
  "#EF76FF",
3447
4537
  "#C4C4C4"
3448
4538
  ]
@@ -3466,22 +4556,36 @@ const P = {
3466
4556
  arcScaleType: "radius"
3467
4557
  }
3468
4558
  }
3469
- }, mt = {
4559
+ }, _t = {
3470
4560
  name: "PRESET_SCATTER_BUBBLES_LINEAR_OPACITY",
3471
4561
  description: "Scatter bubbles with linear opacity",
3472
- descriptionZh: "漸變透明度的散布泡泡圖",
4562
+ descriptionZh: "以資料量漸變透明度的散布泡泡圖",
3473
4563
  chartParams: {
3474
4564
  colors: {
3475
4565
  light: {
3476
4566
  label: [
3477
- "#6CBAFF",
4567
+ "#0088FF",
4568
+ "#FF3232",
4569
+ "#38BEA8",
4570
+ "#6F3BD5",
4571
+ "#314285",
4572
+ "#42C724",
4573
+ "#D52580",
4574
+ "#F4721B",
4575
+ "#D117EA",
4576
+ "#7E7D7D"
4577
+ ]
4578
+ },
4579
+ dark: {
4580
+ label: [
4581
+ "#4BABFF",
3478
4582
  "#FF6C6C",
3479
- "#F9B052",
3480
4583
  "#7DD3C4",
3481
- "#AA93D2",
3482
- "#0088FF",
3483
- "#FFBABA",
4584
+ "#8E6BC9",
4585
+ "#5366AC",
3484
4586
  "#86DC72",
4587
+ "#FF72BB",
4588
+ "#F9B052",
3485
4589
  "#EF76FF",
3486
4590
  "#C4C4C4"
3487
4591
  ]
@@ -3502,10 +4606,10 @@ const P = {
3502
4606
  // 圓型圖例列點
3503
4607
  },
3504
4608
  ScatterBubbles: {
3505
- valueLinearOpacity: [0.6, 0.95]
4609
+ valueLinearOpacity: [0.5, 1]
3506
4610
  }
3507
4611
  }
3508
- }, ht = {
4612
+ }, mt = {
3509
4613
  name: "PRESET_SCATTER_BUBBLES_SEPARATE_CATEGORY",
3510
4614
  description: "Scatter bubbles with separate category",
3511
4615
  descriptionZh: "分開顯示category的散布泡泡圖",
@@ -3513,14 +4617,28 @@ const P = {
3513
4617
  colors: {
3514
4618
  light: {
3515
4619
  label: [
3516
- "#6CBAFF",
4620
+ "#0088FF",
4621
+ "#FF3232",
4622
+ "#38BEA8",
4623
+ "#6F3BD5",
4624
+ "#314285",
4625
+ "#42C724",
4626
+ "#D52580",
4627
+ "#F4721B",
4628
+ "#D117EA",
4629
+ "#7E7D7D"
4630
+ ]
4631
+ },
4632
+ dark: {
4633
+ label: [
4634
+ "#4BABFF",
3517
4635
  "#FF6C6C",
3518
- "#F9B052",
3519
4636
  "#7DD3C4",
3520
- "#AA93D2",
3521
- "#0088FF",
3522
- "#FFBABA",
4637
+ "#8E6BC9",
4638
+ "#5366AC",
3523
4639
  "#86DC72",
4640
+ "#FF72BB",
4641
+ "#F9B052",
3524
4642
  "#EF76FF",
3525
4643
  "#C4C4C4"
3526
4644
  ]
@@ -3544,7 +4662,7 @@ const P = {
3544
4662
  // 圓型圖例列點
3545
4663
  }
3546
4664
  }
3547
- }, Pt = {
4665
+ }, ht = {
3548
4666
  name: "PRESET_SCATTER_BUBBLES_SIMPLE",
3549
4667
  description: "Simple scatter bubbles",
3550
4668
  descriptionZh: "簡單的散布泡泡圖",
@@ -3552,14 +4670,28 @@ const P = {
3552
4670
  colors: {
3553
4671
  light: {
3554
4672
  label: [
3555
- "#6CBAFF",
4673
+ "#0088FF",
4674
+ "#FF3232",
4675
+ "#38BEA8",
4676
+ "#6F3BD5",
4677
+ "#314285",
4678
+ "#42C724",
4679
+ "#D52580",
4680
+ "#F4721B",
4681
+ "#D117EA",
4682
+ "#7E7D7D"
4683
+ ]
4684
+ },
4685
+ dark: {
4686
+ label: [
4687
+ "#4BABFF",
3556
4688
  "#FF6C6C",
3557
- "#F9B052",
3558
4689
  "#7DD3C4",
3559
- "#AA93D2",
3560
- "#0088FF",
3561
- "#FFBABA",
4690
+ "#8E6BC9",
4691
+ "#5366AC",
3562
4692
  "#86DC72",
4693
+ "#FF72BB",
4694
+ "#F9B052",
3563
4695
  "#EF76FF",
3564
4696
  "#C4C4C4"
3565
4697
  ]
@@ -3580,7 +4712,7 @@ const P = {
3580
4712
  // 圓型圖例列點
3581
4713
  }
3582
4714
  }
3583
- }, Dt = {
4715
+ }, Pt = {
3584
4716
  name: "PRESET_SCATTER_SEPARATE_CATEGORY",
3585
4717
  description: "Scatter with separate category",
3586
4718
  descriptionZh: "分開顯示category的散布圖",
@@ -3593,12 +4725,26 @@ const P = {
3593
4725
  "#FF3232",
3594
4726
  "#8E6BC9",
3595
4727
  "#904026",
3596
- "#D117EA",
4728
+ "#E23D93",
3597
4729
  "#F38428",
3598
4730
  "#6BDC51",
3599
4731
  "#C50669",
3600
4732
  "#4B25B3"
3601
4733
  ]
4734
+ },
4735
+ dark: {
4736
+ label: [
4737
+ "#7DD3C4",
4738
+ "#4BABFF",
4739
+ "#FF6C6C",
4740
+ "#AA93D2",
4741
+ "#D58C75",
4742
+ "#FF8DC8",
4743
+ "#F9B052",
4744
+ "#ACE1A0",
4745
+ "#F35CAA",
4746
+ "#6F3BD5"
4747
+ ]
3602
4748
  }
3603
4749
  },
3604
4750
  padding: {
@@ -3627,7 +4773,7 @@ const P = {
3627
4773
  // 圓型圖例列點
3628
4774
  }
3629
4775
  }
3630
- }, Tt = {
4776
+ }, bt = {
3631
4777
  name: "PRESET_SCATTER_SIMPLE",
3632
4778
  description: "Simple scatter",
3633
4779
  descriptionZh: "簡單散布圖",
@@ -3640,12 +4786,26 @@ const P = {
3640
4786
  "#FF3232",
3641
4787
  "#8E6BC9",
3642
4788
  "#904026",
3643
- "#D117EA",
4789
+ "#E23D93",
3644
4790
  "#F38428",
3645
4791
  "#6BDC51",
3646
4792
  "#C50669",
3647
4793
  "#4B25B3"
3648
4794
  ]
4795
+ },
4796
+ dark: {
4797
+ label: [
4798
+ "#7DD3C4",
4799
+ "#4BABFF",
4800
+ "#FF6C6C",
4801
+ "#AA93D2",
4802
+ "#D58C75",
4803
+ "#FF8DC8",
4804
+ "#F9B052",
4805
+ "#ACE1A0",
4806
+ "#F35CAA",
4807
+ "#6F3BD5"
4808
+ ]
3649
4809
  }
3650
4810
  },
3651
4811
  padding: {
@@ -3663,24 +4823,38 @@ const P = {
3663
4823
  // 圓型圖例列點
3664
4824
  }
3665
4825
  }
3666
- }, It = {
4826
+ }, Tt = {
3667
4827
  name: "PRESET_FORCE_DIRECTED_BASIC",
3668
4828
  description: "Basic force directed chart",
3669
4829
  descriptionZh: "基本力導向圖",
3670
4830
  chartParams: {
3671
4831
  colors: {
3672
4832
  light: {
4833
+ label: [
4834
+ "#0088FF",
4835
+ "#FF72BB",
4836
+ "#16B59B",
4837
+ "#F9B052",
4838
+ "#6F3BD5",
4839
+ "#42C724",
4840
+ "#FF3232",
4841
+ "#904026",
4842
+ "#1F3172",
4843
+ "#E23D93"
4844
+ ]
4845
+ },
4846
+ dark: {
3673
4847
  label: [
3674
4848
  "#4BABFF",
3675
4849
  "#FFA0A0",
3676
4850
  "#7DD3C4",
3677
- "#F9B052",
4851
+ "#FAC77D",
3678
4852
  "#8454D4",
3679
4853
  "#42C724",
3680
- "#FF4B4B",
3681
- "#904026",
3682
- "#4B25B3",
3683
- "#C50669"
4854
+ "#FF6C6C",
4855
+ "#D4785A",
4856
+ "#5366AC",
4857
+ "#FF8DC8"
3684
4858
  ]
3685
4859
  }
3686
4860
  }
@@ -3692,7 +4866,7 @@ const P = {
3692
4866
  // 圓型圖例列點
3693
4867
  }
3694
4868
  }
3695
- }, bt = {
4869
+ }, It = {
3696
4870
  name: "PRESET_FORCE_DIRECTED_BUBBLES_BASIC",
3697
4871
  description: "Basic force directed bubbles chart",
3698
4872
  descriptionZh: "基本力導向泡泡圖",
@@ -3700,14 +4874,28 @@ const P = {
3700
4874
  colors: {
3701
4875
  light: {
3702
4876
  label: [
3703
- "#6CBAFF",
4877
+ "#0088FF",
4878
+ "#FF3232",
4879
+ "#38BEA8",
4880
+ "#6F3BD5",
4881
+ "#314285",
4882
+ "#42C724",
4883
+ "#D52580",
4884
+ "#F4721B",
4885
+ "#D117EA",
4886
+ "#7E7D7D"
4887
+ ]
4888
+ },
4889
+ dark: {
4890
+ label: [
4891
+ "#4BABFF",
3704
4892
  "#FF6C6C",
3705
- "#F9B052",
3706
4893
  "#7DD3C4",
3707
- "#AA93D2",
3708
- "#0088FF",
3709
- "#FFBABA",
4894
+ "#8E6BC9",
4895
+ "#5366AC",
3710
4896
  "#86DC72",
4897
+ "#FF72BB",
4898
+ "#F9B052",
3711
4899
  "#EF76FF",
3712
4900
  "#C4C4C4"
3713
4901
  ]
@@ -3729,14 +4917,28 @@ const P = {
3729
4917
  colors: {
3730
4918
  light: {
3731
4919
  label: [
3732
- "#6CBAFF",
4920
+ "#0088FF",
4921
+ "#FF3232",
4922
+ "#38BEA8",
4923
+ "#6F3BD5",
4924
+ "#314285",
4925
+ "#42C724",
4926
+ "#D52580",
4927
+ "#F4721B",
4928
+ "#D117EA",
4929
+ "#7E7D7D"
4930
+ ]
4931
+ },
4932
+ dark: {
4933
+ label: [
4934
+ "#4BABFF",
3733
4935
  "#FF6C6C",
3734
- "#F9B052",
3735
4936
  "#7DD3C4",
3736
- "#AA93D2",
3737
- "#0088FF",
3738
- "#FFBABA",
4937
+ "#8E6BC9",
4938
+ "#5366AC",
3739
4939
  "#86DC72",
4940
+ "#FF72BB",
4941
+ "#F9B052",
3740
4942
  "#EF76FF",
3741
4943
  "#C4C4C4"
3742
4944
  ]
@@ -3763,14 +4965,28 @@ const P = {
3763
4965
  colors: {
3764
4966
  light: {
3765
4967
  label: [
3766
- "#6CBAFF",
4968
+ "#0088FF",
4969
+ "#FF3232",
4970
+ "#38BEA8",
4971
+ "#6F3BD5",
4972
+ "#314285",
4973
+ "#42C724",
4974
+ "#D52580",
4975
+ "#F4721B",
4976
+ "#D117EA",
4977
+ "#7E7D7D"
4978
+ ]
4979
+ },
4980
+ dark: {
4981
+ label: [
4982
+ "#4BABFF",
3767
4983
  "#FF6C6C",
3768
- "#F9B052",
3769
4984
  "#7DD3C4",
3770
- "#AA93D2",
3771
- "#0088FF",
3772
- "#FFBABA",
4985
+ "#8E6BC9",
4986
+ "#5366AC",
3773
4987
  "#86DC72",
4988
+ "#FF72BB",
4989
+ "#F9B052",
3774
4990
  "#EF76FF",
3775
4991
  "#C4C4C4"
3776
4992
  ]
@@ -3797,14 +5013,28 @@ const P = {
3797
5013
  colors: {
3798
5014
  light: {
3799
5015
  label: [
3800
- "#6CBAFF",
5016
+ "#0088FF",
5017
+ "#FF3232",
5018
+ "#38BEA8",
5019
+ "#6F3BD5",
5020
+ "#314285",
5021
+ "#42C724",
5022
+ "#D52580",
5023
+ "#F4721B",
5024
+ "#D117EA",
5025
+ "#7E7D7D"
5026
+ ]
5027
+ },
5028
+ dark: {
5029
+ label: [
5030
+ "#4BABFF",
3801
5031
  "#FF6C6C",
3802
- "#F9B052",
3803
5032
  "#7DD3C4",
3804
- "#AA93D2",
3805
- "#0088FF",
3806
- "#FFBABA",
5033
+ "#8E6BC9",
5034
+ "#5366AC",
3807
5035
  "#86DC72",
5036
+ "#FF72BB",
5037
+ "#F9B052",
3808
5038
  "#EF76FF",
3809
5039
  "#C4C4C4"
3810
5040
  ]
@@ -3828,14 +5058,28 @@ const P = {
3828
5058
  colors: {
3829
5059
  light: {
3830
5060
  label: [
3831
- "#6CBAFF",
5061
+ "#0088FF",
5062
+ "#FF3232",
5063
+ "#38BEA8",
5064
+ "#6F3BD5",
5065
+ "#314285",
5066
+ "#42C724",
5067
+ "#D52580",
5068
+ "#F4721B",
5069
+ "#D117EA",
5070
+ "#7E7D7D"
5071
+ ]
5072
+ },
5073
+ dark: {
5074
+ label: [
5075
+ "#4BABFF",
3832
5076
  "#FF6C6C",
3833
- "#F9B052",
3834
5077
  "#7DD3C4",
3835
- "#AA93D2",
3836
- "#0088FF",
3837
- "#FFBABA",
5078
+ "#8E6BC9",
5079
+ "#5366AC",
3838
5080
  "#86DC72",
5081
+ "#FF72BB",
5082
+ "#F9B052",
3839
5083
  "#EF76FF",
3840
5084
  "#C4C4C4"
3841
5085
  ]
@@ -3850,24 +5094,38 @@ const P = {
3850
5094
  padding: 7
3851
5095
  }
3852
5096
  }
3853
- }, Ot = {
5097
+ }, kt = {
3854
5098
  name: "PRESET_FORCE_DIRECTED_NONE_ZOOM",
3855
5099
  description: "Force directed chart without mouse drag and zoom control",
3856
5100
  descriptionZh: "無滑鼠托曳及縮放控制的力導向圖",
3857
5101
  chartParams: {
3858
5102
  colors: {
3859
5103
  light: {
5104
+ label: [
5105
+ "#0088FF",
5106
+ "#FF72BB",
5107
+ "#16B59B",
5108
+ "#F9B052",
5109
+ "#6F3BD5",
5110
+ "#42C724",
5111
+ "#FF3232",
5112
+ "#904026",
5113
+ "#1F3172",
5114
+ "#E23D93"
5115
+ ]
5116
+ },
5117
+ dark: {
3860
5118
  label: [
3861
5119
  "#4BABFF",
3862
5120
  "#FFA0A0",
3863
5121
  "#7DD3C4",
3864
- "#F9B052",
5122
+ "#FAC77D",
3865
5123
  "#8454D4",
3866
5124
  "#42C724",
3867
- "#FF4B4B",
3868
- "#904026",
3869
- "#4B25B3",
3870
- "#C50669"
5125
+ "#FF6C6C",
5126
+ "#D4785A",
5127
+ "#5366AC",
5128
+ "#FF8DC8"
3871
5129
  ]
3872
5130
  }
3873
5131
  }
@@ -3881,7 +5139,7 @@ const P = {
3881
5139
  // 圓型圖例列點
3882
5140
  }
3883
5141
  }
3884
- }, Nt = {
5142
+ }, Ot = {
3885
5143
  name: "PRESET_FORCE_DIRECTED_FIX_FONT_SIZE",
3886
5144
  description: "Force directed chart with fixed font size",
3887
5145
  descriptionZh: "固定字體大小的力導向圖",
@@ -3900,6 +5158,20 @@ const P = {
3900
5158
  "#4B25B3",
3901
5159
  "#C50669"
3902
5160
  ]
5161
+ },
5162
+ dark: {
5163
+ label: [
5164
+ "#4BABFF",
5165
+ "#FFA0A0",
5166
+ "#7DD3C4",
5167
+ "#F9B052",
5168
+ "#8454D4",
5169
+ "#42C724",
5170
+ "#FF4B4B",
5171
+ "#904026",
5172
+ "#4B25B3",
5173
+ "#C50669"
5174
+ ]
3903
5175
  }
3904
5176
  }
3905
5177
  },
@@ -3917,24 +5189,38 @@ const P = {
3917
5189
  // 圓型圖例列點
3918
5190
  }
3919
5191
  }
3920
- }, vt = {
5192
+ }, Nt = {
3921
5193
  name: "PRESET_FORCE_DIRECTED_NONE_ARROW",
3922
5194
  description: "Force directed chart without arrows",
3923
5195
  descriptionZh: "沒有箭頭的力導向圖",
3924
5196
  chartParams: {
3925
5197
  colors: {
3926
5198
  light: {
5199
+ label: [
5200
+ "#0088FF",
5201
+ "#FF72BB",
5202
+ "#16B59B",
5203
+ "#F9B052",
5204
+ "#6F3BD5",
5205
+ "#42C724",
5206
+ "#FF3232",
5207
+ "#904026",
5208
+ "#1F3172",
5209
+ "#E23D93"
5210
+ ]
5211
+ },
5212
+ dark: {
3927
5213
  label: [
3928
5214
  "#4BABFF",
3929
5215
  "#FFA0A0",
3930
5216
  "#7DD3C4",
3931
- "#F9B052",
5217
+ "#FAC77D",
3932
5218
  "#8454D4",
3933
5219
  "#42C724",
3934
- "#FF4B4B",
3935
- "#904026",
3936
- "#4B25B3",
3937
- "#C50669"
5220
+ "#FF6C6C",
5221
+ "#D4785A",
5222
+ "#5366AC",
5223
+ "#FF8DC8"
3938
5224
  ]
3939
5225
  }
3940
5226
  }
@@ -3951,24 +5237,38 @@ const P = {
3951
5237
  // 圓型圖例列點
3952
5238
  }
3953
5239
  }
3954
- }, Zt = {
5240
+ }, vt = {
3955
5241
  name: "PRESET_FORCE_DIRECTED_SIMPLE",
3956
5242
  description: "Simple force directed chart",
3957
5243
  descriptionZh: "簡單力導向圖",
3958
5244
  chartParams: {
3959
5245
  colors: {
3960
5246
  light: {
5247
+ label: [
5248
+ "#0088FF",
5249
+ "#FF72BB",
5250
+ "#16B59B",
5251
+ "#F9B052",
5252
+ "#6F3BD5",
5253
+ "#42C724",
5254
+ "#FF3232",
5255
+ "#904026",
5256
+ "#1F3172",
5257
+ "#E23D93"
5258
+ ]
5259
+ },
5260
+ dark: {
3961
5261
  label: [
3962
5262
  "#4BABFF",
3963
5263
  "#FFA0A0",
3964
5264
  "#7DD3C4",
3965
- "#F9B052",
5265
+ "#FAC77D",
3966
5266
  "#8454D4",
3967
5267
  "#42C724",
3968
- "#FF4B4B",
3969
- "#904026",
3970
- "#4B25B3",
3971
- "#C50669"
5268
+ "#FF6C6C",
5269
+ "#D4785A",
5270
+ "#5366AC",
5271
+ "#FF8DC8"
3972
5272
  ]
3973
5273
  }
3974
5274
  }
@@ -3981,7 +5281,7 @@ const P = {
3981
5281
  padding: 7
3982
5282
  }
3983
5283
  }
3984
- }, Ut = {
5284
+ }, Zt = {
3985
5285
  name: "PRESET_TREE_MAP_BASIC",
3986
5286
  description: "Basic tree map",
3987
5287
  descriptionZh: "基本樹狀矩形圖",
@@ -3989,16 +5289,30 @@ const P = {
3989
5289
  colors: {
3990
5290
  light: {
3991
5291
  label: [
3992
- "#4BABFF",
3993
- "#94D6CB",
5292
+ "#0088FF",
5293
+ "#16B59B",
5294
+ "#6F3BD5",
5295
+ "#EE5F13",
3994
5296
  "#F9B052",
5297
+ "#D4785A",
5298
+ "#42C724",
5299
+ "#FF4B4B",
5300
+ "#1F3172",
5301
+ "#E23D93"
5302
+ ]
5303
+ },
5304
+ dark: {
5305
+ label: [
5306
+ "#4BABFF",
5307
+ "#7DD3C4",
3995
5308
  "#8454D4",
5309
+ "#FF6C6C",
5310
+ "#FAC77D",
3996
5311
  "#D58C75",
3997
5312
  "#42C724",
3998
5313
  "#FF8B8B",
3999
- "#904026",
4000
- "#C50669",
4001
- "#4B25B3"
5314
+ "#5366AC",
5315
+ "#FF8DC8"
4002
5316
  ]
4003
5317
  }
4004
5318
  },
@@ -4019,7 +5333,7 @@ const P = {
4019
5333
  padding: 14
4020
5334
  }
4021
5335
  }
4022
- }, ft = {
5336
+ }, Ut = {
4023
5337
  name: "PRESET_TREE_MAP_SIMPLE",
4024
5338
  description: "Simple tree map",
4025
5339
  descriptionZh: "簡單樹狀矩形圖",
@@ -4027,16 +5341,30 @@ const P = {
4027
5341
  colors: {
4028
5342
  light: {
4029
5343
  label: [
4030
- "#4BABFF",
4031
- "#94D6CB",
5344
+ "#0088FF",
5345
+ "#16B59B",
5346
+ "#6F3BD5",
5347
+ "#EE5F13",
4032
5348
  "#F9B052",
5349
+ "#D4785A",
5350
+ "#42C724",
5351
+ "#FF4B4B",
5352
+ "#1F3172",
5353
+ "#E23D93"
5354
+ ]
5355
+ },
5356
+ dark: {
5357
+ label: [
5358
+ "#4BABFF",
5359
+ "#7DD3C4",
4033
5360
  "#8454D4",
5361
+ "#FF6C6C",
5362
+ "#FAC77D",
4034
5363
  "#D58C75",
4035
5364
  "#42C724",
4036
5365
  "#FF8B8B",
4037
- "#904026",
4038
- "#C50669",
4039
- "#4B25B3"
5366
+ "#5366AC",
5367
+ "#FF8DC8"
4040
5368
  ]
4041
5369
  }
4042
5370
  },
@@ -4056,32 +5384,32 @@ const P = {
4056
5384
  }
4057
5385
  };
4058
5386
  export {
4059
- P as PRESET_BARS_HORIZONTAL_AND_ROUND,
4060
- D as PRESET_BARS_HORIZONTAL_AND_THIN,
4061
- T as PRESET_BARS_ROUND,
4062
- I as PRESET_BARS_THIN,
4063
- u as PRESET_BUBBLES_BASIC,
4064
- _ as PRESET_BUBBLES_SCALING_BY_RADIUS,
4065
- C as PRESET_BUBBLES_SEPARATE_SERIES,
4066
- m as PRESET_BUBBLES_SIMPLE,
4067
- i as PRESET_BUBBLES_SUM_SERIES,
4068
- It as PRESET_FORCE_DIRECTED_BASIC,
4069
- bt as PRESET_FORCE_DIRECTED_BUBBLES_BASIC,
5387
+ h as PRESET_BARS_HORIZONTAL_AND_ROUND,
5388
+ P as PRESET_BARS_HORIZONTAL_AND_THIN,
5389
+ b as PRESET_BARS_ROUND,
5390
+ T as PRESET_BARS_THIN,
5391
+ S as PRESET_BUBBLES_BASIC,
5392
+ R as PRESET_BUBBLES_SCALING_BY_RADIUS,
5393
+ u as PRESET_BUBBLES_SEPARATE_SERIES,
5394
+ _ as PRESET_BUBBLES_SIMPLE,
5395
+ a as PRESET_BUBBLES_SUM_SERIES,
5396
+ Tt as PRESET_FORCE_DIRECTED_BASIC,
5397
+ It as PRESET_FORCE_DIRECTED_BUBBLES_BASIC,
4070
5398
  Lt as PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH,
4071
5399
  Mt as PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW,
4072
5400
  xt as PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM,
4073
5401
  Gt as PRESET_FORCE_DIRECTED_BUBBLES_SIMPLE,
4074
- Nt as PRESET_FORCE_DIRECTED_FIX_FONT_SIZE,
4075
- vt as PRESET_FORCE_DIRECTED_NONE_ARROW,
4076
- Ot as PRESET_FORCE_DIRECTED_NONE_ZOOM,
4077
- Zt as PRESET_FORCE_DIRECTED_SIMPLE,
4078
- b as PRESET_GRID_BASIC,
5402
+ Ot as PRESET_FORCE_DIRECTED_FIX_FONT_SIZE,
5403
+ Nt as PRESET_FORCE_DIRECTED_NONE_ARROW,
5404
+ kt as PRESET_FORCE_DIRECTED_NONE_ZOOM,
5405
+ vt as PRESET_FORCE_DIRECTED_SIMPLE,
5406
+ I as PRESET_GRID_BASIC,
4079
5407
  L as PRESET_GRID_HORIZONTAL,
4080
5408
  x as PRESET_GRID_PN_SCALE,
4081
5409
  M as PRESET_GRID_PN_SCALE_SIMPLE,
4082
5410
  G as PRESET_GRID_ROTATE_AXIS_LABEL,
4083
- O as PRESET_GRID_SEPARATE_SERIES,
4084
- N as PRESET_GRID_SIMPLE,
5411
+ k as PRESET_GRID_SEPARATE_SERIES,
5412
+ O as PRESET_GRID_SIMPLE,
4085
5413
  y as PRESET_LINES_BASIC,
4086
5414
  w as PRESET_LINES_CURVE,
4087
5415
  W as PRESET_LINES_HORIZONTAL,
@@ -4089,13 +5417,13 @@ export {
4089
5417
  X as PRESET_LINES_ROTATE_AXIS_LABEL,
4090
5418
  z as PRESET_LINES_SIMPLE,
4091
5419
  K as PRESET_LINES_WITH_SOLID_DOTS,
4092
- v as PRESET_LINE_AREAS_BASIC,
4093
- Z as PRESET_LINE_AREAS_CURVE,
4094
- U as PRESET_LINE_AREAS_HORIZONTAL,
4095
- f as PRESET_LINE_AREAS_LOOSE_TICKS,
4096
- V as PRESET_LINE_AREAS_ROTATE_AXIS_LABEL,
4097
- H as PRESET_LINE_AREAS_SEPARATE_SERIES,
4098
- k as PRESET_LINE_AREAS_SIMPLE,
5420
+ N as PRESET_LINE_AREAS_BASIC,
5421
+ v as PRESET_LINE_AREAS_CURVE,
5422
+ Z as PRESET_LINE_AREAS_HORIZONTAL,
5423
+ U as PRESET_LINE_AREAS_LOOSE_TICKS,
5424
+ f as PRESET_LINE_AREAS_ROTATE_AXIS_LABEL,
5425
+ V as PRESET_LINE_AREAS_SEPARATE_SERIES,
5426
+ H as PRESET_LINE_AREAS_SIMPLE,
4099
5427
  j as PRESET_MULTI_GRID_BASIC,
4100
5428
  J as PRESET_MULTI_GRID_DIVERGING,
4101
5429
  q as PRESET_MULTI_GRID_DIVERGING_SIMPLE,
@@ -4103,48 +5431,48 @@ export {
4103
5431
  Q as PRESET_MULTI_GRID_ROUND_STYLE_SIMPLE,
4104
5432
  et as PRESET_MULTI_GRID_SEPARATE_GRID,
4105
5433
  tt as PRESET_MULTI_GRID_SEPARATE_GRID_SIMPLE,
4106
- it as PRESET_MULTI_GRID_SIMPLE,
5434
+ at as PRESET_MULTI_GRID_SIMPLE,
4107
5435
  lt as PRESET_MULTI_LINES_SEPARATE_GRID,
4108
- st as PRESET_MULTI_LINES_SEPARATE_GRID_SIMPLE,
4109
- rt as PRESET_MULTI_LINE_AREAS_SEPARATE_GRID,
4110
- at as PRESET_MULTI_LINE_AREAS_SEPARATE_GRID_SIMPLE,
4111
- ot as PRESET_MULTI_VALUE_BASIC,
4112
- nt as PRESET_MULTI_VALUE_SEPARATE_CATEGORY,
5436
+ rt as PRESET_MULTI_LINES_SEPARATE_GRID_SIMPLE,
5437
+ Ft as PRESET_MULTI_LINE_AREAS_SEPARATE_GRID,
5438
+ it as PRESET_MULTI_LINE_AREAS_SEPARATE_GRID_SIMPLE,
5439
+ st as PRESET_MULTI_VALUE_BASIC,
5440
+ ot as PRESET_MULTI_VALUE_SEPARATE_CATEGORY,
4113
5441
  dt as PRESET_MULTI_VALUE_SIMPLE,
4114
- a as PRESET_PIE_BASIC,
4115
- r as PRESET_PIE_DONUT,
4116
- s as PRESET_PIE_HALF_DONUT,
4117
- o as PRESET_PIE_SEPARATE_SERIES,
4118
- n as PRESET_PIE_SIMPLE,
5442
+ i as PRESET_PIE_BASIC,
5443
+ F as PRESET_PIE_DONUT,
5444
+ r as PRESET_PIE_HALF_DONUT,
5445
+ s as PRESET_PIE_SEPARATE_SERIES,
5446
+ o as PRESET_PIE_SIMPLE,
4119
5447
  d as PRESET_PIE_SUM_SERIES,
4120
5448
  l as PRESET_PIE_WITH_INNER_LABELS,
4121
- Et as PRESET_RACING_BARS_ALL_ITEMS,
4122
- ct as PRESET_RACING_BARS_BASIC,
4123
- Ft as PRESET_RACING_BARS_FAST,
4124
- gt as PRESET_RACING_BARS_FASTER,
4125
- Bt as PRESET_RACING_BARS_LOOP,
4126
- pt as PRESET_RACING_BARS_OUTSIDE_LABELS,
4127
- At as PRESET_RACING_BARS_SEPARATE_CATEGORY,
4128
- St as PRESET_RACING_BARS_SIMPLE,
4129
- Rt as PRESET_RACING_BARS_STOP,
4130
- E as PRESET_ROSE_BASIC,
4131
- c as PRESET_ROSE_SCALING_BY_RADIUS,
4132
- F as PRESET_ROSE_SEPARATE_SERIES,
4133
- p as PRESET_ROSE_SEPARATE_SERIES_AND_SUM_SERIES,
4134
- g as PRESET_ROSE_SIMPLE,
4135
- B as PRESET_ROSE_SUM_SERIES,
4136
- ut as PRESET_SCATTER_BASIC,
4137
- _t as PRESET_SCATTER_BUBBLES_BASIC,
4138
- mt as PRESET_SCATTER_BUBBLES_LINEAR_OPACITY,
4139
- Ct as PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS,
4140
- ht as PRESET_SCATTER_BUBBLES_SEPARATE_CATEGORY,
4141
- Pt as PRESET_SCATTER_BUBBLES_SIMPLE,
4142
- Dt as PRESET_SCATTER_SEPARATE_CATEGORY,
4143
- Tt as PRESET_SCATTER_SIMPLE,
4144
- h as PRESET_SERIES_BASIC,
4145
- S as PRESET_SERIES_SEPARATE_SERIES,
4146
- A as PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES,
4147
- R as PRESET_SERIES_SUM_SERIES,
4148
- Ut as PRESET_TREE_MAP_BASIC,
4149
- ft as PRESET_TREE_MAP_SIMPLE
5449
+ nt as PRESET_RACING_BARS_ALL_ITEMS,
5450
+ Bt as PRESET_RACING_BARS_BASIC,
5451
+ Et as PRESET_RACING_BARS_FAST,
5452
+ Ct as PRESET_RACING_BARS_FASTER,
5453
+ At as PRESET_RACING_BARS_LOOP,
5454
+ Dt as PRESET_RACING_BARS_OUTSIDE_LABELS,
5455
+ ct as PRESET_RACING_BARS_SEPARATE_CATEGORY,
5456
+ gt as PRESET_RACING_BARS_SIMPLE,
5457
+ pt as PRESET_RACING_BARS_STOP,
5458
+ n as PRESET_ROSE_BASIC,
5459
+ B as PRESET_ROSE_SCALING_BY_RADIUS,
5460
+ E as PRESET_ROSE_SEPARATE_SERIES,
5461
+ D as PRESET_ROSE_SEPARATE_SERIES_AND_SUM_SERIES,
5462
+ C as PRESET_ROSE_SIMPLE,
5463
+ A as PRESET_ROSE_SUM_SERIES,
5464
+ St as PRESET_SCATTER_BASIC,
5465
+ Rt as PRESET_SCATTER_BUBBLES_BASIC,
5466
+ _t as PRESET_SCATTER_BUBBLES_LINEAR_OPACITY,
5467
+ ut as PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS,
5468
+ mt as PRESET_SCATTER_BUBBLES_SEPARATE_CATEGORY,
5469
+ ht as PRESET_SCATTER_BUBBLES_SIMPLE,
5470
+ Pt as PRESET_SCATTER_SEPARATE_CATEGORY,
5471
+ bt as PRESET_SCATTER_SIMPLE,
5472
+ m as PRESET_SERIES_BASIC,
5473
+ g as PRESET_SERIES_SEPARATE_SERIES,
5474
+ c as PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES,
5475
+ p as PRESET_SERIES_SUM_SERIES,
5476
+ Zt as PRESET_TREE_MAP_BASIC,
5477
+ Ut as PRESET_TREE_MAP_SIMPLE
4150
5478
  };