@orbcharts/presets-basic 3.0.4 → 3.0.6

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.
@@ -1,4 +1,4 @@
1
- const _ = {
1
+ const R = {
2
2
  name: "PRESET_BUBBLES_BASIC",
3
3
  description: "Basic bubble chart",
4
4
  descriptionZh: "基本泡泡圖",
@@ -40,7 +40,7 @@ const _ = {
40
40
  // 圓型圖例列點
41
41
  }
42
42
  }
43
- }, m = {
43
+ }, _ = {
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 _ = {
85
85
  // 圓型圖例列點
86
86
  }
87
87
  }
88
- }, b = {
88
+ }, m = {
89
89
  name: "PRESET_BUBBLES_SEPARATE_SERIES",
90
90
  description: "Bubble chart showing series separately",
91
91
  descriptionZh: "分開顯示Series的泡泡圖",
@@ -274,7 +274,7 @@ const _ = {
274
274
  },
275
275
  SeriesTooltip: {}
276
276
  }
277
- }, T = {
277
+ }, b = {
278
278
  name: "PRESET_BUBBLES_SIMPLE",
279
279
  description: "Simple bubble chart",
280
280
  descriptionZh: "簡單泡泡圖",
@@ -323,7 +323,7 @@ const _ = {
323
323
  padding: 7
324
324
  }
325
325
  }
326
- }, F = {
326
+ }, e = {
327
327
  name: "PRESET_BUBBLES_SUM_SERIES",
328
328
  description: "Bubble chart of combined Series data",
329
329
  descriptionZh: "合併Series資料的泡泡圖",
@@ -365,8 +365,8 @@ const _ = {
365
365
  },
366
366
  pluginParams: {}
367
367
  };
368
- F.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
369
- const r = {
368
+ e.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
369
+ const i = {
370
370
  name: "PRESET_PIE_BASIC",
371
371
  description: "Basic pie chart",
372
372
  descriptionZh: "基本圓餅圖",
@@ -412,8 +412,8 @@ const r = {
412
412
  }
413
413
  }
414
414
  };
415
- r.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
416
- const l = {
415
+ i.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
416
+ const F = {
417
417
  name: "PRESET_PIE_DONUT",
418
418
  description: "Donut chart",
419
419
  descriptionZh: "甜甜圈圖",
@@ -464,8 +464,89 @@ const l = {
464
464
  }
465
465
  }
466
466
  };
467
- l.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
468
- const s = {
467
+ F.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
468
+ const T = {
469
+ name: "PRESET_PIE_GAUGE",
470
+ description: "Gauge chart",
471
+ descriptionZh: "儀表圖",
472
+ chartParams: {
473
+ // 和 Rose 一樣的配色
474
+ colors: {
475
+ light: {
476
+ label: [
477
+ "#4BABFF",
478
+ "#0088FF",
479
+ "#435399",
480
+ "#86DC72",
481
+ "#42C724",
482
+ "#16B59B",
483
+ "#F9B052",
484
+ "#F4721B",
485
+ "#FF3232",
486
+ "#7E7D7D"
487
+ ]
488
+ },
489
+ dark: {
490
+ label: [
491
+ "#8BC8FF",
492
+ "#4BABFF",
493
+ "#0088FF",
494
+ "#55D339",
495
+ "#29AB0C",
496
+ "#16B59B",
497
+ "#FCDCAD",
498
+ "#F9B052",
499
+ "#FF6C6C",
500
+ "#C4C4C4"
501
+ ]
502
+ }
503
+ },
504
+ padding: {
505
+ top: 120,
506
+ right: 60,
507
+ bottom: 0,
508
+ left: 60
509
+ }
510
+ },
511
+ pluginParams: {
512
+ Pie: {
513
+ outerRadius: 1,
514
+ outerRadiusWhileHighlight: 1,
515
+ innerRadius: 0.75,
516
+ startAngle: -Math.PI / 2,
517
+ endAngle: Math.PI / 2
518
+ },
519
+ PieLabels: {},
520
+ PieEventTexts: {
521
+ textAttrs: [
522
+ {
523
+ transform: "translate(0, -24)"
524
+ }
525
+ ],
526
+ textStyles: [
527
+ {
528
+ "font-weight": "bold",
529
+ "text-anchor": "middle",
530
+ "pointer-events": "none",
531
+ "dominant-baseline": "middle",
532
+ "font-size": 24,
533
+ fill: "#000"
534
+ }
535
+ ]
536
+ },
537
+ Indicator: {
538
+ startAngle: -Math.PI / 2,
539
+ endAngle: Math.PI / 2,
540
+ radius: 0.65,
541
+ value: 0
542
+ },
543
+ SeriesLegend: {
544
+ placement: "bottom",
545
+ listRectRadius: 7
546
+ // 圓型圖例列點
547
+ }
548
+ }
549
+ }, r = {
469
550
  name: "PRESET_PIE_HALF_DONUT",
470
551
  description: "Half donut chart",
471
552
  descriptionZh: "半圓甜甜圈圖",
@@ -528,8 +609,8 @@ const s = {
528
609
  }
529
610
  }
530
611
  };
531
- s.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
532
- const o = {
612
+ r.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
613
+ const l = {
533
614
  name: "PRESET_PIE_WITH_INNER_LABELS",
534
615
  description: "Pie chart with inner data labels",
535
616
  descriptionZh: "圓餅圖及內部資料標籤",
@@ -582,8 +663,8 @@ const o = {
582
663
  }
583
664
  }
584
665
  };
