@orbcharts/presets-basic 3.0.5 → 3.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/orbcharts-presets-basic.es.js +561 -201
- package/dist/orbcharts-presets-basic.umd.js +1 -1
- package/dist/src/series/PRESET_PIE_INDICATOR_LINE.d.ts +4 -0
- package/dist/src/series/PRESET_PIE_INDICATOR_NEEDLE.d.ts +4 -0
- package/dist/src/series/PRESET_PIE_INDICATOR_PIN.d.ts +4 -0
- package/dist/src/series/PRESET_PIE_INDICATOR_TRIANGLE.d.ts +4 -0
- package/dist/src/series/index.d.ts +4 -0
- package/dist/src/types.d.ts +5 -2
- package/package.json +3 -3
- package/src/series/PRESET_PIE_INDICATOR_LINE.ts +95 -0
- package/src/series/PRESET_PIE_INDICATOR_NEEDLE.ts +95 -0
- package/src/series/PRESET_PIE_INDICATOR_PIN.ts +95 -0
- package/src/series/PRESET_PIE_INDICATOR_TRIANGLE.ts +95 -0
- package/src/series/index.ts +4 -0
- package/src/types.ts +6 -0
@@ -1,4 +1,4 @@
|
|
1
|
-
const
|
1
|
+
const S = {
|
2
2
|
name: "PRESET_BUBBLES_BASIC",
|
3
3
|
description: "Basic bubble chart",
|
4
4
|
descriptionZh: "基本泡泡圖",
|
@@ -40,7 +40,7 @@ const R = {
|
|
40
40
|
// 圓型圖例列點
|
41
41
|
}
|
42
42
|
}
|
43
|
-
},
|
43
|
+
}, m = {
|
44
44
|
name: "PRESET_BUBBLES_SCALING_BY_RADIUS",
|
45
45
|
description: "Bubble chart scaled by radius size",
|
46
46
|
descriptionZh: "以半徑尺寸為比例的泡泡圖",
|
@@ -85,7 +85,7 @@ const R = {
|
|
85
85
|
// 圓型圖例列點
|
86
86
|
}
|
87
87
|
}
|
88
|
-
},
|
88
|
+
}, _ = {
|
89
89
|
name: "PRESET_BUBBLES_SEPARATE_SERIES",
|
90
90
|
description: "Bubble chart showing series separately",
|
91
91
|
descriptionZh: "分開顯示Series的泡泡圖",
|
@@ -209,7 +209,7 @@ const R = {
|
|
209
209
|
},
|
210
210
|
SeriesTooltip: {}
|
211
211
|
}
|
212
|
-
},
|
212
|
+
}, P = {
|
213
213
|
name: "PRESET_BUBBLES_SEPARATE_ALL",
|
214
214
|
description: "Bubble chart showing all data separately",
|
215
215
|
descriptionZh: "全部資料分開顯示的泡泡圖",
|
@@ -255,7 +255,7 @@ const R = {
|
|
255
255
|
dataFormatter: {
|
256
256
|
separateSeries: !0,
|
257
257
|
separateLabel: !0,
|
258
|
-
sort: (t,
|
258
|
+
sort: (t, e) => e.value - t.value,
|
259
259
|
container: {
|
260
260
|
columnGap: 0,
|
261
261
|
rowGap: 0
|
@@ -274,7 +274,7 @@ const R = {
|
|
274
274
|
},
|
275
275
|
SeriesTooltip: {}
|
276
276
|
}
|
277
|
-
},
|
277
|
+
}, b = {
|
278
278
|
name: "PRESET_BUBBLES_SIMPLE",
|
279
279
|
description: "Simple bubble chart",
|
280
280
|
descriptionZh: "簡單泡泡圖",
|
@@ -323,7 +323,7 @@ const R = {
|
|
323
323
|
padding: 7
|
324
324
|
}
|
325
325
|
}
|
326
|
-
},
|
326
|
+
}, a = {
|
327
327
|
name: "PRESET_BUBBLES_SUM_SERIES",
|
328
328
|
description: "Bubble chart of combined Series data",
|
329
329
|
descriptionZh: "合併Series資料的泡泡圖",
|
@@ -360,12 +360,12 @@ const R = {
|
|
360
360
|
}
|
361
361
|
},
|
362
362
|
dataFormatter: {
|
363
|
-
sort: (t,
|
363
|
+
sort: (t, e) => e.value - t.value,
|
364
364
|
sumSeries: !0
|
365
365
|
},
|
366
366
|
pluginParams: {}
|
367
367
|
};
|
368
|
-
|
368
|
+
a.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
369
369
|
const i = {
|
370
370
|
name: "PRESET_PIE_BASIC",
|
371
371
|
description: "Basic pie chart",
|
@@ -403,7 +403,7 @@ const i = {
|
|
403
403
|
}
|
404
404
|
},
|
405
405
|
dataFormatter: {
|
406
|
-
sort: (t,
|
406
|
+
sort: (t, e) => e.value - t.value
|
407
407
|
},
|
408
408
|
pluginParams: {
|
409
409
|
SeriesLegend: {
|
@@ -450,7 +450,7 @@ const F = {
|
|
450
450
|
}
|
451
451
|
},
|
452
452
|
dataFormatter: {
|
453
|
-
sort: (t,
|
453
|
+
sort: (t, e) => e.value - t.value
|
454
454
|
},
|
455
455
|
pluginParams: {
|
456
456
|
Pie: {
|
@@ -465,7 +465,363 @@ const F = {
|
|
465
465
|
}
|
466
466
|
};
|
467
467
|
F.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
468
|
-
const
|
468
|
+
const T = {
|
469
|
+
name: "PRESET_PIE_INDICATOR_LINE",
|
470
|
+
description: "Line indicator 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
|
+
styles: {
|
511
|
+
// unhighlightedOpacity: 1
|
512
|
+
},
|
513
|
+
highlightTarget: "datum"
|
514
|
+
},
|
515
|
+
pluginParams: {
|
516
|
+
Pie: {
|
517
|
+
outerRadius: 1,
|
518
|
+
outerRadiusWhileHighlight: 1,
|
519
|
+
innerRadius: 0.75,
|
520
|
+
startAngle: -Math.PI / 2,
|
521
|
+
endAngle: Math.PI / 2
|
522
|
+
},
|
523
|
+
PieLabels: {},
|
524
|
+
PieEventTexts: {
|
525
|
+
textAttrs: [
|
526
|
+
{
|
527
|
+
transform: "translate(0, -36)"
|
528
|
+
}
|
529
|
+
],
|
530
|
+
textStyles: [
|
531
|
+
{
|
532
|
+
"font-weight": "bold",
|
533
|
+
"text-anchor": "middle",
|
534
|
+
"pointer-events": "none",
|
535
|
+
"dominant-baseline": "middle",
|
536
|
+
"font-size": 24,
|
537
|
+
fill: "#000"
|
538
|
+
}
|
539
|
+
],
|
540
|
+
renderFn: (t) => t.mark ?? null
|
541
|
+
},
|
542
|
+
Indicator: {
|
543
|
+
startAngle: -Math.PI / 2,
|
544
|
+
endAngle: Math.PI / 2,
|
545
|
+
radius: 0.65,
|
546
|
+
indicatorType: "line",
|
547
|
+
size: 4,
|
548
|
+
// autoHighlight: true,
|
549
|
+
value: 0
|
550
|
+
},
|
551
|
+
SeriesLegend: {
|
552
|
+
placement: "bottom",
|
553
|
+
listRectRadius: 7
|
554
|
+
// 圓型圖例列點
|
555
|
+
}
|
556
|
+
}
|
557
|
+
}, I = {
|
558
|
+
name: "PRESET_PIE_INDICATOR_NEEDLE",
|
559
|
+
description: "Needle indicator chart",
|
560
|
+
descriptionZh: "指針圖",
|
561
|
+
chartParams: {
|
562
|
+
// 和 Rose 一樣的配色
|
563
|
+
colors: {
|
564
|
+
light: {
|
565
|
+
label: [
|
566
|
+
"#4BABFF",
|
567
|
+
"#0088FF",
|
568
|
+
"#435399",
|
569
|
+
"#86DC72",
|
570
|
+
"#42C724",
|
571
|
+
"#16B59B",
|
572
|
+
"#F9B052",
|
573
|
+
"#F4721B",
|
574
|
+
"#FF3232",
|
575
|
+
"#7E7D7D"
|
576
|
+
]
|
577
|
+
},
|
578
|
+
dark: {
|
579
|
+
label: [
|
580
|
+
"#8BC8FF",
|
581
|
+
"#4BABFF",
|
582
|
+
"#0088FF",
|
583
|
+
"#55D339",
|
584
|
+
"#29AB0C",
|
585
|
+
"#16B59B",
|
586
|
+
"#FCDCAD",
|
587
|
+
"#F9B052",
|
588
|
+
"#FF6C6C",
|
589
|
+
"#C4C4C4"
|
590
|
+
]
|
591
|
+
}
|
592
|
+
},
|
593
|
+
padding: {
|
594
|
+
top: 120,
|
595
|
+
right: 60,
|
596
|
+
bottom: 0,
|
597
|
+
left: 60
|
598
|
+
},
|
599
|
+
styles: {
|
600
|
+
// unhighlightedOpacity: 1
|
601
|
+
},
|
602
|
+
highlightTarget: "datum"
|
603
|
+
},
|
604
|
+
pluginParams: {
|
605
|
+
Pie: {
|
606
|
+
outerRadius: 1,
|
607
|
+
outerRadiusWhileHighlight: 1,
|
608
|
+
innerRadius: 0.75,
|
609
|
+
startAngle: -Math.PI / 2,
|
610
|
+
endAngle: Math.PI / 2
|
611
|
+
},
|
612
|
+
PieLabels: {},
|
613
|
+
PieEventTexts: {
|
614
|
+
textAttrs: [
|
615
|
+
{
|
616
|
+
transform: "translate(0, -36)"
|
617
|
+
}
|
618
|
+
],
|
619
|
+
textStyles: [
|
620
|
+
{
|
621
|
+
"font-weight": "bold",
|
622
|
+
"text-anchor": "middle",
|
623
|
+
"pointer-events": "none",
|
624
|
+
"dominant-baseline": "middle",
|
625
|
+
"font-size": 24,
|
626
|
+
fill: "#000"
|
627
|
+
}
|
628
|
+
],
|
629
|
+
renderFn: (t) => t.mark ?? null
|
630
|
+
},
|
631
|
+
Indicator: {
|
632
|
+
startAngle: -Math.PI / 2,
|
633
|
+
endAngle: Math.PI / 2,
|
634
|
+
radius: 0.65,
|
635
|
+
indicatorType: "needle",
|
636
|
+
size: 10,
|
637
|
+
// autoHighlight: true,
|
638
|
+
value: 0
|
639
|
+
},
|
640
|
+
SeriesLegend: {
|
641
|
+
placement: "bottom",
|
642
|
+
listRectRadius: 7
|
643
|
+
// 圓型圖例列點
|
644
|
+
}
|
645
|
+
}
|
646
|
+
}, L = {
|
647
|
+
name: "PRESET_PIE_INDICATOR_PIN",
|
648
|
+
description: "Pin indicator chart",
|
649
|
+
descriptionZh: "大頭指針圖",
|
650
|
+
chartParams: {
|
651
|
+
// 和 Rose 一樣的配色
|
652
|
+
colors: {
|
653
|
+
light: {
|
654
|
+
label: [
|
655
|
+
"#4BABFF",
|
656
|
+
"#0088FF",
|
657
|
+
"#435399",
|
658
|
+
"#86DC72",
|
659
|
+
"#42C724",
|
660
|
+
"#16B59B",
|
661
|
+
"#F9B052",
|
662
|
+
"#F4721B",
|
663
|
+
"#FF3232",
|
664
|
+
"#7E7D7D"
|
665
|
+
]
|
666
|
+
},
|
667
|
+
dark: {
|
668
|
+
label: [
|
669
|
+
"#8BC8FF",
|
670
|
+
"#4BABFF",
|
671
|
+
"#0088FF",
|
672
|
+
"#55D339",
|
673
|
+
"#29AB0C",
|
674
|
+
"#16B59B",
|
675
|
+
"#FCDCAD",
|
676
|
+
"#F9B052",
|
677
|
+
"#FF6C6C",
|
678
|
+
"#C4C4C4"
|
679
|
+
]
|
680
|
+
}
|
681
|
+
},
|
682
|
+
padding: {
|
683
|
+
top: 120,
|
684
|
+
right: 60,
|
685
|
+
bottom: 0,
|
686
|
+
left: 60
|
687
|
+
},
|
688
|
+
styles: {
|
689
|
+
// unhighlightedOpacity: 1
|
690
|
+
},
|
691
|
+
highlightTarget: "datum"
|
692
|
+
},
|
693
|
+
pluginParams: {
|
694
|
+
Pie: {
|
695
|
+
outerRadius: 1,
|
696
|
+
outerRadiusWhileHighlight: 1,
|
697
|
+
innerRadius: 0.75,
|
698
|
+
startAngle: -Math.PI / 2,
|
699
|
+
endAngle: Math.PI / 2
|
700
|
+
},
|
701
|
+
PieLabels: {},
|
702
|
+
PieEventTexts: {
|
703
|
+
textAttrs: [
|
704
|
+
{
|
705
|
+
transform: "translate(0, -36)"
|
706
|
+
}
|
707
|
+
],
|
708
|
+
textStyles: [
|
709
|
+
{
|
710
|
+
"font-weight": "bold",
|
711
|
+
"text-anchor": "middle",
|
712
|
+
"pointer-events": "none",
|
713
|
+
"dominant-baseline": "middle",
|
714
|
+
"font-size": 24,
|
715
|
+
fill: "#000"
|
716
|
+
}
|
717
|
+
],
|
718
|
+
renderFn: (t) => t.mark ?? null
|
719
|
+
},
|
720
|
+
Indicator: {
|
721
|
+
startAngle: -Math.PI / 2,
|
722
|
+
endAngle: Math.PI / 2,
|
723
|
+
radius: 0.65,
|
724
|
+
indicatorType: "pin",
|
725
|
+
size: 15,
|
726
|
+
// autoHighlight: true,
|
727
|
+
value: 0
|
728
|
+
},
|
729
|
+
SeriesLegend: {
|
730
|
+
placement: "bottom",
|
731
|
+
listRectRadius: 7
|
732
|
+
// 圓型圖例列點
|
733
|
+
}
|
734
|
+
}
|
735
|
+
}, M = {
|
736
|
+
name: "PRESET_PIE_INDICATOR_TRIANGLE",
|
737
|
+
description: "Triangle indicator chart",
|
738
|
+
descriptionZh: "三角指針圖",
|
739
|
+
chartParams: {
|
740
|
+
// 和 Rose 一樣的配色
|
741
|
+
colors: {
|
742
|
+
light: {
|
743
|
+
label: [
|
744
|
+
"#4BABFF",
|
745
|
+
"#0088FF",
|
746
|
+
"#435399",
|
747
|
+
"#86DC72",
|
748
|
+
"#42C724",
|
749
|
+
"#16B59B",
|
750
|
+
"#F9B052",
|
751
|
+
"#F4721B",
|
752
|
+
"#FF3232",
|
753
|
+
"#7E7D7D"
|
754
|
+
]
|
755
|
+
},
|
756
|
+
dark: {
|
757
|
+
label: [
|
758
|
+
"#8BC8FF",
|
759
|
+
"#4BABFF",
|
760
|
+
"#0088FF",
|
761
|
+
"#55D339",
|
762
|
+
"#29AB0C",
|
763
|
+
"#16B59B",
|
764
|
+
"#FCDCAD",
|
765
|
+
"#F9B052",
|
766
|
+
"#FF6C6C",
|
767
|
+
"#C4C4C4"
|
768
|
+
]
|
769
|
+
}
|
770
|
+
},
|
771
|
+
padding: {
|
772
|
+
top: 120,
|
773
|
+
right: 60,
|
774
|
+
bottom: 0,
|
775
|
+
left: 60
|
776
|
+
},
|
777
|
+
styles: {
|
778
|
+
// unhighlightedOpacity: 1
|
779
|
+
},
|
780
|
+
highlightTarget: "datum"
|
781
|
+
},
|
782
|
+
pluginParams: {
|
783
|
+
Pie: {
|
784
|
+
outerRadius: 1,
|
785
|
+
outerRadiusWhileHighlight: 1,
|
786
|
+
innerRadius: 0.75,
|
787
|
+
startAngle: -Math.PI / 2,
|
788
|
+
endAngle: Math.PI / 2
|
789
|
+
},
|
790
|
+
PieLabels: {},
|
791
|
+
PieEventTexts: {
|
792
|
+
textAttrs: [
|
793
|
+
{
|
794
|
+
transform: "translate(0, -36)"
|
795
|
+
}
|
796
|
+
],
|
797
|
+
textStyles: [
|
798
|
+
{
|
799
|
+
"font-weight": "bold",
|
800
|
+
"text-anchor": "middle",
|
801
|
+
"pointer-events": "none",
|
802
|
+
"dominant-baseline": "middle",
|
803
|
+
"font-size": 24,
|
804
|
+
fill: "#000"
|
805
|
+
}
|
806
|
+
],
|
807
|
+
renderFn: (t) => t.mark ?? null
|
808
|
+
},
|
809
|
+
Indicator: {
|
810
|
+
startAngle: -Math.PI / 2,
|
811
|
+
endAngle: Math.PI / 2,
|
812
|
+
radius: 0.65,
|
813
|
+
indicatorType: "triangle",
|
814
|
+
size: 20,
|
815
|
+
// autoHighlight: true,
|
816
|
+
value: 0
|
817
|
+
},
|
818
|
+
SeriesLegend: {
|
819
|
+
placement: "bottom",
|
820
|
+
listRectRadius: 7
|
821
|
+
// 圓型圖例列點
|
822
|
+
}
|
823
|
+
}
|
824
|
+
}, r = {
|
469
825
|
name: "PRESET_PIE_HALF_DONUT",
|
470
826
|
description: "Half donut chart",
|
471
827
|
descriptionZh: "半圓甜甜圈圖",
|
@@ -508,7 +864,7 @@ const r = {
|
|
508
864
|
}
|
509
865
|
},
|
510
866
|
dataFormatter: {
|
511
|
-
sort: (t,
|
867
|
+
sort: (t, e) => e.value - t.value
|
512
868
|
},
|
513
869
|
pluginParams: {
|
514
870
|
Pie: {
|
@@ -566,7 +922,7 @@ const l = {
|
|
566
922
|
}
|
567
923
|
},
|
568
924
|
dataFormatter: {
|
569
|
-
sort: (t,
|
925
|
+
sort: (t, e) => e.value - t.value
|
570
926
|
},
|
571
927
|
pluginParams: {
|
572
928
|
Pie: {},
|
@@ -620,7 +976,7 @@ const s = {
|
|
620
976
|
}
|
621
977
|
},
|
622
978
|
dataFormatter: {
|
623
|
-
sort: (t,
|
979
|
+
sort: (t, e) => e.value - t.value,
|
624
980
|
separateSeries: !0
|
625
981
|
},
|
626
982
|
pluginParams: {}
|
@@ -663,7 +1019,7 @@ const o = {
|
|
663
1019
|
}
|
664
1020
|
},
|
665
1021
|
dataFormatter: {
|
666
|
-
sort: (t,
|
1022
|
+
sort: (t, e) => e.value - t.value,
|
667
1023
|
separateLabel: !0
|
668
1024
|
},
|
669
1025
|
pluginParams: {
|
@@ -714,7 +1070,7 @@ const n = {
|
|
714
1070
|
}
|
715
1071
|
},
|
716
1072
|
dataFormatter: {
|
717
|
-
sort: (t,
|
1073
|
+
sort: (t, e) => e.value - t.value
|
718
1074
|
},
|
719
1075
|
pluginParams: {
|
720
1076
|
SeriesLegend: {
|
@@ -725,7 +1081,7 @@ const n = {
|
|
725
1081
|
}
|
726
1082
|
};
|
727
1083
|
n.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
728
|
-
const
|
1084
|
+
const d = {
|
729
1085
|
name: "PRESET_PIE_SUM_SERIES",
|
730
1086
|
description: "Pie chart of combined Series data",
|
731
1087
|
descriptionZh: "合併Series資料的圓餅圖",
|
@@ -762,13 +1118,13 @@ const B = {
|
|
762
1118
|
}
|
763
1119
|
},
|
764
1120
|
dataFormatter: {
|
765
|
-
sort: (t,
|
1121
|
+
sort: (t, e) => e.value - t.value,
|
766
1122
|
sumSeries: !0
|
767
1123
|
},
|
768
1124
|
pluginParams: {}
|
769
1125
|
};
|
770
|
-
|
771
|
-
const
|
1126
|
+
d.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
1127
|
+
const B = {
|
772
1128
|
name: "PRESET_ROSE_BASIC",
|
773
1129
|
description: "Basic Rose chart",
|
774
1130
|
descriptionZh: "基本Rose參數",
|
@@ -811,7 +1167,7 @@ const d = {
|
|
811
1167
|
}
|
812
1168
|
},
|
813
1169
|
dataFormatter: {
|
814
|
-
sort: (t,
|
1170
|
+
sort: (t, e) => e.value - t.value
|
815
1171
|
},
|
816
1172
|
pluginParams: {
|
817
1173
|
SeriesLegend: {
|
@@ -820,7 +1176,7 @@ const d = {
|
|
820
1176
|
}
|
821
1177
|
}
|
822
1178
|
};
|
823
|
-
|
1179
|
+
B.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
824
1180
|
const E = {
|
825
1181
|
name: "PRESET_ROSE_SCALING_BY_RADIUS",
|
826
1182
|
description: "Rose chart with radius scaling",
|
@@ -864,7 +1220,7 @@ const E = {
|
|
864
1220
|
}
|
865
1221
|
},
|
866
1222
|
dataFormatter: {
|
867
|
-
sort: (t,
|
1223
|
+
sort: (t, e) => e.value - t.value
|
868
1224
|
},
|
869
1225
|
pluginParams: {
|
870
1226
|
Rose: {
|
@@ -923,7 +1279,7 @@ const C = {
|
|
923
1279
|
}
|
924
1280
|
},
|
925
1281
|
dataFormatter: {
|
926
|
-
sort: (t,
|
1282
|
+
sort: (t, e) => e.value - t.value,
|
927
1283
|
separateLabel: !0
|
928
1284
|
},
|
929
1285
|
pluginParams: {
|
@@ -974,7 +1330,7 @@ const A = {
|
|
974
1330
|
}
|
975
1331
|
},
|
976
1332
|
dataFormatter: {
|
977
|
-
sort: (t,
|
1333
|
+
sort: (t, e) => e.value - t.value,
|
978
1334
|
separateLabel: !0,
|
979
1335
|
separateSeries: !0
|
980
1336
|
},
|
@@ -1024,7 +1380,7 @@ const D = {
|
|
1024
1380
|
}
|
1025
1381
|
},
|
1026
1382
|
dataFormatter: {
|
1027
|
-
sort: (t,
|
1383
|
+
sort: (t, e) => e.value - t.value,
|
1028
1384
|
separateSeries: !0
|
1029
1385
|
},
|
1030
1386
|
pluginParams: {}
|
@@ -1073,7 +1429,7 @@ const c = {
|
|
1073
1429
|
}
|
1074
1430
|
},
|
1075
1431
|
dataFormatter: {
|
1076
|
-
sort: (t,
|
1432
|
+
sort: (t, e) => e.value - t.value
|
1077
1433
|
},
|
1078
1434
|
pluginParams: {
|
1079
1435
|
SeriesLegend: {
|
@@ -1127,7 +1483,7 @@ const g = {
|
|
1127
1483
|
}
|
1128
1484
|
},
|
1129
1485
|
dataFormatter: {
|
1130
|
-
sort: (t,
|
1486
|
+
sort: (t, e) => e.value - t.value,
|
1131
1487
|
sumSeries: !0
|
1132
1488
|
},
|
1133
1489
|
pluginParams: {}
|
@@ -1176,14 +1532,14 @@ const p = {
|
|
1176
1532
|
}
|
1177
1533
|
},
|
1178
1534
|
dataFormatter: {
|
1179
|
-
sort: (t,
|
1535
|
+
sort: (t, e) => e.value - t.value,
|
1180
1536
|
separateSeries: !0,
|
1181
1537
|
sumSeries: !0
|
1182
1538
|
},
|
1183
1539
|
pluginParams: {}
|
1184
1540
|
};
|
1185
1541
|
p.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
1186
|
-
const
|
1542
|
+
const G = {
|
1187
1543
|
name: "PRESET_SERIES_BASIC",
|
1188
1544
|
description: "Basic Series parameters",
|
1189
1545
|
descriptionZh: "基本Series參數",
|
@@ -1225,7 +1581,7 @@ const T = {
|
|
1225
1581
|
// 圓型圖例列點
|
1226
1582
|
}
|
1227
1583
|
}
|
1228
|
-
},
|
1584
|
+
}, x = {
|
1229
1585
|
name: "PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES",
|
1230
1586
|
description: "Separate and sum Series data",
|
1231
1587
|
descriptionZh: "分開顯示Series並合併Series資料",
|
@@ -1262,12 +1618,12 @@ const T = {
|
|
1262
1618
|
}
|
1263
1619
|
},
|
1264
1620
|
dataFormatter: {
|
1265
|
-
sort: (t,
|
1621
|
+
sort: (t, e) => e.value - t.value,
|
1266
1622
|
separateSeries: !0,
|
1267
1623
|
sumSeries: !0
|
1268
1624
|
},
|
1269
1625
|
pluginParams: {}
|
1270
|
-
},
|
1626
|
+
}, u = {
|
1271
1627
|
name: "PRESET_SERIES_SEPARATE_SERIES",
|
1272
1628
|
description: "Separate Series",
|
1273
1629
|
descriptionZh: "分開顯示Series",
|
@@ -1304,13 +1660,13 @@ const T = {
|
|
1304
1660
|
}
|
1305
1661
|
},
|
1306
1662
|
dataFormatter: {
|
1307
|
-
sort: (t,
|
1663
|
+
sort: (t, e) => e.value - t.value,
|
1308
1664
|
separateSeries: !0
|
1309
1665
|
},
|
1310
1666
|
pluginParams: {}
|
1311
1667
|
};
|
1312
|
-
|
1313
|
-
const
|
1668
|
+
u.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
1669
|
+
const R = {
|
1314
1670
|
name: "PRESET_SERIES_SUM_SERIES",
|
1315
1671
|
description: "Combine Series data",
|
1316
1672
|
descriptionZh: "合併Series資料",
|
@@ -1347,13 +1703,13 @@ const u = {
|
|
1347
1703
|
}
|
1348
1704
|
},
|
1349
1705
|
dataFormatter: {
|
1350
|
-
sort: (t,
|
1706
|
+
sort: (t, e) => e.value - t.value,
|
1351
1707
|
sumSeries: !0
|
1352
1708
|
},
|
1353
1709
|
pluginParams: {}
|
1354
1710
|
};
|
1355
|
-
|
1356
|
-
const
|
1711
|
+
R.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
1712
|
+
const O = {
|
1357
1713
|
name: "PRESET_BARS_HORIZONTAL_AND_ROUND",
|
1358
1714
|
description: "Horizontal bars with round corners",
|
1359
1715
|
descriptionZh: "橫向圓角長條圖",
|
@@ -1419,7 +1775,7 @@ const I = {
|
|
1419
1775
|
listRectRadius: 7
|
1420
1776
|
}
|
1421
1777
|
}
|
1422
|
-
},
|
1778
|
+
}, k = {
|
1423
1779
|
name: "PRESET_BARS_HORIZONTAL_AND_THIN",
|
1424
1780
|
description: "Horizontal thin bars",
|
1425
1781
|
descriptionZh: "橫向細長長條圖",
|
@@ -1485,7 +1841,7 @@ const I = {
|
|
1485
1841
|
padding: 14
|
1486
1842
|
}
|
1487
1843
|
}
|
1488
|
-
},
|
1844
|
+
}, N = {
|
1489
1845
|
name: "PRESET_BARS_ROUND",
|
1490
1846
|
description: "Rounded bars",
|
1491
1847
|
descriptionZh: "圓角長條圖",
|
@@ -1546,7 +1902,7 @@ const I = {
|
|
1546
1902
|
listRectRadius: 7
|
1547
1903
|
}
|
1548
1904
|
}
|
1549
|
-
},
|
1905
|
+
}, v = {
|
1550
1906
|
name: "PRESET_BARS_THIN",
|
1551
1907
|
description: "Thin bars",
|
1552
1908
|
descriptionZh: "細長條圖",
|
@@ -1604,7 +1960,7 @@ const I = {
|
|
1604
1960
|
padding: 14
|
1605
1961
|
}
|
1606
1962
|
}
|
1607
|
-
},
|
1963
|
+
}, f = {
|
1608
1964
|
name: "PRESET_GRID_BASIC",
|
1609
1965
|
description: "Basic Grid",
|
1610
1966
|
descriptionZh: "基本Grid",
|
@@ -1652,7 +2008,7 @@ const I = {
|
|
1652
2008
|
padding: 14
|
1653
2009
|
}
|
1654
2010
|
}
|
1655
|
-
},
|
2011
|
+
}, Z = {
|
1656
2012
|
name: "PRESET_GRID_HORIZONTAL",
|
1657
2013
|
description: "Horizontal Grid",
|
1658
2014
|
descriptionZh: "橫向圖",
|
@@ -1709,7 +2065,7 @@ const I = {
|
|
1709
2065
|
padding: 14
|
1710
2066
|
}
|
1711
2067
|
}
|
1712
|
-
},
|
2068
|
+
}, U = {
|
1713
2069
|
name: "PRESET_GRID_PN_SCALE_SIMPLE",
|
1714
2070
|
description: "Simple positive negative scale",
|
1715
2071
|
descriptionZh: "簡單正負值分向圖",
|
@@ -1763,7 +2119,7 @@ const I = {
|
|
1763
2119
|
padding: 7
|
1764
2120
|
}
|
1765
2121
|
}
|
1766
|
-
},
|
2122
|
+
}, V = {
|
1767
2123
|
name: "PRESET_GRID_PN_SCALE",
|
1768
2124
|
description: "Positive negative scale",
|
1769
2125
|
descriptionZh: "正負值分向圖",
|
@@ -1817,7 +2173,7 @@ const I = {
|
|
1817
2173
|
padding: 14
|
1818
2174
|
}
|
1819
2175
|
}
|
1820
|
-
},
|
2176
|
+
}, H = {
|
1821
2177
|
name: "PRESET_GRID_ROTATE_AXIS_LABEL",
|
1822
2178
|
description: "Rotate axis label",
|
1823
2179
|
descriptionZh: "傾斜標籤",
|
@@ -1873,7 +2229,7 @@ const I = {
|
|
1873
2229
|
padding: 14
|
1874
2230
|
}
|
1875
2231
|
}
|
1876
|
-
},
|
2232
|
+
}, w = {
|
1877
2233
|
name: "PRESET_GRID_SEPARATE_SERIES",
|
1878
2234
|
description: "Separate Series",
|
1879
2235
|
descriptionZh: "分開顯示Series",
|
@@ -1935,7 +2291,7 @@ const I = {
|
|
1935
2291
|
padding: 14
|
1936
2292
|
}
|
1937
2293
|
}
|
1938
|
-
},
|
2294
|
+
}, y = {
|
1939
2295
|
name: "PRESET_GRID_SIMPLE",
|
1940
2296
|
description: "Simple Grid",
|
1941
2297
|
descriptionZh: "簡單Grid",
|
@@ -1988,7 +2344,7 @@ const I = {
|
|
1988
2344
|
padding: 7
|
1989
2345
|
}
|
1990
2346
|
}
|
1991
|
-
},
|
2347
|
+
}, W = {
|
1992
2348
|
name: "PRESET_LINE_AREAS_BASIC",
|
1993
2349
|
description: "Basic LineArea",
|
1994
2350
|
descriptionZh: "基本折線區域圖",
|
@@ -2050,7 +2406,7 @@ const I = {
|
|
2050
2406
|
listRectHeight: 2
|
2051
2407
|
}
|
2052
2408
|
}
|
2053
|
-
},
|
2409
|
+
}, Y = {
|
2054
2410
|
name: "PRESET_LINE_AREAS_CURVE",
|
2055
2411
|
description: "Curve LineArea",
|
2056
2412
|
descriptionZh: "弧線的折線區域圖",
|
@@ -2117,7 +2473,7 @@ const I = {
|
|
2117
2473
|
listRectHeight: 2
|
2118
2474
|
}
|
2119
2475
|
}
|
2120
|
-
},
|
2476
|
+
}, z = {
|
2121
2477
|
name: "PRESET_LINE_AREAS_HORIZONTAL",
|
2122
2478
|
description: "Horizontal LineArea",
|
2123
2479
|
descriptionZh: "橫向折線區域圖",
|
@@ -2182,7 +2538,7 @@ const I = {
|
|
2182
2538
|
listRectHeight: 2
|
2183
2539
|
}
|
2184
2540
|
}
|
2185
|
-
},
|
2541
|
+
}, X = {
|
2186
2542
|
name: "PRESET_LINE_AREAS_LOOSE_TICKS",
|
2187
2543
|
description: "Loose Ticks LineArea",
|
2188
2544
|
descriptionZh: "寬鬆標籤的折線區域圖",
|
@@ -2246,7 +2602,7 @@ const I = {
|
|
2246
2602
|
listRectHeight: 2
|
2247
2603
|
}
|
2248
2604
|
}
|
2249
|
-
},
|
2605
|
+
}, K = {
|
2250
2606
|
name: "PRESET_LINE_AREAS_ROTATE_AXIS_LABEL",
|
2251
2607
|
description: "Rotate Axis Label LineArea",
|
2252
2608
|
descriptionZh: "傾斜標籤的折線區域圖",
|
@@ -2312,7 +2668,7 @@ const I = {
|
|
2312
2668
|
listRectHeight: 2
|
2313
2669
|
}
|
2314
2670
|
}
|
2315
|
-
},
|
2671
|
+
}, j = {
|
2316
2672
|
name: "PRESET_LINE_AREAS_SEPARATE_SERIES",
|
2317
2673
|
description: "Separate Series LineArea",
|
2318
2674
|
descriptionZh: "分開顯示Series的折線區域圖",
|
@@ -2383,7 +2739,7 @@ const I = {
|
|
2383
2739
|
listRectHeight: 2
|
2384
2740
|
}
|
2385
2741
|
}
|
2386
|
-
},
|
2742
|
+
}, q = {
|
2387
2743
|
name: "PRESET_LINE_AREAS_SIMPLE",
|
2388
2744
|
description: "Simple LineArea",
|
2389
2745
|
descriptionZh: "簡單折線區域圖",
|
@@ -2449,7 +2805,7 @@ const I = {
|
|
2449
2805
|
listRectHeight: 2
|
2450
2806
|
}
|
2451
2807
|
}
|
2452
|
-
},
|
2808
|
+
}, J = {
|
2453
2809
|
name: "PRESET_LINES_BASIC",
|
2454
2810
|
description: "Basic Line",
|
2455
2811
|
descriptionZh: "基本折線圖",
|
@@ -2504,7 +2860,7 @@ const I = {
|
|
2504
2860
|
listRectHeight: 2
|
2505
2861
|
}
|
2506
2862
|
}
|
2507
|
-
},
|
2863
|
+
}, Q = {
|
2508
2864
|
name: "PRESET_LINES_CURVE",
|
2509
2865
|
description: "Curve Line",
|
2510
2866
|
descriptionZh: "弧線折線圖",
|
@@ -2562,7 +2918,7 @@ const I = {
|
|
2562
2918
|
listRectHeight: 2
|
2563
2919
|
}
|
2564
2920
|
}
|
2565
|
-
},
|
2921
|
+
}, $ = {
|
2566
2922
|
name: "PRESET_LINES_HORIZONTAL",
|
2567
2923
|
description: "Horizontal Line",
|
2568
2924
|
descriptionZh: "橫向折線圖",
|
@@ -2625,7 +2981,7 @@ const I = {
|
|
2625
2981
|
listRectHeight: 2
|
2626
2982
|
}
|
2627
2983
|
}
|
2628
|
-
},
|
2984
|
+
}, tt = {
|
2629
2985
|
name: "PRESET_LINES_LOOSE_TICKS",
|
2630
2986
|
description: "Loose Ticks Line",
|
2631
2987
|
descriptionZh: "寬鬆標籤的折線圖",
|
@@ -2682,7 +3038,7 @@ const I = {
|
|
2682
3038
|
listRectHeight: 2
|
2683
3039
|
}
|
2684
3040
|
}
|
2685
|
-
},
|
3041
|
+
}, et = {
|
2686
3042
|
name: "PRESET_LINES_ROTATE_AXIS_LABEL",
|
2687
3043
|
description: "Line chart with slanted labels",
|
2688
3044
|
descriptionZh: "傾斜標籤的折線圖",
|
@@ -2742,7 +3098,7 @@ const I = {
|
|
2742
3098
|
listRectHeight: 2
|
2743
3099
|
}
|
2744
3100
|
}
|
2745
|
-
},
|
3101
|
+
}, at = {
|
2746
3102
|
name: "PRESET_LINES_SIMPLE",
|
2747
3103
|
description: "Simple line",
|
2748
3104
|
descriptionZh: "簡單折線圖",
|
@@ -2802,7 +3158,7 @@ const I = {
|
|
2802
3158
|
listRectHeight: 2
|
2803
3159
|
}
|
2804
3160
|
}
|
2805
|
-
},
|
3161
|
+
}, it = {
|
2806
3162
|
name: "PRESET_LINES_WITH_SOLID_DOTS",
|
2807
3163
|
description: "Solid Dots Line",
|
2808
3164
|
descriptionZh: "實心圓點的折線圖",
|
@@ -2861,7 +3217,7 @@ const I = {
|
|
2861
3217
|
listRectHeight: 2
|
2862
3218
|
}
|
2863
3219
|
}
|
2864
|
-
},
|
3220
|
+
}, Ft = {
|
2865
3221
|
name: "PRESET_MULTI_GRID_BASIC",
|
2866
3222
|
description: "Basic MultiGrid",
|
2867
3223
|
descriptionZh: "基本MultiGrid",
|
@@ -2916,7 +3272,7 @@ const I = {
|
|
2916
3272
|
]
|
2917
3273
|
}
|
2918
3274
|
}
|
2919
|
-
},
|
3275
|
+
}, rt = {
|
2920
3276
|
name: "PRESET_MULTI_GRID_DIVERGING_SIMPLE",
|
2921
3277
|
description: "Simple diverging Grid",
|
2922
3278
|
descriptionZh: "簡單雙向Grid",
|
@@ -3025,7 +3381,7 @@ const I = {
|
|
3025
3381
|
padding: 7
|
3026
3382
|
}
|
3027
3383
|
}
|
3028
|
-
},
|
3384
|
+
}, lt = {
|
3029
3385
|
name: "PRESET_MULTI_GRID_DIVERGING",
|
3030
3386
|
description: "Diverging Grid",
|
3031
3387
|
descriptionZh: "雙向Grid",
|
@@ -3131,7 +3487,7 @@ const I = {
|
|
3131
3487
|
padding: 14
|
3132
3488
|
}
|
3133
3489
|
}
|
3134
|
-
},
|
3490
|
+
}, st = {
|
3135
3491
|
name: "PRESET_MULTI_GRID_ROUND_STYLE_SIMPLE",
|
3136
3492
|
description: "Simple MultiGrid with round style",
|
3137
3493
|
descriptionZh: "簡單MultiGrid圓弧風格",
|
@@ -3220,7 +3576,7 @@ const I = {
|
|
3220
3576
|
OverlappingValueAxes: {},
|
3221
3577
|
OverlappingStackedValueAxes: {}
|
3222
3578
|
}
|
3223
|
-
},
|
3579
|
+
}, ot = {
|
3224
3580
|
name: "PRESET_MULTI_GRID_ROUND_STYLE",
|
3225
3581
|
description: "MultiGrid with round style",
|
3226
3582
|
descriptionZh: "MultiGrid圓弧風格",
|
@@ -3295,7 +3651,7 @@ const I = {
|
|
3295
3651
|
OverlappingValueAxes: {},
|
3296
3652
|
OverlappingStackedValueAxes: {}
|
3297
3653
|
}
|
3298
|
-
},
|
3654
|
+
}, nt = {
|
3299
3655
|
name: "PRESET_MULTI_GRID_SEPARATE_GRID_SIMPLE",
|
3300
3656
|
description: "Simple separate grid",
|
3301
3657
|
descriptionZh: "簡單的分開顯示Grid圖表",
|
@@ -3386,7 +3742,7 @@ const I = {
|
|
3386
3742
|
padding: 7
|
3387
3743
|
}
|
3388
3744
|
}
|
3389
|
-
},
|
3745
|
+
}, dt = {
|
3390
3746
|
name: "PRESET_MULTI_GRID_SEPARATE_GRID",
|
3391
3747
|
description: "Separate Grid",
|
3392
3748
|
descriptionZh: "分開顯示Grid圖表",
|
@@ -3469,7 +3825,7 @@ const I = {
|
|
3469
3825
|
padding: 14
|
3470
3826
|
}
|
3471
3827
|
}
|
3472
|
-
},
|
3828
|
+
}, Bt = {
|
3473
3829
|
name: "PRESET_MULTI_GRID_SIMPLE",
|
3474
3830
|
description: "Simple MultiGrid",
|
3475
3831
|
descriptionZh: "簡單MultiGrid",
|
@@ -3534,7 +3890,7 @@ const I = {
|
|
3534
3890
|
]
|
3535
3891
|
}
|
3536
3892
|
}
|
3537
|
-
},
|
3893
|
+
}, Et = {
|
3538
3894
|
name: "PRESET_MULTI_LINE_AREAS_SEPARATE_GRID_SIMPLE",
|
3539
3895
|
description: "Simple separate grid line areas",
|
3540
3896
|
descriptionZh: "簡單的分開顯示Grid的折線區域圖",
|
@@ -3656,7 +4012,7 @@ const I = {
|
|
3656
4012
|
]
|
3657
4013
|
}
|
3658
4014
|
}
|
3659
|
-
},
|
4015
|
+
}, Ct = {
|
3660
4016
|
name: "PRESET_MULTI_LINE_AREAS_SEPARATE_GRID",
|
3661
4017
|
description: "Separate Grid line areas",
|
3662
4018
|
descriptionZh: "分開顯示Grid的折線區域圖",
|
@@ -3781,7 +4137,7 @@ const I = {
|
|
3781
4137
|
]
|
3782
4138
|
}
|
3783
4139
|
}
|
3784
|
-
},
|
4140
|
+
}, At = {
|
3785
4141
|
name: "PRESET_MULTI_LINES_SEPARATE_GRID_SIMPLE",
|
3786
4142
|
description: "Simple separate grid line",
|
3787
4143
|
descriptionZh: "簡單的分開顯示Grid的折線圖",
|
@@ -3898,7 +4254,7 @@ const I = {
|
|
3898
4254
|
]
|
3899
4255
|
}
|
3900
4256
|
}
|
3901
|
-
},
|
4257
|
+
}, Dt = {
|
3902
4258
|
name: "PRESET_MULTI_LINES_SEPARATE_GRID",
|
3903
4259
|
description: "Separate Grid line",
|
3904
4260
|
descriptionZh: "分開顯示Grid的折線圖",
|
@@ -4009,7 +4365,7 @@ const I = {
|
|
4009
4365
|
]
|
4010
4366
|
}
|
4011
4367
|
}
|
4012
|
-
},
|
4368
|
+
}, ct = {
|
4013
4369
|
name: "PRESET_MULTI_VALUE_BASIC",
|
4014
4370
|
description: "Basic MultiValue",
|
4015
4371
|
descriptionZh: "基本MultiValue參數",
|
@@ -4057,7 +4413,7 @@ const I = {
|
|
4057
4413
|
padding: 14
|
4058
4414
|
}
|
4059
4415
|
}
|
4060
|
-
},
|
4416
|
+
}, gt = {
|
4061
4417
|
name: "PRESET_MULTI_VALUE_SEPARATE_CATEGORY",
|
4062
4418
|
description: "MultiValue separate category",
|
4063
4419
|
descriptionZh: "MultiValue 分開顯示category",
|
@@ -4120,7 +4476,7 @@ const I = {
|
|
4120
4476
|
padding: 14
|
4121
4477
|
}
|
4122
4478
|
}
|
4123
|
-
},
|
4479
|
+
}, pt = {
|
4124
4480
|
name: "PRESET_MULTI_VALUE_SIMPLE",
|
4125
4481
|
description: "Simple MultiValue",
|
4126
4482
|
descriptionZh: "簡單MultiValue參數",
|
@@ -4168,7 +4524,7 @@ const I = {
|
|
4168
4524
|
padding: 7
|
4169
4525
|
}
|
4170
4526
|
}
|
4171
|
-
},
|
4527
|
+
}, ut = {
|
4172
4528
|
name: "PRESET_ORDINAL_BUBBLES_ALL_ITEMS",
|
4173
4529
|
description: "Ordinal bubbles with all items",
|
4174
4530
|
descriptionZh: "顯示全部項目的序數泡泡圖",
|
@@ -4221,7 +4577,7 @@ const I = {
|
|
4221
4577
|
// 圓型圖例列點
|
4222
4578
|
}
|
4223
4579
|
}
|
4224
|
-
},
|
4580
|
+
}, Rt = {
|
4225
4581
|
name: "PRESET_ORDINAL_BUBBLES_BASIC",
|
4226
4582
|
description: "Basic ordinal bubbles",
|
4227
4583
|
descriptionZh: "序數泡泡圖",
|
@@ -4272,7 +4628,7 @@ const I = {
|
|
4272
4628
|
// 圓型圖例列點
|
4273
4629
|
}
|
4274
4630
|
}
|
4275
|
-
},
|
4631
|
+
}, St = {
|
4276
4632
|
name: "PRESET_ORDINAL_BUBBLES_LINEAR_OPACITY",
|
4277
4633
|
description: "Ordinal bubbles with linear opacity",
|
4278
4634
|
descriptionZh: "漸變透明度的序數泡泡圖",
|
@@ -4327,7 +4683,7 @@ const I = {
|
|
4327
4683
|
// 圓型圖例列點
|
4328
4684
|
}
|
4329
4685
|
}
|
4330
|
-
},
|
4686
|
+
}, mt = {
|
4331
4687
|
name: "PRESET_ORDINAL_BUBBLES_SCALING_BY_RADIUS",
|
4332
4688
|
description: "Ordinal bubbles with radius scaling",
|
4333
4689
|
descriptionZh: "以半徑尺寸為比例的序數泡泡圖",
|
@@ -4382,7 +4738,7 @@ const I = {
|
|
4382
4738
|
// 圓型圖例列點
|
4383
4739
|
}
|
4384
4740
|
}
|
4385
|
-
},
|
4741
|
+
}, _t = {
|
4386
4742
|
name: "PRESET_ORDINAL_BUBBLES_SEPARATE_CATEGORY",
|
4387
4743
|
description: "Ordinal bubbles with separate category",
|
4388
4744
|
descriptionZh: "分開顯示category的序數泡泡圖",
|
@@ -4443,7 +4799,7 @@ const I = {
|
|
4443
4799
|
// 圓型圖例列點
|
4444
4800
|
}
|
4445
4801
|
}
|
4446
|
-
},
|
4802
|
+
}, ht = {
|
4447
4803
|
name: "PRESET_ORDINAL_BUBBLES_SIMPLE",
|
4448
4804
|
description: "Simple ordinal bubbles",
|
4449
4805
|
descriptionZh: "簡單的序數泡泡圖",
|
@@ -4497,7 +4853,7 @@ const I = {
|
|
4497
4853
|
// 圓型圖例列點
|
4498
4854
|
}
|
4499
4855
|
}
|
4500
|
-
},
|
4856
|
+
}, Pt = {
|
4501
4857
|
name: "PRESET_RACING_BARS_ALL_ITEMS",
|
4502
4858
|
description: "Racing bars for all items",
|
4503
4859
|
descriptionZh: "顯示全部項目的賽跑長條圖",
|
@@ -4550,7 +4906,7 @@ const I = {
|
|
4550
4906
|
padding: 14
|
4551
4907
|
}
|
4552
4908
|
}
|
4553
|
-
},
|
4909
|
+
}, bt = {
|
4554
4910
|
name: "PRESET_RACING_BARS_BASIC",
|
4555
4911
|
description: "Basic racing bars",
|
4556
4912
|
descriptionZh: "基本賽跑長條圖",
|
@@ -4602,7 +4958,7 @@ const I = {
|
|
4602
4958
|
padding: 14
|
4603
4959
|
}
|
4604
4960
|
}
|
4605
|
-
},
|
4961
|
+
}, Tt = {
|
4606
4962
|
name: "PRESET_RACING_BARS_FAST",
|
4607
4963
|
description: "Fast racing bars",
|
4608
4964
|
descriptionZh: "快速的賽跑長條圖",
|
@@ -4654,7 +5010,7 @@ const I = {
|
|
4654
5010
|
padding: 14
|
4655
5011
|
}
|
4656
5012
|
}
|
4657
|
-
},
|
5013
|
+
}, It = {
|
4658
5014
|
name: "PRESET_RACING_BARS_FASTER",
|
4659
5015
|
description: "Faster racing bars",
|
4660
5016
|
descriptionZh: "更快速的賽跑長條圖",
|
@@ -4706,7 +5062,7 @@ const I = {
|
|
4706
5062
|
padding: 14
|
4707
5063
|
}
|
4708
5064
|
}
|
4709
|
-
},
|
5065
|
+
}, Lt = {
|
4710
5066
|
name: "PRESET_RACING_BARS_LOOP",
|
4711
5067
|
description: "Looping racing bars",
|
4712
5068
|
descriptionZh: "循環的賽跑長條圖",
|
@@ -4759,7 +5115,7 @@ const I = {
|
|
4759
5115
|
padding: 14
|
4760
5116
|
}
|
4761
5117
|
}
|
4762
|
-
},
|
5118
|
+
}, Mt = {
|
4763
5119
|
name: "PRESET_RACING_BARS_OUTSIDE_LABELS",
|
4764
5120
|
description: "Racing bars with labels outside",
|
4765
5121
|
descriptionZh: "標籤在外面的賽跑長條圖",
|
@@ -4815,7 +5171,7 @@ const I = {
|
|
4815
5171
|
padding: 14
|
4816
5172
|
}
|
4817
5173
|
}
|
4818
|
-
},
|
5174
|
+
}, Gt = {
|
4819
5175
|
name: "PRESET_RACING_BARS_SEPARATE_CATEGORY",
|
4820
5176
|
description: "Racing bars with separate category",
|
4821
5177
|
descriptionZh: "分開顯示category的賽跑長條圖",
|
@@ -4884,7 +5240,7 @@ const I = {
|
|
4884
5240
|
padding: 14
|
4885
5241
|
}
|
4886
5242
|
}
|
4887
|
-
},
|
5243
|
+
}, xt = {
|
4888
5244
|
name: "PRESET_RACING_BARS_SIMPLE",
|
4889
5245
|
description: "Simple racing bars",
|
4890
5246
|
descriptionZh: "簡單賽跑長條圖",
|
@@ -4936,7 +5292,7 @@ const I = {
|
|
4936
5292
|
padding: 7
|
4937
5293
|
}
|
4938
5294
|
}
|
4939
|
-
},
|
5295
|
+
}, Ot = {
|
4940
5296
|
name: "PRESET_RACING_BARS_STOP",
|
4941
5297
|
description: "Stopped racing bars",
|
4942
5298
|
descriptionZh: "停止的賽跑長條圖",
|
@@ -4987,7 +5343,7 @@ const I = {
|
|
4987
5343
|
padding: 14
|
4988
5344
|
}
|
4989
5345
|
}
|
4990
|
-
},
|
5346
|
+
}, kt = {
|
4991
5347
|
name: "PRESET_SCATTER_BASIC",
|
4992
5348
|
description: "Basic scatter",
|
4993
5349
|
descriptionZh: "基本散布圖",
|
@@ -5037,7 +5393,7 @@ const I = {
|
|
5037
5393
|
// 圓型圖例列點
|
5038
5394
|
}
|
5039
5395
|
}
|
5040
|
-
},
|
5396
|
+
}, Nt = {
|
5041
5397
|
name: "PRESET_SCATTER_BUBBLES_BASIC",
|
5042
5398
|
description: "Basic scatter bubbles",
|
5043
5399
|
descriptionZh: "基本的散布泡泡圖",
|
@@ -5087,7 +5443,7 @@ const I = {
|
|
5087
5443
|
// 圓型圖例列點
|
5088
5444
|
}
|
5089
5445
|
}
|
5090
|
-
},
|
5446
|
+
}, vt = {
|
5091
5447
|
name: "PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS",
|
5092
5448
|
description: "Scatter bubbles with radius scaling",
|
5093
5449
|
descriptionZh: "以半徑尺寸為比例的散布泡泡圖",
|
@@ -5140,7 +5496,7 @@ const I = {
|
|
5140
5496
|
arcScaleType: "radius"
|
5141
5497
|
}
|
5142
5498
|
}
|
5143
|
-
},
|
5499
|
+
}, ft = {
|
5144
5500
|
name: "PRESET_SCATTER_BUBBLES_LINEAR_OPACITY",
|
5145
5501
|
description: "Scatter bubbles with linear opacity",
|
5146
5502
|
descriptionZh: "以資料量漸變透明度的散布泡泡圖",
|
@@ -5193,7 +5549,7 @@ const I = {
|
|
5193
5549
|
valueLinearOpacity: [0.5, 1]
|
5194
5550
|
}
|
5195
5551
|
}
|
5196
|
-
},
|
5552
|
+
}, Zt = {
|
5197
5553
|
name: "PRESET_SCATTER_BUBBLES_SEPARATE_CATEGORY",
|
5198
5554
|
description: "Scatter bubbles with separate category",
|
5199
5555
|
descriptionZh: "分開顯示category的散布泡泡圖",
|
@@ -5250,7 +5606,7 @@ const I = {
|
|
5250
5606
|
// 圓型圖例列點
|
5251
5607
|
}
|
5252
5608
|
}
|
5253
|
-
},
|
5609
|
+
}, Ut = {
|
5254
5610
|
name: "PRESET_SCATTER_BUBBLES_SIMPLE",
|
5255
5611
|
description: "Simple scatter bubbles",
|
5256
5612
|
descriptionZh: "簡單的散布泡泡圖",
|
@@ -5300,7 +5656,7 @@ const I = {
|
|
5300
5656
|
// 圓型圖例列點
|
5301
5657
|
}
|
5302
5658
|
}
|
5303
|
-
},
|
5659
|
+
}, Vt = {
|
5304
5660
|
name: "PRESET_SCATTER_SEPARATE_CATEGORY",
|
5305
5661
|
description: "Scatter with separate category",
|
5306
5662
|
descriptionZh: "分開顯示category的散布圖",
|
@@ -5365,7 +5721,7 @@ const I = {
|
|
5365
5721
|
// 圓型圖例列點
|
5366
5722
|
}
|
5367
5723
|
}
|
5368
|
-
},
|
5724
|
+
}, Ht = {
|
5369
5725
|
name: "PRESET_SCATTER_SIMPLE",
|
5370
5726
|
description: "Simple scatter",
|
5371
5727
|
descriptionZh: "簡單散布圖",
|
@@ -5415,7 +5771,7 @@ const I = {
|
|
5415
5771
|
// 圓型圖例列點
|
5416
5772
|
}
|
5417
5773
|
}
|
5418
|
-
},
|
5774
|
+
}, wt = {
|
5419
5775
|
name: "PRESET_FORCE_DIRECTED_BASIC",
|
5420
5776
|
description: "Basic force directed chart",
|
5421
5777
|
descriptionZh: "基本力導向圖",
|
@@ -5458,7 +5814,7 @@ const I = {
|
|
5458
5814
|
// 圓型圖例列點
|
5459
5815
|
}
|
5460
5816
|
}
|
5461
|
-
},
|
5817
|
+
}, yt = {
|
5462
5818
|
name: "PRESET_FORCE_DIRECTED_BUBBLES_BASIC",
|
5463
5819
|
description: "Basic force directed bubbles chart",
|
5464
5820
|
descriptionZh: "基本力導向泡泡圖",
|
@@ -5501,7 +5857,7 @@ const I = {
|
|
5501
5857
|
// 圓型圖例列點
|
5502
5858
|
}
|
5503
5859
|
}
|
5504
|
-
},
|
5860
|
+
}, Wt = {
|
5505
5861
|
name: "PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH",
|
5506
5862
|
description: "Force-directed bubble chart with fixed arrow width",
|
5507
5863
|
descriptionZh: "固定箭頭寬度的力導向泡泡圖",
|
@@ -5549,7 +5905,7 @@ const I = {
|
|
5549
5905
|
// 圓型圖例列點
|
5550
5906
|
}
|
5551
5907
|
}
|
5552
|
-
},
|
5908
|
+
}, Yt = {
|
5553
5909
|
name: "PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW",
|
5554
5910
|
description: "Force-directed bubble chart without arrows",
|
5555
5911
|
descriptionZh: "沒有箭頭的力導向泡泡圖",
|
@@ -5597,7 +5953,7 @@ const I = {
|
|
5597
5953
|
// 圓型圖例列點
|
5598
5954
|
}
|
5599
5955
|
}
|
5600
|
-
},
|
5956
|
+
}, zt = {
|
5601
5957
|
name: "PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM",
|
5602
5958
|
description: "Force Directed bubbles chart without mouse drag and zoom control",
|
5603
5959
|
descriptionZh: "無滑鼠托曳及縮放控制的力導向泡泡圖",
|
@@ -5642,7 +5998,7 @@ const I = {
|
|
5642
5998
|
// 圓型圖例列點
|
5643
5999
|
}
|
5644
6000
|
}
|
5645
|
-
},
|
6001
|
+
}, Xt = {
|
5646
6002
|
name: "PRESET_FORCE_DIRECTED_BUBBLES_SIMPLE",
|
5647
6003
|
description: "Simple force directed bubbles chart",
|
5648
6004
|
descriptionZh: "簡單力導向泡泡圖",
|
@@ -5686,7 +6042,7 @@ const I = {
|
|
5686
6042
|
padding: 7
|
5687
6043
|
}
|
5688
6044
|
}
|
5689
|
-
},
|
6045
|
+
}, Kt = {
|
5690
6046
|
name: "PRESET_FORCE_DIRECTED_NONE_ZOOM",
|
5691
6047
|
description: "Force directed chart without mouse drag and zoom control",
|
5692
6048
|
descriptionZh: "無滑鼠托曳及縮放控制的力導向圖",
|
@@ -5731,7 +6087,7 @@ const I = {
|
|
5731
6087
|
// 圓型圖例列點
|
5732
6088
|
}
|
5733
6089
|
}
|
5734
|
-
},
|
6090
|
+
}, jt = {
|
5735
6091
|
name: "PRESET_FORCE_DIRECTED_FIX_FONT_SIZE",
|
5736
6092
|
description: "Force directed chart with fixed font size",
|
5737
6093
|
descriptionZh: "固定字體大小的力導向圖",
|
@@ -5781,7 +6137,7 @@ const I = {
|
|
5781
6137
|
// 圓型圖例列點
|
5782
6138
|
}
|
5783
6139
|
}
|
5784
|
-
},
|
6140
|
+
}, qt = {
|
5785
6141
|
name: "PRESET_FORCE_DIRECTED_NONE_ARROW",
|
5786
6142
|
description: "Force directed chart without arrows",
|
5787
6143
|
descriptionZh: "沒有箭頭的力導向圖",
|
@@ -5829,7 +6185,7 @@ const I = {
|
|
5829
6185
|
// 圓型圖例列點
|
5830
6186
|
}
|
5831
6187
|
}
|
5832
|
-
},
|
6188
|
+
}, Jt = {
|
5833
6189
|
name: "PRESET_FORCE_DIRECTED_SIMPLE",
|
5834
6190
|
description: "Simple force directed chart",
|
5835
6191
|
descriptionZh: "簡單力導向圖",
|
@@ -5873,7 +6229,7 @@ const I = {
|
|
5873
6229
|
padding: 7
|
5874
6230
|
}
|
5875
6231
|
}
|
5876
|
-
},
|
6232
|
+
}, Qt = {
|
5877
6233
|
name: "PRESET_TREE_MAP_BASIC",
|
5878
6234
|
description: "Basic tree map",
|
5879
6235
|
descriptionZh: "基本樹狀矩形圖",
|
@@ -5922,7 +6278,7 @@ const I = {
|
|
5922
6278
|
padding: 14
|
5923
6279
|
}
|
5924
6280
|
}
|
5925
|
-
},
|
6281
|
+
}, $t = {
|
5926
6282
|
name: "PRESET_TREE_MAP_SIMPLE",
|
5927
6283
|
description: "Simple tree map",
|
5928
6284
|
descriptionZh: "簡單樹狀矩形圖",
|
@@ -5973,87 +6329,91 @@ const I = {
|
|
5973
6329
|
}
|
5974
6330
|
};
|
5975
6331
|
export {
|
5976
|
-
|
5977
|
-
|
5978
|
-
|
5979
|
-
|
5980
|
-
|
5981
|
-
|
5982
|
-
|
6332
|
+
O as PRESET_BARS_HORIZONTAL_AND_ROUND,
|
6333
|
+
k as PRESET_BARS_HORIZONTAL_AND_THIN,
|
6334
|
+
N as PRESET_BARS_ROUND,
|
6335
|
+
v as PRESET_BARS_THIN,
|
6336
|
+
S as PRESET_BUBBLES_BASIC,
|
6337
|
+
m as PRESET_BUBBLES_SCALING_BY_RADIUS,
|
6338
|
+
P as PRESET_BUBBLES_SEPARATE_ALL,
|
5983
6339
|
h as PRESET_BUBBLES_SEPARATE_LABEL,
|
5984
|
-
|
5985
|
-
|
5986
|
-
|
5987
|
-
|
5988
|
-
|
5989
|
-
|
5990
|
-
|
5991
|
-
|
5992
|
-
|
5993
|
-
|
5994
|
-
|
5995
|
-
|
5996
|
-
|
5997
|
-
|
5998
|
-
|
5999
|
-
|
6000
|
-
|
6001
|
-
|
6002
|
-
|
6003
|
-
|
6004
|
-
|
6005
|
-
|
6006
|
-
|
6007
|
-
|
6008
|
-
|
6009
|
-
|
6010
|
-
|
6011
|
-
|
6012
|
-
|
6013
|
-
|
6014
|
-
|
6015
|
-
|
6016
|
-
|
6017
|
-
|
6018
|
-
|
6019
|
-
|
6020
|
-
|
6021
|
-
|
6022
|
-
|
6023
|
-
|
6024
|
-
|
6025
|
-
|
6026
|
-
|
6027
|
-
|
6028
|
-
|
6029
|
-
|
6030
|
-
|
6031
|
-
|
6032
|
-
|
6033
|
-
|
6034
|
-
|
6035
|
-
|
6036
|
-
|
6037
|
-
|
6038
|
-
|
6340
|
+
_ as PRESET_BUBBLES_SEPARATE_SERIES,
|
6341
|
+
b as PRESET_BUBBLES_SIMPLE,
|
6342
|
+
a as PRESET_BUBBLES_SUM_SERIES,
|
6343
|
+
wt as PRESET_FORCE_DIRECTED_BASIC,
|
6344
|
+
yt as PRESET_FORCE_DIRECTED_BUBBLES_BASIC,
|
6345
|
+
Wt as PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH,
|
6346
|
+
Yt as PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW,
|
6347
|
+
zt as PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM,
|
6348
|
+
Xt as PRESET_FORCE_DIRECTED_BUBBLES_SIMPLE,
|
6349
|
+
jt as PRESET_FORCE_DIRECTED_FIX_FONT_SIZE,
|
6350
|
+
qt as PRESET_FORCE_DIRECTED_NONE_ARROW,
|
6351
|
+
Kt as PRESET_FORCE_DIRECTED_NONE_ZOOM,
|
6352
|
+
Jt as PRESET_FORCE_DIRECTED_SIMPLE,
|
6353
|
+
f as PRESET_GRID_BASIC,
|
6354
|
+
Z as PRESET_GRID_HORIZONTAL,
|
6355
|
+
V as PRESET_GRID_PN_SCALE,
|
6356
|
+
U as PRESET_GRID_PN_SCALE_SIMPLE,
|
6357
|
+
H as PRESET_GRID_ROTATE_AXIS_LABEL,
|
6358
|
+
w as PRESET_GRID_SEPARATE_SERIES,
|
6359
|
+
y as PRESET_GRID_SIMPLE,
|
6360
|
+
J as PRESET_LINES_BASIC,
|
6361
|
+
Q as PRESET_LINES_CURVE,
|
6362
|
+
$ as PRESET_LINES_HORIZONTAL,
|
6363
|
+
tt as PRESET_LINES_LOOSE_TICKS,
|
6364
|
+
et as PRESET_LINES_ROTATE_AXIS_LABEL,
|
6365
|
+
at as PRESET_LINES_SIMPLE,
|
6366
|
+
it as PRESET_LINES_WITH_SOLID_DOTS,
|
6367
|
+
W as PRESET_LINE_AREAS_BASIC,
|
6368
|
+
Y as PRESET_LINE_AREAS_CURVE,
|
6369
|
+
z as PRESET_LINE_AREAS_HORIZONTAL,
|
6370
|
+
X as PRESET_LINE_AREAS_LOOSE_TICKS,
|
6371
|
+
K as PRESET_LINE_AREAS_ROTATE_AXIS_LABEL,
|
6372
|
+
j as PRESET_LINE_AREAS_SEPARATE_SERIES,
|
6373
|
+
q as PRESET_LINE_AREAS_SIMPLE,
|
6374
|
+
Ft as PRESET_MULTI_GRID_BASIC,
|
6375
|
+
lt as PRESET_MULTI_GRID_DIVERGING,
|
6376
|
+
rt as PRESET_MULTI_GRID_DIVERGING_SIMPLE,
|
6377
|
+
ot as PRESET_MULTI_GRID_ROUND_STYLE,
|
6378
|
+
st as PRESET_MULTI_GRID_ROUND_STYLE_SIMPLE,
|
6379
|
+
dt as PRESET_MULTI_GRID_SEPARATE_GRID,
|
6380
|
+
nt as PRESET_MULTI_GRID_SEPARATE_GRID_SIMPLE,
|
6381
|
+
Bt as PRESET_MULTI_GRID_SIMPLE,
|
6382
|
+
Dt as PRESET_MULTI_LINES_SEPARATE_GRID,
|
6383
|
+
At as PRESET_MULTI_LINES_SEPARATE_GRID_SIMPLE,
|
6384
|
+
Ct as PRESET_MULTI_LINE_AREAS_SEPARATE_GRID,
|
6385
|
+
Et as PRESET_MULTI_LINE_AREAS_SEPARATE_GRID_SIMPLE,
|
6386
|
+
ct as PRESET_MULTI_VALUE_BASIC,
|
6387
|
+
gt as PRESET_MULTI_VALUE_SEPARATE_CATEGORY,
|
6388
|
+
pt as PRESET_MULTI_VALUE_SIMPLE,
|
6389
|
+
ut as PRESET_ORDINAL_BUBBLES_ALL_ITEMS,
|
6390
|
+
Rt as PRESET_ORDINAL_BUBBLES_BASIC,
|
6391
|
+
St as PRESET_ORDINAL_BUBBLES_LINEAR_OPACITY,
|
6392
|
+
mt as PRESET_ORDINAL_BUBBLES_SCALING_BY_RADIUS,
|
6393
|
+
_t as PRESET_ORDINAL_BUBBLES_SEPARATE_CATEGORY,
|
6394
|
+
ht as PRESET_ORDINAL_BUBBLES_SIMPLE,
|
6039
6395
|
i as PRESET_PIE_BASIC,
|
6040
6396
|
F as PRESET_PIE_DONUT,
|
6041
6397
|
r as PRESET_PIE_HALF_DONUT,
|
6398
|
+
T as PRESET_PIE_INDICATOR_LINE,
|
6399
|
+
I as PRESET_PIE_INDICATOR_NEEDLE,
|
6400
|
+
L as PRESET_PIE_INDICATOR_PIN,
|
6401
|
+
M as PRESET_PIE_INDICATOR_TRIANGLE,
|
6042
6402
|
o as PRESET_PIE_SEPARATE_LABEL,
|
6043
6403
|
s as PRESET_PIE_SEPARATE_SERIES,
|
6044
6404
|
n as PRESET_PIE_SIMPLE,
|
6045
|
-
|
6405
|
+
d as PRESET_PIE_SUM_SERIES,
|
6046
6406
|
l as PRESET_PIE_WITH_INNER_LABELS,
|
6047
|
-
|
6048
|
-
|
6049
|
-
|
6050
|
-
|
6051
|
-
|
6052
|
-
|
6053
|
-
|
6054
|
-
|
6055
|
-
|
6056
|
-
|
6407
|
+
Pt as PRESET_RACING_BARS_ALL_ITEMS,
|
6408
|
+
bt as PRESET_RACING_BARS_BASIC,
|
6409
|
+
Tt as PRESET_RACING_BARS_FAST,
|
6410
|
+
It as PRESET_RACING_BARS_FASTER,
|
6411
|
+
Lt as PRESET_RACING_BARS_LOOP,
|
6412
|
+
Mt as PRESET_RACING_BARS_OUTSIDE_LABELS,
|
6413
|
+
Gt as PRESET_RACING_BARS_SEPARATE_CATEGORY,
|
6414
|
+
xt as PRESET_RACING_BARS_SIMPLE,
|
6415
|
+
Ot as PRESET_RACING_BARS_STOP,
|
6416
|
+
B as PRESET_ROSE_BASIC,
|
6057
6417
|
E as PRESET_ROSE_SCALING_BY_RADIUS,
|
6058
6418
|
A as PRESET_ROSE_SEPARATE_ALL,
|
6059
6419
|
C as PRESET_ROSE_SEPARATE_LABEL,
|
@@ -6061,18 +6421,18 @@ export {
|
|
6061
6421
|
p as PRESET_ROSE_SEPARATE_SERIES_AND_SUM_SERIES,
|
6062
6422
|
c as PRESET_ROSE_SIMPLE,
|
6063
6423
|
g as PRESET_ROSE_SUM_SERIES,
|
6064
|
-
|
6065
|
-
|
6066
|
-
|
6067
|
-
|
6068
|
-
|
6069
|
-
|
6070
|
-
|
6071
|
-
|
6072
|
-
|
6073
|
-
|
6074
|
-
|
6075
|
-
|
6076
|
-
|
6077
|
-
|
6424
|
+
kt as PRESET_SCATTER_BASIC,
|
6425
|
+
Nt as PRESET_SCATTER_BUBBLES_BASIC,
|
6426
|
+
ft as PRESET_SCATTER_BUBBLES_LINEAR_OPACITY,
|
6427
|
+
vt as PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS,
|
6428
|
+
Zt as PRESET_SCATTER_BUBBLES_SEPARATE_CATEGORY,
|
6429
|
+
Ut as PRESET_SCATTER_BUBBLES_SIMPLE,
|
6430
|
+
Vt as PRESET_SCATTER_SEPARATE_CATEGORY,
|
6431
|
+
Ht as PRESET_SCATTER_SIMPLE,
|
6432
|
+
G as PRESET_SERIES_BASIC,
|
6433
|
+
u as PRESET_SERIES_SEPARATE_SERIES,
|
6434
|
+
x as PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES,
|
6435
|
+
R as PRESET_SERIES_SUM_SERIES,
|
6436
|
+
Qt as PRESET_TREE_MAP_BASIC,
|
6437
|
+
$t as PRESET_TREE_MAP_SIMPLE
|
6078
6438
|
};
|