585
- o.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
586
- const n = {
666
+ l.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
667
+ const s = {
587
668
  name: "PRESET_PIE_SEPARATE_SERIES",
588
669
  description: "Separate pie chart of Series",
589
670
  descriptionZh: "分開顯示Series的圓餅圖",
@@ -625,8 +706,8 @@ const n = {
625
706
  },
626
707
  pluginParams: {}
627
708
  };
628
- n.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
629
- const e = {
709
+ s.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
710
+ const o = {
630
711
  name: "PRESET_PIE_SEPARATE_LABEL",
631
712
  description: "Separate pie chart of Label",
632
713
  descriptionZh: "分開顯示Label的圓餅圖",
@@ -670,9 +751,8 @@ const e = {
670
751
  PieLabels: {}
671
752
  }
672
753
  };
673
- e.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
674
- e.pluginParams.PieLabels.labelFn.toString = () => "d => d.seriesLabel";
675
- const B = {
754
+ o.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
755
+ const n = {
676
756
  name: "PRESET_PIE_SIMPLE",
677
757
  description: "Simple pie chart",
678
758
  descriptionZh: "簡單圓餅圖",
@@ -725,8 +805,8 @@ const B = {
725
805
  }
726
806
  }
727
807
  };
728
- B.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
729
- const d = {
808
+ n.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
809
+ const B = {
730
810
  name: "PRESET_PIE_SUM_SERIES",
731
811
  description: "Pie chart of combined Series data",
732
812
  descriptionZh: "合併Series資料的圓餅圖",
@@ -768,8 +848,8 @@ const d = {
768
848
  },
769
849
  pluginParams: {}
770
850
  };
771
- d.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
772
- const E = {
851
+ B.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
852
+ const d = {
773
853
  name: "PRESET_ROSE_BASIC",
774
854
  description: "Basic Rose chart",
775
855
  descriptionZh: "基本Rose參數",
@@ -821,8 +901,8 @@ const E = {
821
901
  }
822
902
  }
823
903
  };
824
- E.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
825
- const C = {
904
+ d.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
905
+ const E = {
826
906
  name: "PRESET_ROSE_SCALING_BY_RADIUS",
827
907
  description: "Rose chart with radius scaling",
828
908
  descriptionZh: "以半徑尺寸為比例的玫瑰圖",
@@ -880,8 +960,8 @@ const C = {
880
960
  }
881
961
  }
882
962
  };
883
- C.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
884
- const i = {
963
+ E.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
964
+ const C = {
885
965
  name: "PRESET_ROSE_SEPARATE_LABEL",
886
966
  description: "Separate rose chart of Label",
887
967
  descriptionZh: "分開顯示Label的玫瑰圖",
@@ -931,8 +1011,7 @@ const i = {
931
1011
  RoseLabels: {}
932
1012
  }
933
1013
  };
934
- i.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
935
- i.pluginParams.RoseLabels.labelFn.toString = () => "d => d.seriesLabel";
1014
+ C.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
936
1015
  const A = {
937
1016
  name: "PRESET_ROSE_SEPARATE_ALL",
938
1017
  description: "Separate rose chart of all data",
@@ -1227,7 +1306,7 @@ const L = {
1227
1306
  // 圓型圖例列點
1228
1307
  }
1229
1308
  }
1230
- }, S = {
1309
+ }, I = {
1231
1310
  name: "PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES",
1232
1311
  description: "Separate and sum Series data",
1233
1312
  descriptionZh: "分開顯示Series並合併Series資料",
@@ -1269,9 +1348,7 @@ const L = {
1269
1348
  sumSeries: !0
1270
1349
  },
1271
1350
  pluginParams: {}
1272
- };
1273
- S.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
1274
- const u = {
1351
+ }, u = {
1275
1352
  name: "PRESET_SERIES_SEPARATE_SERIES",
1276
1353
  description: "Separate Series",
1277
1354
  descriptionZh: "分開顯示Series",
@@ -1314,7 +1391,7 @@ const u = {
1314
1391
  pluginParams: {}
1315
1392
  };
1316
1393
  u.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
1317
- const R = {
1394
+ const S = {
1318
1395
  name: "PRESET_SERIES_SUM_SERIES",
1319
1396
  description: "Combine Series data",
1320
1397
  descriptionZh: "合併Series資料",
@@ -1356,8 +1433,8 @@ const R = {
1356
1433
  },
1357
1434
  pluginParams: {}
1358
1435
  };
1359
- R.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
1360
- const I = {
1436
+ S.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
1437
+ const G = {
1361
1438
  name: "PRESET_BARS_HORIZONTAL_AND_ROUND",
1362
1439
  description: "Horizontal bars with round corners",
1363
1440
  descriptionZh: "橫向圓角長條圖",
@@ -1489,7 +1566,7 @@ const I = {
1489
1566
  padding: 14
1490
1567
  }
1491
1568
  }
1492
- }, G = {
1569
+ }, x = {
1493
1570
  name: "PRESET_BARS_ROUND",
1494
1571
  description: "Rounded bars",
1495
1572
  descriptionZh: "圓角長條圖",
@@ -1550,7 +1627,7 @@ const I = {
1550
1627
  listRectRadius: 7
1551
1628
  }
1552
1629
  }
1553
- }, x = {
1630
+ }, O = {
1554
1631
  name: "PRESET_BARS_THIN",
1555
1632
  description: "Thin bars",
1556
1633
  descriptionZh: "細長條圖",
@@ -1608,7 +1685,7 @@ const I = {
1608
1685
  padding: 14
1609
1686
  }
1610
1687
  }
1611
- }, O = {
1688
+ }, k = {
1612
1689
  name: "PRESET_GRID_BASIC",
1613
1690
  description: "Basic Grid",
1614
1691
  descriptionZh: "基本Grid",
@@ -1656,7 +1733,7 @@ const I = {
1656
1733
  padding: 14
1657
1734
  }
1658
1735
  }
1659
- }, k = {
1736
+ }, N = {
1660
1737
  name: "PRESET_GRID_HORIZONTAL",
1661
1738
  description: "Horizontal Grid",
1662
1739
  descriptionZh: "橫向圖",
@@ -1713,7 +1790,7 @@ const I = {
1713
1790
  padding: 14
1714
1791
  }
1715
1792
  }
1716
- }, N = {
1793
+ }, v = {
1717
1794
  name: "PRESET_GRID_PN_SCALE_SIMPLE",
1718
1795
  description: "Simple positive negative scale",
1719
1796
  descriptionZh: "簡單正負值分向圖",
@@ -1767,7 +1844,7 @@ const I = {
1767
1844
  padding: 7
1768
1845
  }
1769
1846
  }
1770
- }, v = {
1847
+ }, U = {
1771
1848
  name: "PRESET_GRID_PN_SCALE",
1772
1849
  description: "Positive negative scale",
1773
1850
  descriptionZh: "正負值分向圖",
@@ -1821,7 +1898,7 @@ const I = {
1821
1898
  padding: 14
1822
1899
  }
1823
1900
  }
1824
- }, U = {
1901
+ }, Z = {
1825
1902
  name: "PRESET_GRID_ROTATE_AXIS_LABEL",
1826
1903
  description: "Rotate axis label",
1827
1904
  descriptionZh: "傾斜標籤",
@@ -1877,7 +1954,7 @@ const I = {
1877
1954
  padding: 14
1878
1955
  }
1879
1956
  }
1880
- }, Z = {
1957
+ }, f = {
1881
1958
  name: "PRESET_GRID_SEPARATE_SERIES",
1882
1959
  description: "Separate Series",
1883
1960
  descriptionZh: "分開顯示Series",
@@ -1939,7 +2016,7 @@ const I = {
1939
2016
  padding: 14
1940
2017
  }
1941
2018
  }
1942
- }, f = {
2019
+ }, V = {
1943
2020
  name: "PRESET_GRID_SIMPLE",
1944
2021
  description: "Simple Grid",
1945
2022
  descriptionZh: "簡單Grid",
@@ -1992,7 +2069,7 @@ const I = {
1992
2069
  padding: 7
1993
2070
  }
1994
2071
  }
1995
- }, V = {
2072
+ }, H = {
1996
2073
  name: "PRESET_LINE_AREAS_BASIC",
1997
2074
  description: "Basic LineArea",
1998
2075
  descriptionZh: "基本折線區域圖",
@@ -2054,7 +2131,7 @@ const I = {
2054
2131
  listRectHeight: 2
2055
2132
  }
2056
2133
  }
2057
- }, H = {
2134
+ }, w = {
2058
2135
  name: "PRESET_LINE_AREAS_CURVE",
2059
2136
  description: "Curve LineArea",
2060
2137
  descriptionZh: "弧線的折線區域圖",
@@ -2121,7 +2198,7 @@ const I = {
2121
2198
  listRectHeight: 2
2122
2199
  }
2123
2200
  }
2124
- }, w = {
2201
+ }, y = {
2125
2202
  name: "PRESET_LINE_AREAS_HORIZONTAL",
2126
2203
  description: "Horizontal LineArea",
2127
2204
  descriptionZh: "橫向折線區域圖",
@@ -2186,7 +2263,7 @@ const I = {
2186
2263
  listRectHeight: 2
2187
2264
  }
2188
2265
  }
2189
- }, y = {
2266
+ }, Y = {
2190
2267
  name: "PRESET_LINE_AREAS_LOOSE_TICKS",
2191
2268
  description: "Loose Ticks LineArea",
2192
2269
  descriptionZh: "寬鬆標籤的折線區域圖",
@@ -2250,7 +2327,7 @@ const I = {
2250
2327
  listRectHeight: 2
2251
2328
  }
2252
2329
  }
2253
- }, Y = {
2330
+ }, W = {
2254
2331
  name: "PRESET_LINE_AREAS_ROTATE_AXIS_LABEL",
2255
2332
  description: "Rotate Axis Label LineArea",
2256
2333
  descriptionZh: "傾斜標籤的折線區域圖",
@@ -2316,7 +2393,7 @@ const I = {
2316
2393
  listRectHeight: 2
2317
2394
  }
2318
2395
  }
2319
- }, W = {
2396
+ }, X = {
2320
2397
  name: "PRESET_LINE_AREAS_SEPARATE_SERIES",
2321
2398
  description: "Separate Series LineArea",
2322
2399
  descriptionZh: "分開顯示Series的折線區域圖",
@@ -2387,7 +2464,7 @@ const I = {
2387
2464
  listRectHeight: 2
2388
2465
  }
2389
2466
  }
2390
- }, X = {
2467
+ }, z = {
2391
2468
  name: "PRESET_LINE_AREAS_SIMPLE",
2392
2469
  description: "Simple LineArea",
2393
2470
  descriptionZh: "簡單折線區域圖",
@@ -2453,7 +2530,7 @@ const I = {
2453
2530
  listRectHeight: 2
2454
2531
  }
2455
2532
  }
2456
- }, z = {
2533
+ }, K = {
2457
2534
  name: "PRESET_LINES_BASIC",
2458
2535
  description: "Basic Line",
2459
2536
  descriptionZh: "基本折線圖",
@@ -2508,7 +2585,7 @@ const I = {
2508
2585
  listRectHeight: 2
2509
2586
  }
2510
2587
  }
2511
- }, K = {
2588
+ }, j = {
2512
2589
  name: "PRESET_LINES_CURVE",
2513
2590
  description: "Curve Line",
2514
2591
  descriptionZh: "弧線折線圖",
@@ -2566,7 +2643,7 @@ const I = {
2566
2643
  listRectHeight: 2
2567
2644
  }
2568
2645
  }
2569
- }, j = {
2646
+ }, q = {
2570
2647
  name: "PRESET_LINES_HORIZONTAL",
2571
2648
  description: "Horizontal Line",
2572
2649
  descriptionZh: "橫向折線圖",
@@ -2629,7 +2706,7 @@ const I = {
2629
2706
  listRectHeight: 2
2630
2707
  }
2631
2708
  }
2632
- }, q = {
2709
+ }, J = {
2633
2710
  name: "PRESET_LINES_LOOSE_TICKS",
2634
2711
  description: "Loose Ticks Line",
2635
2712
  descriptionZh: "寬鬆標籤的折線圖",
@@ -2686,7 +2763,7 @@ const I = {
2686
2763
  listRectHeight: 2
2687
2764
  }
2688
2765
  }
2689
- }, J = {
2766
+ }, Q = {
2690
2767
  name: "PRESET_LINES_ROTATE_AXIS_LABEL",
2691
2768
  description: "Line chart with slanted labels",
2692
2769
  descriptionZh: "傾斜標籤的折線圖",
@@ -2746,7 +2823,7 @@ const I = {
2746
2823
  listRectHeight: 2
2747
2824
  }
2748
2825
  }
2749
- }, Q = {
2826
+ }, $ = {
2750
2827
  name: "PRESET_LINES_SIMPLE",
2751
2828
  description: "Simple line",
2752
2829
  descriptionZh: "簡單折線圖",
@@ -2806,7 +2883,7 @@ const I = {
2806
2883
  listRectHeight: 2
2807
2884
  }
2808
2885
  }
2809
- }, $ = {
2886
+ }, tt = {
2810
2887
  name: "PRESET_LINES_WITH_SOLID_DOTS",
2811
2888
  description: "Solid Dots Line",
2812
2889
  descriptionZh: "實心圓點的折線圖",
@@ -2865,7 +2942,7 @@ const I = {
2865
2942
  listRectHeight: 2
2866
2943
  }
2867
2944
  }
2868
- }, tt = {
2945
+ }, at = {
2869
2946
  name: "PRESET_MULTI_GRID_BASIC",
2870
2947
  description: "Basic MultiGrid",
2871
2948
  descriptionZh: "基本MultiGrid",
@@ -2920,7 +2997,7 @@ const I = {
2920
2997
  ]
2921
2998
  }
2922
2999
  }
2923
- }, at = {
3000
+ }, et = {
2924
3001
  name: "PRESET_MULTI_GRID_DIVERGING_SIMPLE",
2925
3002
  description: "Simple diverging Grid",
2926
3003
  descriptionZh: "簡單雙向Grid",
@@ -3029,7 +3106,7 @@ const I = {
3029
3106
  padding: 7
3030
3107
  }
3031
3108
  }
3032
- }, et = {
3109
+ }, it = {
3033
3110
  name: "PRESET_MULTI_GRID_DIVERGING",
3034
3111
  description: "Diverging Grid",
3035
3112
  descriptionZh: "雙向Grid",
@@ -3135,7 +3212,7 @@ const I = {
3135
3212
  padding: 14
3136
3213
  }
3137
3214
  }
3138
- }, it = {
3215
+ }, Ft = {
3139
3216
  name: "PRESET_MULTI_GRID_ROUND_STYLE_SIMPLE",
3140
3217
  description: "Simple MultiGrid with round style",
3141
3218
  descriptionZh: "簡單MultiGrid圓弧風格",
@@ -3224,7 +3301,7 @@ const I = {
3224
3301
  OverlappingValueAxes: {},
3225
3302
  OverlappingStackedValueAxes: {}
3226
3303
  }
3227
- }, Ft = {
3304
+ }, rt = {
3228
3305
  name: "PRESET_MULTI_GRID_ROUND_STYLE",
3229
3306
  description: "MultiGrid with round style",
3230
3307
  descriptionZh: "MultiGrid圓弧風格",
@@ -3299,7 +3376,7 @@ const I = {
3299
3376
  OverlappingValueAxes: {},
3300
3377
  OverlappingStackedValueAxes: {}
3301
3378
  }
3302
- }, rt = {
3379
+ }, lt = {
3303
3380
  name: "PRESET_MULTI_GRID_SEPARATE_GRID_SIMPLE",
3304
3381
  description: "Simple separate grid",
3305
3382
  descriptionZh: "簡單的分開顯示Grid圖表",
@@ -3390,7 +3467,7 @@ const I = {
3390
3467
  padding: 7
3391
3468
  }
3392
3469
  }
3393
- }, lt = {
3470
+ }, st = {
3394
3471
  name: "PRESET_MULTI_GRID_SEPARATE_GRID",
3395
3472
  description: "Separate Grid",
3396
3473
  descriptionZh: "分開顯示Grid圖表",
@@ -3473,7 +3550,7 @@ const I = {
3473
3550
  padding: 14
3474
3551
  }
3475
3552
  }
3476
- }, st = {
3553
+ }, ot = {
3477
3554
  name: "PRESET_MULTI_GRID_SIMPLE",
3478
3555
  description: "Simple MultiGrid",
3479
3556
  descriptionZh: "簡單MultiGrid",
@@ -3538,7 +3615,7 @@ const I = {
3538
3615
  ]
3539
3616
  }
3540
3617
  }
3541
- }, ot = {
3618
+ }, nt = {
3542
3619
  name: "PRESET_MULTI_LINE_AREAS_SEPARATE_GRID_SIMPLE",
3543
3620
  description: "Simple separate grid line areas",
3544
3621
  descriptionZh: "簡單的分開顯示Grid的折線區域圖",
@@ -3660,7 +3737,7 @@ const I = {
3660
3737
  ]
3661
3738
  }
3662
3739
  }
3663
- }, nt = {
3740
+ }, Bt = {
3664
3741
  name: "PRESET_MULTI_LINE_AREAS_SEPARATE_GRID",
3665
3742
  description: "Separate Grid line areas",
3666
3743
  descriptionZh: "分開顯示Grid的折線區域圖",
@@ -3785,7 +3862,7 @@ const I = {
3785
3862
  ]
3786
3863
  }
3787
3864
  }
3788
- }, Bt = {
3865
+ }, dt = {
3789
3866
  name: "PRESET_MULTI_LINES_SEPARATE_GRID_SIMPLE",
3790
3867
  description: "Simple separate grid line",
3791
3868
  descriptionZh: "簡單的分開顯示Grid的折線圖",
@@ -3902,7 +3979,7 @@ const I = {
3902
3979
  ]
3903
3980
  }
3904
3981
  }
3905
- }, dt = {
3982
+ }, Et = {
3906
3983
  name: "PRESET_MULTI_LINES_SEPARATE_GRID",
3907
3984
  description: "Separate Grid line",
3908
3985
  descriptionZh: "分開顯示Grid的折線圖",
@@ -4013,7 +4090,7 @@ const I = {
4013
4090
  ]
4014
4091
  }
4015
4092
  }
4016
- }, Et = {
4093
+ }, Ct = {
4017
4094
  name: "PRESET_MULTI_VALUE_BASIC",
4018
4095
  description: "Basic MultiValue",
4019
4096
  descriptionZh: "基本MultiValue參數",
@@ -4061,7 +4138,7 @@ const I = {
4061
4138
  padding: 14
4062
4139
  }
4063
4140
  }
4064
- }, Ct = {
4141
+ }, At = {
4065
4142
  name: "PRESET_MULTI_VALUE_SEPARATE_CATEGORY",
4066
4143
  description: "MultiValue separate category",
4067
4144
  descriptionZh: "MultiValue 分開顯示category",
@@ -4124,7 +4201,7 @@ const I = {
4124
4201
  padding: 14
4125
4202
  }
4126
4203
  }
4127
- }, At = {
4204
+ }, Dt = {
4128
4205
  name: "PRESET_MULTI_VALUE_SIMPLE",
4129
4206
  description: "Simple MultiValue",
4130
4207
  descriptionZh: "簡單MultiValue參數",
@@ -4172,7 +4249,7 @@ const I = {
4172
4249
  padding: 7
4173
4250
  }
4174
4251
  }
4175
- }, Dt = {
4252
+ }, ct = {
4176
4253
  name: "PRESET_ORDINAL_BUBBLES_ALL_ITEMS",
4177
4254
  description: "Ordinal bubbles with all items",
4178
4255
  descriptionZh: "顯示全部項目的序數泡泡圖",
@@ -4225,7 +4302,7 @@ const I = {
4225
4302
  // 圓型圖例列點
4226
4303
  }
4227
4304
  }
4228
- }, ct = {
4305
+ }, gt = {
4229
4306
  name: "PRESET_ORDINAL_BUBBLES_BASIC",
4230
4307
  description: "Basic ordinal bubbles",
4231
4308
  descriptionZh: "序數泡泡圖",
@@ -4276,7 +4353,7 @@ const I = {
4276
4353
  // 圓型圖例列點
4277
4354
  }
4278
4355
  }
4279
- }, gt = {
4356
+ }, pt = {
4280
4357
  name: "PRESET_ORDINAL_BUBBLES_LINEAR_OPACITY",
4281
4358
  description: "Ordinal bubbles with linear opacity",
4282
4359
  descriptionZh: "漸變透明度的序數泡泡圖",
@@ -4331,7 +4408,7 @@ const I = {
4331
4408
  // 圓型圖例列點
4332
4409
  }
4333
4410
  }
4334
- }, pt = {
4411
+ }, ut = {
4335
4412
  name: "PRESET_ORDINAL_BUBBLES_SCALING_BY_RADIUS",
4336
4413
  description: "Ordinal bubbles with radius scaling",
4337
4414
  descriptionZh: "以半徑尺寸為比例的序數泡泡圖",
@@ -4447,7 +4524,7 @@ const I = {
4447
4524
  // 圓型圖例列點
4448
4525
  }
4449
4526
  }
4450
- }, ut = {
4527
+ }, Rt = {
4451
4528
  name: "PRESET_ORDINAL_BUBBLES_SIMPLE",
4452
4529
  description: "Simple ordinal bubbles",
4453
4530
  descriptionZh: "簡單的序數泡泡圖",
@@ -4501,7 +4578,7 @@ const I = {
4501
4578
  // 圓型圖例列點
4502
4579
  }
4503
4580
  }
4504
- }, Rt = {
4581
+ }, _t = {
4505
4582
  name: "PRESET_RACING_BARS_ALL_ITEMS",
4506
4583
  description: "Racing bars for all items",
4507
4584
  descriptionZh: "顯示全部項目的賽跑長條圖",
@@ -4554,7 +4631,7 @@ const I = {
4554
4631
  padding: 14
4555
4632
  }
4556
4633
  }
4557
- }, _t = {
4634
+ }, mt = {
4558
4635
  name: "PRESET_RACING_BARS_BASIC",
4559
4636
  description: "Basic racing bars",
4560
4637
  descriptionZh: "基本賽跑長條圖",
@@ -4606,7 +4683,7 @@ const I = {
4606
4683
  padding: 14
4607
4684
  }
4608
4685
  }
4609
- }, mt = {
4686
+ }, ht = {
4610
4687
  name: "PRESET_RACING_BARS_FAST",
4611
4688
  description: "Fast racing bars",
4612
4689
  descriptionZh: "快速的賽跑長條圖",
@@ -4658,7 +4735,7 @@ const I = {
4658
4735
  padding: 14
4659
4736
  }
4660
4737
  }
4661
- }, bt = {
4738
+ }, Pt = {
4662
4739
  name: "PRESET_RACING_BARS_FASTER",
4663
4740
  description: "Faster racing bars",
4664
4741
  descriptionZh: "更快速的賽跑長條圖",
@@ -4710,7 +4787,7 @@ const I = {
4710
4787
  padding: 14
4711
4788
  }
4712
4789
  }
4713
- }, ht = {
4790
+ }, bt = {
4714
4791
  name: "PRESET_RACING_BARS_LOOP",
4715
4792
  description: "Looping racing bars",
4716
4793
  descriptionZh: "循環的賽跑長條圖",
@@ -4763,7 +4840,7 @@ const I = {
4763
4840
  padding: 14
4764
4841
  }
4765
4842
  }
4766
- }, Pt = {
4843
+ }, Tt = {
4767
4844
  name: "PRESET_RACING_BARS_OUTSIDE_LABELS",
4768
4845
  description: "Racing bars with labels outside",
4769
4846
  descriptionZh: "標籤在外面的賽跑長條圖",
@@ -4819,7 +4896,7 @@ const I = {
4819
4896
  padding: 14
4820
4897
  }
4821
4898
  }
4822
- }, Tt = {
4899
+ }, Lt = {
4823
4900
  name: "PRESET_RACING_BARS_SEPARATE_CATEGORY",
4824
4901
  description: "Racing bars with separate category",
4825
4902
  descriptionZh: "分開顯示category的賽跑長條圖",
@@ -4888,7 +4965,7 @@ const I = {
4888
4965
  padding: 14
4889
4966
  }
4890
4967
  }
4891
- }, Lt = {
4968
+ }, It = {
4892
4969
  name: "PRESET_RACING_BARS_SIMPLE",
4893
4970
  description: "Simple racing bars",
4894
4971
  descriptionZh: "簡單賽跑長條圖",
@@ -4940,7 +5017,7 @@ const I = {
4940
5017
  padding: 7
4941
5018
  }
4942
5019
  }
4943
- }, It = {
5020
+ }, Gt = {
4944
5021
  name: "PRESET_RACING_BARS_STOP",
4945
5022
  description: "Stopped racing bars",
4946
5023
  descriptionZh: "停止的賽跑長條圖",
@@ -5041,7 +5118,7 @@ const I = {
5041
5118
  // 圓型圖例列點
5042
5119
  }
5043
5120
  }
5044
- }, Gt = {
5121
+ }, xt = {
5045
5122
  name: "PRESET_SCATTER_BUBBLES_BASIC",
5046
5123
  description: "Basic scatter bubbles",
5047
5124
  descriptionZh: "基本的散布泡泡圖",
@@ -5091,7 +5168,7 @@ const I = {
5091
5168
  // 圓型圖例列點
5092
5169
  }
5093
5170
  }
5094
- }, xt = {
5171
+ }, Ot = {
5095
5172
  name: "PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS",
5096
5173
  description: "Scatter bubbles with radius scaling",
5097
5174
  descriptionZh: "以半徑尺寸為比例的散布泡泡圖",
@@ -5144,7 +5221,7 @@ const I = {
5144
5221
  arcScaleType: "radius"
5145
5222
  }
5146
5223
  }
5147
- }, Ot = {
5224
+ }, kt = {
5148
5225
  name: "PRESET_SCATTER_BUBBLES_LINEAR_OPACITY",
5149
5226
  description: "Scatter bubbles with linear opacity",
5150
5227
  descriptionZh: "以資料量漸變透明度的散布泡泡圖",
@@ -5197,7 +5274,7 @@ const I = {
5197
5274
  valueLinearOpacity: [0.5, 1]
5198
5275
  }
5199
5276
  }
5200
- }, kt = {
5277
+ }, Nt = {
5201
5278
  name: "PRESET_SCATTER_BUBBLES_SEPARATE_CATEGORY",
5202
5279
  description: "Scatter bubbles with separate category",
5203
5280
  descriptionZh: "分開顯示category的散布泡泡圖",
@@ -5254,7 +5331,7 @@ const I = {
5254
5331
  // 圓型圖例列點
5255
5332
  }
5256
5333
  }
5257
- }, Nt = {
5334
+ }, vt = {
5258
5335
  name: "PRESET_SCATTER_BUBBLES_SIMPLE",
5259
5336
  description: "Simple scatter bubbles",
5260
5337
  descriptionZh: "簡單的散布泡泡圖",
@@ -5304,7 +5381,7 @@ const I = {
5304
5381
  // 圓型圖例列點
5305
5382
  }
5306
5383
  }
5307
- }, vt = {
5384
+ }, Ut = {
5308
5385
  name: "PRESET_SCATTER_SEPARATE_CATEGORY",
5309
5386
  description: "Scatter with separate category",
5310
5387
  descriptionZh: "分開顯示category的散布圖",
@@ -5369,7 +5446,7 @@ const I = {
5369
5446
  // 圓型圖例列點
5370
5447
  }
5371
5448
  }
5372
- }, Ut = {
5449
+ }, Zt = {
5373
5450
  name: "PRESET_SCATTER_SIMPLE",
5374
5451
  description: "Simple scatter",
5375
5452
  descriptionZh: "簡單散布圖",
@@ -5419,7 +5496,7 @@ const I = {
5419
5496
  // 圓型圖例列點
5420
5497
  }
5421
5498
  }
5422
- }, Zt = {
5499
+ }, ft = {
5423
5500
  name: "PRESET_FORCE_DIRECTED_BASIC",
5424
5501
  description: "Basic force directed chart",
5425
5502
  descriptionZh: "基本力導向圖",
@@ -5462,7 +5539,7 @@ const I = {
5462
5539
  // 圓型圖例列點
5463
5540
  }
5464
5541
  }
5465
- }, ft = {
5542
+ }, Vt = {
5466
5543
  name: "PRESET_FORCE_DIRECTED_BUBBLES_BASIC",
5467
5544
  description: "Basic force directed bubbles chart",
5468
5545
  descriptionZh: "基本力導向泡泡圖",
@@ -5505,7 +5582,7 @@ const I = {
5505
5582
  // 圓型圖例列點
5506
5583
  }
5507
5584
  }
5508
- }, Vt = {
5585
+ }, Ht = {
5509
5586
  name: "PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH",
5510
5587
  description: "Force-directed bubble chart with fixed arrow width",
5511
5588
  descriptionZh: "固定箭頭寬度的力導向泡泡圖",
@@ -5553,7 +5630,7 @@ const I = {
5553
5630
  // 圓型圖例列點
5554
5631
  }
5555
5632
  }
5556
- }, Ht = {
5633
+ }, wt = {
5557
5634
  name: "PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW",
5558
5635
  description: "Force-directed bubble chart without arrows",
5559
5636
  descriptionZh: "沒有箭頭的力導向泡泡圖",
@@ -5601,7 +5678,7 @@ const I = {
5601
5678
  // 圓型圖例列點
5602
5679
  }
5603
5680
  }
5604
- }, wt = {
5681
+ }, yt = {
5605
5682
  name: "PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM",
5606
5683
  description: "Force Directed bubbles chart without mouse drag and zoom control",
5607
5684
  descriptionZh: "無滑鼠托曳及縮放控制的力導向泡泡圖",
@@ -5646,7 +5723,7 @@ const I = {
5646
5723
  // 圓型圖例列點
5647
5724
  }
5648
5725
  }
5649
- }, yt = {
5726
+ }, Yt = {
5650
5727
  name: "PRESET_FORCE_DIRECTED_BUBBLES_SIMPLE",
5651
5728
  description: "Simple force directed bubbles chart",
5652
5729
  descriptionZh: "簡單力導向泡泡圖",
@@ -5690,7 +5767,7 @@ const I = {
5690
5767
  padding: 7
5691
5768
  }
5692
5769
  }
5693
- }, Yt = {
5770
+ }, Wt = {
5694
5771
  name: "PRESET_FORCE_DIRECTED_NONE_ZOOM",
5695
5772
  description: "Force directed chart without mouse drag and zoom control",
5696
5773
  descriptionZh: "無滑鼠托曳及縮放控制的力導向圖",
@@ -5735,7 +5812,7 @@ const I = {
5735
5812
  // 圓型圖例列點
5736
5813
  }
5737
5814
  }
5738
- }, Wt = {
5815
+ }, Xt = {
5739
5816
  name: "PRESET_FORCE_DIRECTED_FIX_FONT_SIZE",
5740
5817
  description: "Force directed chart with fixed font size",
5741
5818
  descriptionZh: "固定字體大小的力導向圖",
@@ -5785,7 +5862,7 @@ const I = {
5785
5862
  // 圓型圖例列點
5786
5863
  }
5787
5864
  }
5788
- }, Xt = {
5865
+ }, zt = {
5789
5866
  name: "PRESET_FORCE_DIRECTED_NONE_ARROW",
5790
5867
  description: "Force directed chart without arrows",
5791
5868
  descriptionZh: "沒有箭頭的力導向圖",
@@ -5833,7 +5910,7 @@ const I = {
5833
5910
  // 圓型圖例列點
5834
5911
  }
5835
5912
  }
5836
- }, zt = {
5913
+ }, Kt = {
5837
5914
  name: "PRESET_FORCE_DIRECTED_SIMPLE",
5838
5915
  description: "Simple force directed chart",
5839
5916
  descriptionZh: "簡單力導向圖",
@@ -5877,7 +5954,7 @@ const I = {
5877
5954
  padding: 7
5878
5955
  }
5879
5956
  }
5880
- }, Kt = {
5957
+ }, jt = {
5881
5958
  name: "PRESET_TREE_MAP_BASIC",
5882
5959
  description: "Basic tree map",
5883
5960
  descriptionZh: "基本樹狀矩形圖",
@@ -5926,7 +6003,7 @@ const I = {
5926
6003
  padding: 14
5927
6004
  }
5928
6005
  }
5929
- }, jt = {
6006
+ }, qt = {
5930
6007
  name: "PRESET_TREE_MAP_SIMPLE",
5931
6008
  description: "Simple tree map",
5932
6009
  descriptionZh: "簡單樹狀矩形圖",
@@ -5977,106 +6054,107 @@ const I = {
5977
6054
  }
5978
6055
  };
5979
6056
  export {
5980
- I as PRESET_BARS_HORIZONTAL_AND_ROUND,
6057
+ G as PRESET_BARS_HORIZONTAL_AND_ROUND,
5981
6058
  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,
6059
+ x as PRESET_BARS_ROUND,
6060
+ O as PRESET_BARS_THIN,
6061
+ R as PRESET_BUBBLES_BASIC,
6062
+ _ as PRESET_BUBBLES_SCALING_BY_RADIUS,
5986
6063
  P as PRESET_BUBBLES_SEPARATE_ALL,
5987
6064
  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,
6065
+ m as PRESET_BUBBLES_SEPARATE_SERIES,
6066
+ b as PRESET_BUBBLES_SIMPLE,
6067
+ e as PRESET_BUBBLES_SUM_SERIES,
6068
+ ft as PRESET_FORCE_DIRECTED_BASIC,
6069
+ Vt as PRESET_FORCE_DIRECTED_BUBBLES_BASIC,
6070
+ Ht as PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH,
6071
+ wt as PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW,
6072
+ yt as PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM,
6073
+ Yt as PRESET_FORCE_DIRECTED_BUBBLES_SIMPLE,
6074
+ Xt as PRESET_FORCE_DIRECTED_FIX_FONT_SIZE,
6075
+ zt as PRESET_FORCE_DIRECTED_NONE_ARROW,
6076
+ Wt as PRESET_FORCE_DIRECTED_NONE_ZOOM,
6077
+ Kt as PRESET_FORCE_DIRECTED_SIMPLE,
6078
+ k as PRESET_GRID_BASIC,
6079
+ N as PRESET_GRID_HORIZONTAL,
6080
+ U as PRESET_GRID_PN_SCALE,
6081
+ v as PRESET_GRID_PN_SCALE_SIMPLE,
6082
+ Z as PRESET_GRID_ROTATE_AXIS_LABEL,
6083
+ f as PRESET_GRID_SEPARATE_SERIES,
6084
+ V as PRESET_GRID_SIMPLE,
6085
+ K as PRESET_LINES_BASIC,
6086
+ j as PRESET_LINES_CURVE,
6087
+ q as PRESET_LINES_HORIZONTAL,
6088
+ J as PRESET_LINES_LOOSE_TICKS,
6089
+ Q as PRESET_LINES_ROTATE_AXIS_LABEL,
6090
+ $ as PRESET_LINES_SIMPLE,
6091
+ tt as PRESET_LINES_WITH_SOLID_DOTS,
6092
+ H as PRESET_LINE_AREAS_BASIC,
6093
+ w as PRESET_LINE_AREAS_CURVE,
6094
+ y as PRESET_LINE_AREAS_HORIZONTAL,
6095
+ Y as PRESET_LINE_AREAS_LOOSE_TICKS,
6096
+ W as PRESET_LINE_AREAS_ROTATE_AXIS_LABEL,
6097
+ X as PRESET_LINE_AREAS_SEPARATE_SERIES,
6098
+ z as PRESET_LINE_AREAS_SIMPLE,
6099
+ at as PRESET_MULTI_GRID_BASIC,
6100
+ it as PRESET_MULTI_GRID_DIVERGING,
6101
+ et as PRESET_MULTI_GRID_DIVERGING_SIMPLE,
6102
+ rt as PRESET_MULTI_GRID_ROUND_STYLE,
6103
+ Ft as PRESET_MULTI_GRID_ROUND_STYLE_SIMPLE,
6104
+ st as PRESET_MULTI_GRID_SEPARATE_GRID,
6105
+ lt as PRESET_MULTI_GRID_SEPARATE_GRID_SIMPLE,
6106
+ ot as PRESET_MULTI_GRID_SIMPLE,
6107
+ Et as PRESET_MULTI_LINES_SEPARATE_GRID,
6108
+ dt as PRESET_MULTI_LINES_SEPARATE_GRID_SIMPLE,
6109
+ Bt as PRESET_MULTI_LINE_AREAS_SEPARATE_GRID,
6110
+ nt as PRESET_MULTI_LINE_AREAS_SEPARATE_GRID_SIMPLE,
6111
+ Ct as PRESET_MULTI_VALUE_BASIC,
6112
+ At as PRESET_MULTI_VALUE_SEPARATE_CATEGORY,
6113
+ Dt as PRESET_MULTI_VALUE_SIMPLE,
6114
+ ct as PRESET_ORDINAL_BUBBLES_ALL_ITEMS,
6115
+ gt as PRESET_ORDINAL_BUBBLES_BASIC,
6116
+ pt as PRESET_ORDINAL_BUBBLES_LINEAR_OPACITY,
6117
+ ut as PRESET_ORDINAL_BUBBLES_SCALING_BY_RADIUS,
6041
6118
  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,
6119
+ Rt as PRESET_ORDINAL_BUBBLES_SIMPLE,
6120
+ i as PRESET_PIE_BASIC,
6121
+ F as PRESET_PIE_DONUT,
6122
+ T as PRESET_PIE_GAUGE,
6123
+ r as PRESET_PIE_HALF_DONUT,
6124
+ o as PRESET_PIE_SEPARATE_LABEL,
6125
+ s as PRESET_PIE_SEPARATE_SERIES,
6126
+ n as PRESET_PIE_SIMPLE,
6127
+ B as PRESET_PIE_SUM_SERIES,
6128
+ l as PRESET_PIE_WITH_INNER_LABELS,
6129
+ _t as PRESET_RACING_BARS_ALL_ITEMS,
6130
+ mt as PRESET_RACING_BARS_BASIC,
6131
+ ht as PRESET_RACING_BARS_FAST,
6132
+ Pt as PRESET_RACING_BARS_FASTER,
6133
+ bt as PRESET_RACING_BARS_LOOP,
6134
+ Tt as PRESET_RACING_BARS_OUTSIDE_LABELS,
6135
+ Lt as PRESET_RACING_BARS_SEPARATE_CATEGORY,
6136
+ It as PRESET_RACING_BARS_SIMPLE,
6137
+ Gt as PRESET_RACING_BARS_STOP,
6138
+ d as PRESET_ROSE_BASIC,
6139
+ E as PRESET_ROSE_SCALING_BY_RADIUS,
6062
6140
  A as PRESET_ROSE_SEPARATE_ALL,
6063
- i as PRESET_ROSE_SEPARATE_LABEL,
6141
+ C as PRESET_ROSE_SEPARATE_LABEL,
6064
6142
  D as PRESET_ROSE_SEPARATE_SERIES,
6065
6143
  p as PRESET_ROSE_SEPARATE_SERIES_AND_SUM_SERIES,
6066
6144
  c as PRESET_ROSE_SIMPLE,
6067
6145
  g as PRESET_ROSE_SUM_SERIES,
6068
6146
  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,
6147
+ xt as PRESET_SCATTER_BUBBLES_BASIC,
6148
+ kt as PRESET_SCATTER_BUBBLES_LINEAR_OPACITY,
6149
+ Ot as PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS,
6150
+ Nt as PRESET_SCATTER_BUBBLES_SEPARATE_CATEGORY,
6151
+ vt as PRESET_SCATTER_BUBBLES_SIMPLE,
6152
+ Ut as PRESET_SCATTER_SEPARATE_CATEGORY,
6153
+ Zt as PRESET_SCATTER_SIMPLE,
6076
6154
  L as PRESET_SERIES_BASIC,
6077
6155
  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
6156
+ I as PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES,
6157
+ S as PRESET_SERIES_SUM_SERIES,
6158
+ jt as PRESET_TREE_MAP_BASIC,
6159
+ qt as PRESET_TREE_MAP_SIMPLE
6082
6160
  };