@orbcharts/presets-basic 3.0.6 → 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 +477 -199
- 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 -1
- 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_GAUGE.ts → PRESET_PIE_INDICATOR_PIN.ts} +17 -7
- package/src/series/PRESET_PIE_INDICATOR_TRIANGLE.ts +95 -0
- package/src/series/index.ts +4 -1
- package/dist/src/series/PRESET_PIE_GAUGE.d.ts +0 -4
@@ -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的泡泡圖",
|
@@ -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
|
@@ -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: {
|
@@ -466,9 +466,9 @@ const F = {
|
|
466
466
|
};
|
467
467
|
F.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
468
468
|
const T = {
|
469
|
-
name: "
|
470
|
-
description: "
|
471
|
-
descriptionZh: "
|
469
|
+
name: "PRESET_PIE_INDICATOR_LINE",
|
470
|
+
description: "Line indicator chart",
|
471
|
+
descriptionZh: "線條指針圖",
|
472
472
|
chartParams: {
|
473
473
|
// 和 Rose 一樣的配色
|
474
474
|
colors: {
|
@@ -506,7 +506,100 @@ const T = {
|
|
506
506
|
right: 60,
|
507
507
|
bottom: 0,
|
508
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
|
+
// 圓型圖例列點
|
509
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"
|
510
603
|
},
|
511
604
|
pluginParams: {
|
512
605
|
Pie: {
|
@@ -520,7 +613,7 @@ const T = {
|
|
520
613
|
PieEventTexts: {
|
521
614
|
textAttrs: [
|
522
615
|
{
|
523
|
-
transform: "translate(0, -
|
616
|
+
transform: "translate(0, -36)"
|
524
617
|
}
|
525
618
|
],
|
526
619
|
textStyles: [
|
@@ -532,12 +625,194 @@ const T = {
|
|
532
625
|
"font-size": 24,
|
533
626
|
fill: "#000"
|
534
627
|
}
|
535
|
-
]
|
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
|
536
808
|
},
|
537
809
|
Indicator: {
|
538
810
|
startAngle: -Math.PI / 2,
|
539
811
|
endAngle: Math.PI / 2,
|
540
812
|
radius: 0.65,
|
813
|
+
indicatorType: "triangle",
|
814
|
+
size: 20,
|
815
|
+
// autoHighlight: true,
|
541
816
|
value: 0
|
542
817
|
},
|
543
818
|
SeriesLegend: {
|
@@ -589,7 +864,7 @@ const T = {
|
|
589
864
|
}
|
590
865
|
},
|
591
866
|
dataFormatter: {
|
592
|
-
sort: (t,
|
867
|
+
sort: (t, e) => e.value - t.value
|
593
868
|
},
|
594
869
|
pluginParams: {
|
595
870
|
Pie: {
|
@@ -647,7 +922,7 @@ const l = {
|
|
647
922
|
}
|
648
923
|
},
|
649
924
|
dataFormatter: {
|
650
|
-
sort: (t,
|
925
|
+
sort: (t, e) => e.value - t.value
|
651
926
|
},
|
652
927
|
pluginParams: {
|
653
928
|
Pie: {},
|
@@ -701,7 +976,7 @@ const s = {
|
|
701
976
|
}
|
702
977
|
},
|
703
978
|
dataFormatter: {
|
704
|
-
sort: (t,
|
979
|
+
sort: (t, e) => e.value - t.value,
|
705
980
|
separateSeries: !0
|
706
981
|
},
|
707
982
|
pluginParams: {}
|
@@ -744,7 +1019,7 @@ const o = {
|
|
744
1019
|
}
|
745
1020
|
},
|
746
1021
|
dataFormatter: {
|
747
|
-
sort: (t,
|
1022
|
+
sort: (t, e) => e.value - t.value,
|
748
1023
|
separateLabel: !0
|
749
1024
|
},
|
750
1025
|
pluginParams: {
|
@@ -795,7 +1070,7 @@ const n = {
|
|
795
1070
|
}
|
796
1071
|
},
|
797
1072
|
dataFormatter: {
|
798
|
-
sort: (t,
|
1073
|
+
sort: (t, e) => e.value - t.value
|
799
1074
|
},
|
800
1075
|
pluginParams: {
|
801
1076
|
SeriesLegend: {
|
@@ -806,7 +1081,7 @@ const n = {
|
|
806
1081
|
}
|
807
1082
|
};
|
808
1083
|
n.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
809
|
-
const
|
1084
|
+
const d = {
|
810
1085
|
name: "PRESET_PIE_SUM_SERIES",
|
811
1086
|
description: "Pie chart of combined Series data",
|
812
1087
|
descriptionZh: "合併Series資料的圓餅圖",
|
@@ -843,13 +1118,13 @@ const B = {
|
|
843
1118
|
}
|
844
1119
|
},
|
845
1120
|
dataFormatter: {
|
846
|
-
sort: (t,
|
1121
|
+
sort: (t, e) => e.value - t.value,
|
847
1122
|
sumSeries: !0
|
848
1123
|
},
|
849
1124
|
pluginParams: {}
|
850
1125
|
};
|
851
|
-
|
852
|
-
const
|
1126
|
+
d.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
1127
|
+
const B = {
|
853
1128
|
name: "PRESET_ROSE_BASIC",
|
854
1129
|
description: "Basic Rose chart",
|
855
1130
|
descriptionZh: "基本Rose參數",
|
@@ -892,7 +1167,7 @@ const d = {
|
|
892
1167
|
}
|
893
1168
|
},
|
894
1169
|
dataFormatter: {
|
895
|
-
sort: (t,
|
1170
|
+
sort: (t, e) => e.value - t.value
|
896
1171
|
},
|
897
1172
|
pluginParams: {
|
898
1173
|
SeriesLegend: {
|
@@ -901,7 +1176,7 @@ const d = {
|
|
901
1176
|
}
|
902
1177
|
}
|
903
1178
|
};
|
904
|
-
|
1179
|
+
B.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
905
1180
|
const E = {
|
906
1181
|
name: "PRESET_ROSE_SCALING_BY_RADIUS",
|
907
1182
|
description: "Rose chart with radius scaling",
|
@@ -945,7 +1220,7 @@ const E = {
|
|
945
1220
|
}
|
946
1221
|
},
|
947
1222
|
dataFormatter: {
|
948
|
-
sort: (t,
|
1223
|
+
sort: (t, e) => e.value - t.value
|
949
1224
|
},
|
950
1225
|
pluginParams: {
|
951
1226
|
Rose: {
|
@@ -1004,7 +1279,7 @@ const C = {
|
|
1004
1279
|
}
|
1005
1280
|
},
|
1006
1281
|
dataFormatter: {
|
1007
|
-
sort: (t,
|
1282
|
+
sort: (t, e) => e.value - t.value,
|
1008
1283
|
separateLabel: !0
|
1009
1284
|
},
|
1010
1285
|
pluginParams: {
|
@@ -1055,7 +1330,7 @@ const A = {
|
|
1055
1330
|
}
|
1056
1331
|
},
|
1057
1332
|
dataFormatter: {
|
1058
|
-
sort: (t,
|
1333
|
+
sort: (t, e) => e.value - t.value,
|
1059
1334
|
separateLabel: !0,
|
1060
1335
|
separateSeries: !0
|
1061
1336
|
},
|
@@ -1105,7 +1380,7 @@ const D = {
|
|
1105
1380
|
}
|
1106
1381
|
},
|
1107
1382
|
dataFormatter: {
|
1108
|
-
sort: (t,
|
1383
|
+
sort: (t, e) => e.value - t.value,
|
1109
1384
|
separateSeries: !0
|
1110
1385
|
},
|
1111
1386
|
pluginParams: {}
|
@@ -1154,7 +1429,7 @@ const c = {
|
|
1154
1429
|
}
|
1155
1430
|
},
|
1156
1431
|
dataFormatter: {
|
1157
|
-
sort: (t,
|
1432
|
+
sort: (t, e) => e.value - t.value
|
1158
1433
|
},
|
1159
1434
|
pluginParams: {
|
1160
1435
|
SeriesLegend: {
|
@@ -1208,7 +1483,7 @@ const g = {
|
|
1208
1483
|
}
|
1209
1484
|
},
|
1210
1485
|
dataFormatter: {
|
1211
|
-
sort: (t,
|
1486
|
+
sort: (t, e) => e.value - t.value,
|
1212
1487
|
sumSeries: !0
|
1213
1488
|
},
|
1214
1489
|
pluginParams: {}
|
@@ -1257,14 +1532,14 @@ const p = {
|
|
1257
1532
|
}
|
1258
1533
|
},
|
1259
1534
|
dataFormatter: {
|
1260
|
-
sort: (t,
|
1535
|
+
sort: (t, e) => e.value - t.value,
|
1261
1536
|
separateSeries: !0,
|
1262
1537
|
sumSeries: !0
|
1263
1538
|
},
|
1264
1539
|
pluginParams: {}
|
1265
1540
|
};
|
1266
1541
|
p.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
1267
|
-
const
|
1542
|
+
const G = {
|
1268
1543
|
name: "PRESET_SERIES_BASIC",
|
1269
1544
|
description: "Basic Series parameters",
|
1270
1545
|
descriptionZh: "基本Series參數",
|
@@ -1306,7 +1581,7 @@ const L = {
|
|
1306
1581
|
// 圓型圖例列點
|
1307
1582
|
}
|
1308
1583
|
}
|
1309
|
-
},
|
1584
|
+
}, x = {
|
1310
1585
|
name: "PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES",
|
1311
1586
|
description: "Separate and sum Series data",
|
1312
1587
|
descriptionZh: "分開顯示Series並合併Series資料",
|
@@ -1343,7 +1618,7 @@ const L = {
|
|
1343
1618
|
}
|
1344
1619
|
},
|
1345
1620
|
dataFormatter: {
|
1346
|
-
sort: (t,
|
1621
|
+
sort: (t, e) => e.value - t.value,
|
1347
1622
|
separateSeries: !0,
|
1348
1623
|
sumSeries: !0
|
1349
1624
|
},
|
@@ -1385,13 +1660,13 @@ const L = {
|
|
1385
1660
|
}
|
1386
1661
|
},
|
1387
1662
|
dataFormatter: {
|
1388
|
-
sort: (t,
|
1663
|
+
sort: (t, e) => e.value - t.value,
|
1389
1664
|
separateSeries: !0
|
1390
1665
|
},
|
1391
1666
|
pluginParams: {}
|
1392
1667
|
};
|
1393
1668
|
u.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
1394
|
-
const
|
1669
|
+
const R = {
|
1395
1670
|
name: "PRESET_SERIES_SUM_SERIES",
|
1396
1671
|
description: "Combine Series data",
|
1397
1672
|
descriptionZh: "合併Series資料",
|
@@ -1428,13 +1703,13 @@ const S = {
|
|
1428
1703
|
}
|
1429
1704
|
},
|
1430
1705
|
dataFormatter: {
|
1431
|
-
sort: (t,
|
1706
|
+
sort: (t, e) => e.value - t.value,
|
1432
1707
|
sumSeries: !0
|
1433
1708
|
},
|
1434
1709
|
pluginParams: {}
|
1435
1710
|
};
|
1436
|
-
|
1437
|
-
const
|
1711
|
+
R.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
|
1712
|
+
const O = {
|
1438
1713
|
name: "PRESET_BARS_HORIZONTAL_AND_ROUND",
|
1439
1714
|
description: "Horizontal bars with round corners",
|
1440
1715
|
descriptionZh: "橫向圓角長條圖",
|
@@ -1500,7 +1775,7 @@ const G = {
|
|
1500
1775
|
listRectRadius: 7
|
1501
1776
|
}
|
1502
1777
|
}
|
1503
|
-
},
|
1778
|
+
}, k = {
|
1504
1779
|
name: "PRESET_BARS_HORIZONTAL_AND_THIN",
|
1505
1780
|
description: "Horizontal thin bars",
|
1506
1781
|
descriptionZh: "橫向細長長條圖",
|
@@ -1566,7 +1841,7 @@ const G = {
|
|
1566
1841
|
padding: 14
|
1567
1842
|
}
|
1568
1843
|
}
|
1569
|
-
},
|
1844
|
+
}, N = {
|
1570
1845
|
name: "PRESET_BARS_ROUND",
|
1571
1846
|
description: "Rounded bars",
|
1572
1847
|
descriptionZh: "圓角長條圖",
|
@@ -1627,7 +1902,7 @@ const G = {
|
|
1627
1902
|
listRectRadius: 7
|
1628
1903
|
}
|
1629
1904
|
}
|
1630
|
-
},
|
1905
|
+
}, v = {
|
1631
1906
|
name: "PRESET_BARS_THIN",
|
1632
1907
|
description: "Thin bars",
|
1633
1908
|
descriptionZh: "細長條圖",
|
@@ -1685,7 +1960,7 @@ const G = {
|
|
1685
1960
|
padding: 14
|
1686
1961
|
}
|
1687
1962
|
}
|
1688
|
-
},
|
1963
|
+
}, f = {
|
1689
1964
|
name: "PRESET_GRID_BASIC",
|
1690
1965
|
description: "Basic Grid",
|
1691
1966
|
descriptionZh: "基本Grid",
|
@@ -1733,7 +2008,7 @@ const G = {
|
|
1733
2008
|
padding: 14
|
1734
2009
|
}
|
1735
2010
|
}
|
1736
|
-
},
|
2011
|
+
}, Z = {
|
1737
2012
|
name: "PRESET_GRID_HORIZONTAL",
|
1738
2013
|
description: "Horizontal Grid",
|
1739
2014
|
descriptionZh: "橫向圖",
|
@@ -1790,7 +2065,7 @@ const G = {
|
|
1790
2065
|
padding: 14
|
1791
2066
|
}
|
1792
2067
|
}
|
1793
|
-
},
|
2068
|
+
}, U = {
|
1794
2069
|
name: "PRESET_GRID_PN_SCALE_SIMPLE",
|
1795
2070
|
description: "Simple positive negative scale",
|
1796
2071
|
descriptionZh: "簡單正負值分向圖",
|
@@ -1844,7 +2119,7 @@ const G = {
|
|
1844
2119
|
padding: 7
|
1845
2120
|
}
|
1846
2121
|
}
|
1847
|
-
},
|
2122
|
+
}, V = {
|
1848
2123
|
name: "PRESET_GRID_PN_SCALE",
|
1849
2124
|
description: "Positive negative scale",
|
1850
2125
|
descriptionZh: "正負值分向圖",
|
@@ -1898,7 +2173,7 @@ const G = {
|
|
1898
2173
|
padding: 14
|
1899
2174
|
}
|
1900
2175
|
}
|
1901
|
-
},
|
2176
|
+
}, H = {
|
1902
2177
|
name: "PRESET_GRID_ROTATE_AXIS_LABEL",
|
1903
2178
|
description: "Rotate axis label",
|
1904
2179
|
descriptionZh: "傾斜標籤",
|
@@ -1954,7 +2229,7 @@ const G = {
|
|
1954
2229
|
padding: 14
|
1955
2230
|
}
|
1956
2231
|
}
|
1957
|
-
},
|
2232
|
+
}, w = {
|
1958
2233
|
name: "PRESET_GRID_SEPARATE_SERIES",
|
1959
2234
|
description: "Separate Series",
|
1960
2235
|
descriptionZh: "分開顯示Series",
|
@@ -2016,7 +2291,7 @@ const G = {
|
|
2016
2291
|
padding: 14
|
2017
2292
|
}
|
2018
2293
|
}
|
2019
|
-
},
|
2294
|
+
}, y = {
|
2020
2295
|
name: "PRESET_GRID_SIMPLE",
|
2021
2296
|
description: "Simple Grid",
|
2022
2297
|
descriptionZh: "簡單Grid",
|
@@ -2069,7 +2344,7 @@ const G = {
|
|
2069
2344
|
padding: 7
|
2070
2345
|
}
|
2071
2346
|
}
|
2072
|
-
},
|
2347
|
+
}, W = {
|
2073
2348
|
name: "PRESET_LINE_AREAS_BASIC",
|
2074
2349
|
description: "Basic LineArea",
|
2075
2350
|
descriptionZh: "基本折線區域圖",
|
@@ -2131,7 +2406,7 @@ const G = {
|
|
2131
2406
|
listRectHeight: 2
|
2132
2407
|
}
|
2133
2408
|
}
|
2134
|
-
},
|
2409
|
+
}, Y = {
|
2135
2410
|
name: "PRESET_LINE_AREAS_CURVE",
|
2136
2411
|
description: "Curve LineArea",
|
2137
2412
|
descriptionZh: "弧線的折線區域圖",
|
@@ -2198,7 +2473,7 @@ const G = {
|
|
2198
2473
|
listRectHeight: 2
|
2199
2474
|
}
|
2200
2475
|
}
|
2201
|
-
},
|
2476
|
+
}, z = {
|
2202
2477
|
name: "PRESET_LINE_AREAS_HORIZONTAL",
|
2203
2478
|
description: "Horizontal LineArea",
|
2204
2479
|
descriptionZh: "橫向折線區域圖",
|
@@ -2263,7 +2538,7 @@ const G = {
|
|
2263
2538
|
listRectHeight: 2
|
2264
2539
|
}
|
2265
2540
|
}
|
2266
|
-
},
|
2541
|
+
}, X = {
|
2267
2542
|
name: "PRESET_LINE_AREAS_LOOSE_TICKS",
|
2268
2543
|
description: "Loose Ticks LineArea",
|
2269
2544
|
descriptionZh: "寬鬆標籤的折線區域圖",
|
@@ -2327,7 +2602,7 @@ const G = {
|
|
2327
2602
|
listRectHeight: 2
|
2328
2603
|
}
|
2329
2604
|
}
|
2330
|
-
},
|
2605
|
+
}, K = {
|
2331
2606
|
name: "PRESET_LINE_AREAS_ROTATE_AXIS_LABEL",
|
2332
2607
|
description: "Rotate Axis Label LineArea",
|
2333
2608
|
descriptionZh: "傾斜標籤的折線區域圖",
|
@@ -2393,7 +2668,7 @@ const G = {
|
|
2393
2668
|
listRectHeight: 2
|
2394
2669
|
}
|
2395
2670
|
}
|
2396
|
-
},
|
2671
|
+
}, j = {
|
2397
2672
|
name: "PRESET_LINE_AREAS_SEPARATE_SERIES",
|
2398
2673
|
description: "Separate Series LineArea",
|
2399
2674
|
descriptionZh: "分開顯示Series的折線區域圖",
|
@@ -2464,7 +2739,7 @@ const G = {
|
|
2464
2739
|
listRectHeight: 2
|
2465
2740
|
}
|
2466
2741
|
}
|
2467
|
-
},
|
2742
|
+
}, q = {
|
2468
2743
|
name: "PRESET_LINE_AREAS_SIMPLE",
|
2469
2744
|
description: "Simple LineArea",
|
2470
2745
|
descriptionZh: "簡單折線區域圖",
|
@@ -2530,7 +2805,7 @@ const G = {
|
|
2530
2805
|
listRectHeight: 2
|
2531
2806
|
}
|
2532
2807
|
}
|
2533
|
-
},
|
2808
|
+
}, J = {
|
2534
2809
|
name: "PRESET_LINES_BASIC",
|
2535
2810
|
description: "Basic Line",
|
2536
2811
|
descriptionZh: "基本折線圖",
|
@@ -2585,7 +2860,7 @@ const G = {
|
|
2585
2860
|
listRectHeight: 2
|
2586
2861
|
}
|
2587
2862
|
}
|
2588
|
-
},
|
2863
|
+
}, Q = {
|
2589
2864
|
name: "PRESET_LINES_CURVE",
|
2590
2865
|
description: "Curve Line",
|
2591
2866
|
descriptionZh: "弧線折線圖",
|
@@ -2643,7 +2918,7 @@ const G = {
|
|
2643
2918
|
listRectHeight: 2
|
2644
2919
|
}
|
2645
2920
|
}
|
2646
|
-
},
|
2921
|
+
}, $ = {
|
2647
2922
|
name: "PRESET_LINES_HORIZONTAL",
|
2648
2923
|
description: "Horizontal Line",
|
2649
2924
|
descriptionZh: "橫向折線圖",
|
@@ -2706,7 +2981,7 @@ const G = {
|
|
2706
2981
|
listRectHeight: 2
|
2707
2982
|
}
|
2708
2983
|
}
|
2709
|
-
},
|
2984
|
+
}, tt = {
|
2710
2985
|
name: "PRESET_LINES_LOOSE_TICKS",
|
2711
2986
|
description: "Loose Ticks Line",
|
2712
2987
|
descriptionZh: "寬鬆標籤的折線圖",
|
@@ -2763,7 +3038,7 @@ const G = {
|
|
2763
3038
|
listRectHeight: 2
|
2764
3039
|
}
|
2765
3040
|
}
|
2766
|
-
},
|
3041
|
+
}, et = {
|
2767
3042
|
name: "PRESET_LINES_ROTATE_AXIS_LABEL",
|
2768
3043
|
description: "Line chart with slanted labels",
|
2769
3044
|
descriptionZh: "傾斜標籤的折線圖",
|
@@ -2823,7 +3098,7 @@ const G = {
|
|
2823
3098
|
listRectHeight: 2
|
2824
3099
|
}
|
2825
3100
|
}
|
2826
|
-
},
|
3101
|
+
}, at = {
|
2827
3102
|
name: "PRESET_LINES_SIMPLE",
|
2828
3103
|
description: "Simple line",
|
2829
3104
|
descriptionZh: "簡單折線圖",
|
@@ -2883,7 +3158,7 @@ const G = {
|
|
2883
3158
|
listRectHeight: 2
|
2884
3159
|
}
|
2885
3160
|
}
|
2886
|
-
},
|
3161
|
+
}, it = {
|
2887
3162
|
name: "PRESET_LINES_WITH_SOLID_DOTS",
|
2888
3163
|
description: "Solid Dots Line",
|
2889
3164
|
descriptionZh: "實心圓點的折線圖",
|
@@ -2942,7 +3217,7 @@ const G = {
|
|
2942
3217
|
listRectHeight: 2
|
2943
3218
|
}
|
2944
3219
|
}
|
2945
|
-
},
|
3220
|
+
}, Ft = {
|
2946
3221
|
name: "PRESET_MULTI_GRID_BASIC",
|
2947
3222
|
description: "Basic MultiGrid",
|
2948
3223
|
descriptionZh: "基本MultiGrid",
|
@@ -2997,7 +3272,7 @@ const G = {
|
|
2997
3272
|
]
|
2998
3273
|
}
|
2999
3274
|
}
|
3000
|
-
},
|
3275
|
+
}, rt = {
|
3001
3276
|
name: "PRESET_MULTI_GRID_DIVERGING_SIMPLE",
|
3002
3277
|
description: "Simple diverging Grid",
|
3003
3278
|
descriptionZh: "簡單雙向Grid",
|
@@ -3106,7 +3381,7 @@ const G = {
|
|
3106
3381
|
padding: 7
|
3107
3382
|
}
|
3108
3383
|
}
|
3109
|
-
},
|
3384
|
+
}, lt = {
|
3110
3385
|
name: "PRESET_MULTI_GRID_DIVERGING",
|
3111
3386
|
description: "Diverging Grid",
|
3112
3387
|
descriptionZh: "雙向Grid",
|
@@ -3212,7 +3487,7 @@ const G = {
|
|
3212
3487
|
padding: 14
|
3213
3488
|
}
|
3214
3489
|
}
|
3215
|
-
},
|
3490
|
+
}, st = {
|
3216
3491
|
name: "PRESET_MULTI_GRID_ROUND_STYLE_SIMPLE",
|
3217
3492
|
description: "Simple MultiGrid with round style",
|
3218
3493
|
descriptionZh: "簡單MultiGrid圓弧風格",
|
@@ -3301,7 +3576,7 @@ const G = {
|
|
3301
3576
|
OverlappingValueAxes: {},
|
3302
3577
|
OverlappingStackedValueAxes: {}
|
3303
3578
|
}
|
3304
|
-
},
|
3579
|
+
}, ot = {
|
3305
3580
|
name: "PRESET_MULTI_GRID_ROUND_STYLE",
|
3306
3581
|
description: "MultiGrid with round style",
|
3307
3582
|
descriptionZh: "MultiGrid圓弧風格",
|
@@ -3376,7 +3651,7 @@ const G = {
|
|
3376
3651
|
OverlappingValueAxes: {},
|
3377
3652
|
OverlappingStackedValueAxes: {}
|
3378
3653
|
}
|
3379
|
-
},
|
3654
|
+
}, nt = {
|
3380
3655
|
name: "PRESET_MULTI_GRID_SEPARATE_GRID_SIMPLE",
|
3381
3656
|
description: "Simple separate grid",
|
3382
3657
|
descriptionZh: "簡單的分開顯示Grid圖表",
|
@@ -3467,7 +3742,7 @@ const G = {
|
|
3467
3742
|
padding: 7
|
3468
3743
|
}
|
3469
3744
|
}
|
3470
|
-
},
|
3745
|
+
}, dt = {
|
3471
3746
|
name: "PRESET_MULTI_GRID_SEPARATE_GRID",
|
3472
3747
|
description: "Separate Grid",
|
3473
3748
|
descriptionZh: "分開顯示Grid圖表",
|
@@ -3550,7 +3825,7 @@ const G = {
|
|
3550
3825
|
padding: 14
|
3551
3826
|
}
|
3552
3827
|
}
|
3553
|
-
},
|
3828
|
+
}, Bt = {
|
3554
3829
|
name: "PRESET_MULTI_GRID_SIMPLE",
|
3555
3830
|
description: "Simple MultiGrid",
|
3556
3831
|
descriptionZh: "簡單MultiGrid",
|
@@ -3615,7 +3890,7 @@ const G = {
|
|
3615
3890
|
]
|
3616
3891
|
}
|
3617
3892
|
}
|
3618
|
-
},
|
3893
|
+
}, Et = {
|
3619
3894
|
name: "PRESET_MULTI_LINE_AREAS_SEPARATE_GRID_SIMPLE",
|
3620
3895
|
description: "Simple separate grid line areas",
|
3621
3896
|
descriptionZh: "簡單的分開顯示Grid的折線區域圖",
|
@@ -3737,7 +4012,7 @@ const G = {
|
|
3737
4012
|
]
|
3738
4013
|
}
|
3739
4014
|
}
|
3740
|
-
},
|
4015
|
+
}, Ct = {
|
3741
4016
|
name: "PRESET_MULTI_LINE_AREAS_SEPARATE_GRID",
|
3742
4017
|
description: "Separate Grid line areas",
|
3743
4018
|
descriptionZh: "分開顯示Grid的折線區域圖",
|
@@ -3862,7 +4137,7 @@ const G = {
|
|
3862
4137
|
]
|
3863
4138
|
}
|
3864
4139
|
}
|
3865
|
-
},
|
4140
|
+
}, At = {
|
3866
4141
|
name: "PRESET_MULTI_LINES_SEPARATE_GRID_SIMPLE",
|
3867
4142
|
description: "Simple separate grid line",
|
3868
4143
|
descriptionZh: "簡單的分開顯示Grid的折線圖",
|
@@ -3979,7 +4254,7 @@ const G = {
|
|
3979
4254
|
]
|
3980
4255
|
}
|
3981
4256
|
}
|
3982
|
-
},
|
4257
|
+
}, Dt = {
|
3983
4258
|
name: "PRESET_MULTI_LINES_SEPARATE_GRID",
|
3984
4259
|
description: "Separate Grid line",
|
3985
4260
|
descriptionZh: "分開顯示Grid的折線圖",
|
@@ -4090,7 +4365,7 @@ const G = {
|
|
4090
4365
|
]
|
4091
4366
|
}
|
4092
4367
|
}
|
4093
|
-
},
|
4368
|
+
}, ct = {
|
4094
4369
|
name: "PRESET_MULTI_VALUE_BASIC",
|
4095
4370
|
description: "Basic MultiValue",
|
4096
4371
|
descriptionZh: "基本MultiValue參數",
|
@@ -4138,7 +4413,7 @@ const G = {
|
|
4138
4413
|
padding: 14
|
4139
4414
|
}
|
4140
4415
|
}
|
4141
|
-
},
|
4416
|
+
}, gt = {
|
4142
4417
|
name: "PRESET_MULTI_VALUE_SEPARATE_CATEGORY",
|
4143
4418
|
description: "MultiValue separate category",
|
4144
4419
|
descriptionZh: "MultiValue 分開顯示category",
|
@@ -4201,7 +4476,7 @@ const G = {
|
|
4201
4476
|
padding: 14
|
4202
4477
|
}
|
4203
4478
|
}
|
4204
|
-
},
|
4479
|
+
}, pt = {
|
4205
4480
|
name: "PRESET_MULTI_VALUE_SIMPLE",
|
4206
4481
|
description: "Simple MultiValue",
|
4207
4482
|
descriptionZh: "簡單MultiValue參數",
|
@@ -4249,7 +4524,7 @@ const G = {
|
|
4249
4524
|
padding: 7
|
4250
4525
|
}
|
4251
4526
|
}
|
4252
|
-
},
|
4527
|
+
}, ut = {
|
4253
4528
|
name: "PRESET_ORDINAL_BUBBLES_ALL_ITEMS",
|
4254
4529
|
description: "Ordinal bubbles with all items",
|
4255
4530
|
descriptionZh: "顯示全部項目的序數泡泡圖",
|
@@ -4302,7 +4577,7 @@ const G = {
|
|
4302
4577
|
// 圓型圖例列點
|
4303
4578
|
}
|
4304
4579
|
}
|
4305
|
-
},
|
4580
|
+
}, Rt = {
|
4306
4581
|
name: "PRESET_ORDINAL_BUBBLES_BASIC",
|
4307
4582
|
description: "Basic ordinal bubbles",
|
4308
4583
|
descriptionZh: "序數泡泡圖",
|
@@ -4353,7 +4628,7 @@ const G = {
|
|
4353
4628
|
// 圓型圖例列點
|
4354
4629
|
}
|
4355
4630
|
}
|
4356
|
-
},
|
4631
|
+
}, St = {
|
4357
4632
|
name: "PRESET_ORDINAL_BUBBLES_LINEAR_OPACITY",
|
4358
4633
|
description: "Ordinal bubbles with linear opacity",
|
4359
4634
|
descriptionZh: "漸變透明度的序數泡泡圖",
|
@@ -4408,7 +4683,7 @@ const G = {
|
|
4408
4683
|
// 圓型圖例列點
|
4409
4684
|
}
|
4410
4685
|
}
|
4411
|
-
},
|
4686
|
+
}, mt = {
|
4412
4687
|
name: "PRESET_ORDINAL_BUBBLES_SCALING_BY_RADIUS",
|
4413
4688
|
description: "Ordinal bubbles with radius scaling",
|
4414
4689
|
descriptionZh: "以半徑尺寸為比例的序數泡泡圖",
|
@@ -4463,7 +4738,7 @@ const G = {
|
|
4463
4738
|
// 圓型圖例列點
|
4464
4739
|
}
|
4465
4740
|
}
|
4466
|
-
},
|
4741
|
+
}, _t = {
|
4467
4742
|
name: "PRESET_ORDINAL_BUBBLES_SEPARATE_CATEGORY",
|
4468
4743
|
description: "Ordinal bubbles with separate category",
|
4469
4744
|
descriptionZh: "分開顯示category的序數泡泡圖",
|
@@ -4524,7 +4799,7 @@ const G = {
|
|
4524
4799
|
// 圓型圖例列點
|
4525
4800
|
}
|
4526
4801
|
}
|
4527
|
-
},
|
4802
|
+
}, ht = {
|
4528
4803
|
name: "PRESET_ORDINAL_BUBBLES_SIMPLE",
|
4529
4804
|
description: "Simple ordinal bubbles",
|
4530
4805
|
descriptionZh: "簡單的序數泡泡圖",
|
@@ -4578,7 +4853,7 @@ const G = {
|
|
4578
4853
|
// 圓型圖例列點
|
4579
4854
|
}
|
4580
4855
|
}
|
4581
|
-
},
|
4856
|
+
}, Pt = {
|
4582
4857
|
name: "PRESET_RACING_BARS_ALL_ITEMS",
|
4583
4858
|
description: "Racing bars for all items",
|
4584
4859
|
descriptionZh: "顯示全部項目的賽跑長條圖",
|
@@ -4631,7 +4906,7 @@ const G = {
|
|
4631
4906
|
padding: 14
|
4632
4907
|
}
|
4633
4908
|
}
|
4634
|
-
},
|
4909
|
+
}, bt = {
|
4635
4910
|
name: "PRESET_RACING_BARS_BASIC",
|
4636
4911
|
description: "Basic racing bars",
|
4637
4912
|
descriptionZh: "基本賽跑長條圖",
|
@@ -4683,7 +4958,7 @@ const G = {
|
|
4683
4958
|
padding: 14
|
4684
4959
|
}
|
4685
4960
|
}
|
4686
|
-
},
|
4961
|
+
}, Tt = {
|
4687
4962
|
name: "PRESET_RACING_BARS_FAST",
|
4688
4963
|
description: "Fast racing bars",
|
4689
4964
|
descriptionZh: "快速的賽跑長條圖",
|
@@ -4735,7 +5010,7 @@ const G = {
|
|
4735
5010
|
padding: 14
|
4736
5011
|
}
|
4737
5012
|
}
|
4738
|
-
},
|
5013
|
+
}, It = {
|
4739
5014
|
name: "PRESET_RACING_BARS_FASTER",
|
4740
5015
|
description: "Faster racing bars",
|
4741
5016
|
descriptionZh: "更快速的賽跑長條圖",
|
@@ -4787,7 +5062,7 @@ const G = {
|
|
4787
5062
|
padding: 14
|
4788
5063
|
}
|
4789
5064
|
}
|
4790
|
-
},
|
5065
|
+
}, Lt = {
|
4791
5066
|
name: "PRESET_RACING_BARS_LOOP",
|
4792
5067
|
description: "Looping racing bars",
|
4793
5068
|
descriptionZh: "循環的賽跑長條圖",
|
@@ -4840,7 +5115,7 @@ const G = {
|
|
4840
5115
|
padding: 14
|
4841
5116
|
}
|
4842
5117
|
}
|
4843
|
-
},
|
5118
|
+
}, Mt = {
|
4844
5119
|
name: "PRESET_RACING_BARS_OUTSIDE_LABELS",
|
4845
5120
|
description: "Racing bars with labels outside",
|
4846
5121
|
descriptionZh: "標籤在外面的賽跑長條圖",
|
@@ -4896,7 +5171,7 @@ const G = {
|
|
4896
5171
|
padding: 14
|
4897
5172
|
}
|
4898
5173
|
}
|
4899
|
-
},
|
5174
|
+
}, Gt = {
|
4900
5175
|
name: "PRESET_RACING_BARS_SEPARATE_CATEGORY",
|
4901
5176
|
description: "Racing bars with separate category",
|
4902
5177
|
descriptionZh: "分開顯示category的賽跑長條圖",
|
@@ -4965,7 +5240,7 @@ const G = {
|
|
4965
5240
|
padding: 14
|
4966
5241
|
}
|
4967
5242
|
}
|
4968
|
-
},
|
5243
|
+
}, xt = {
|
4969
5244
|
name: "PRESET_RACING_BARS_SIMPLE",
|
4970
5245
|
description: "Simple racing bars",
|
4971
5246
|
descriptionZh: "簡單賽跑長條圖",
|
@@ -5017,7 +5292,7 @@ const G = {
|
|
5017
5292
|
padding: 7
|
5018
5293
|
}
|
5019
5294
|
}
|
5020
|
-
},
|
5295
|
+
}, Ot = {
|
5021
5296
|
name: "PRESET_RACING_BARS_STOP",
|
5022
5297
|
description: "Stopped racing bars",
|
5023
5298
|
descriptionZh: "停止的賽跑長條圖",
|
@@ -5068,7 +5343,7 @@ const G = {
|
|
5068
5343
|
padding: 14
|
5069
5344
|
}
|
5070
5345
|
}
|
5071
|
-
},
|
5346
|
+
}, kt = {
|
5072
5347
|
name: "PRESET_SCATTER_BASIC",
|
5073
5348
|
description: "Basic scatter",
|
5074
5349
|
descriptionZh: "基本散布圖",
|
@@ -5118,7 +5393,7 @@ const G = {
|
|
5118
5393
|
// 圓型圖例列點
|
5119
5394
|
}
|
5120
5395
|
}
|
5121
|
-
},
|
5396
|
+
}, Nt = {
|
5122
5397
|
name: "PRESET_SCATTER_BUBBLES_BASIC",
|
5123
5398
|
description: "Basic scatter bubbles",
|
5124
5399
|
descriptionZh: "基本的散布泡泡圖",
|
@@ -5168,7 +5443,7 @@ const G = {
|
|
5168
5443
|
// 圓型圖例列點
|
5169
5444
|
}
|
5170
5445
|
}
|
5171
|
-
},
|
5446
|
+
}, vt = {
|
5172
5447
|
name: "PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS",
|
5173
5448
|
description: "Scatter bubbles with radius scaling",
|
5174
5449
|
descriptionZh: "以半徑尺寸為比例的散布泡泡圖",
|
@@ -5221,7 +5496,7 @@ const G = {
|
|
5221
5496
|
arcScaleType: "radius"
|
5222
5497
|
}
|
5223
5498
|
}
|
5224
|
-
},
|
5499
|
+
}, ft = {
|
5225
5500
|
name: "PRESET_SCATTER_BUBBLES_LINEAR_OPACITY",
|
5226
5501
|
description: "Scatter bubbles with linear opacity",
|
5227
5502
|
descriptionZh: "以資料量漸變透明度的散布泡泡圖",
|
@@ -5274,7 +5549,7 @@ const G = {
|
|
5274
5549
|
valueLinearOpacity: [0.5, 1]
|
5275
5550
|
}
|
5276
5551
|
}
|
5277
|
-
},
|
5552
|
+
}, Zt = {
|
5278
5553
|
name: "PRESET_SCATTER_BUBBLES_SEPARATE_CATEGORY",
|
5279
5554
|
description: "Scatter bubbles with separate category",
|
5280
5555
|
descriptionZh: "分開顯示category的散布泡泡圖",
|
@@ -5331,7 +5606,7 @@ const G = {
|
|
5331
5606
|
// 圓型圖例列點
|
5332
5607
|
}
|
5333
5608
|
}
|
5334
|
-
},
|
5609
|
+
}, Ut = {
|
5335
5610
|
name: "PRESET_SCATTER_BUBBLES_SIMPLE",
|
5336
5611
|
description: "Simple scatter bubbles",
|
5337
5612
|
descriptionZh: "簡單的散布泡泡圖",
|
@@ -5381,7 +5656,7 @@ const G = {
|
|
5381
5656
|
// 圓型圖例列點
|
5382
5657
|
}
|
5383
5658
|
}
|
5384
|
-
},
|
5659
|
+
}, Vt = {
|
5385
5660
|
name: "PRESET_SCATTER_SEPARATE_CATEGORY",
|
5386
5661
|
description: "Scatter with separate category",
|
5387
5662
|
descriptionZh: "分開顯示category的散布圖",
|
@@ -5446,7 +5721,7 @@ const G = {
|
|
5446
5721
|
// 圓型圖例列點
|
5447
5722
|
}
|
5448
5723
|
}
|
5449
|
-
},
|
5724
|
+
}, Ht = {
|
5450
5725
|
name: "PRESET_SCATTER_SIMPLE",
|
5451
5726
|
description: "Simple scatter",
|
5452
5727
|
descriptionZh: "簡單散布圖",
|
@@ -5496,7 +5771,7 @@ const G = {
|
|
5496
5771
|
// 圓型圖例列點
|
5497
5772
|
}
|
5498
5773
|
}
|
5499
|
-
},
|
5774
|
+
}, wt = {
|
5500
5775
|
name: "PRESET_FORCE_DIRECTED_BASIC",
|
5501
5776
|
description: "Basic force directed chart",
|
5502
5777
|
descriptionZh: "基本力導向圖",
|
@@ -5539,7 +5814,7 @@ const G = {
|
|
5539
5814
|
// 圓型圖例列點
|
5540
5815
|
}
|
5541
5816
|
}
|
5542
|
-
},
|
5817
|
+
}, yt = {
|
5543
5818
|
name: "PRESET_FORCE_DIRECTED_BUBBLES_BASIC",
|
5544
5819
|
description: "Basic force directed bubbles chart",
|
5545
5820
|
descriptionZh: "基本力導向泡泡圖",
|
@@ -5582,7 +5857,7 @@ const G = {
|
|
5582
5857
|
// 圓型圖例列點
|
5583
5858
|
}
|
5584
5859
|
}
|
5585
|
-
},
|
5860
|
+
}, Wt = {
|
5586
5861
|
name: "PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH",
|
5587
5862
|
description: "Force-directed bubble chart with fixed arrow width",
|
5588
5863
|
descriptionZh: "固定箭頭寬度的力導向泡泡圖",
|
@@ -5630,7 +5905,7 @@ const G = {
|
|
5630
5905
|
// 圓型圖例列點
|
5631
5906
|
}
|
5632
5907
|
}
|
5633
|
-
},
|
5908
|
+
}, Yt = {
|
5634
5909
|
name: "PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW",
|
5635
5910
|
description: "Force-directed bubble chart without arrows",
|
5636
5911
|
descriptionZh: "沒有箭頭的力導向泡泡圖",
|
@@ -5678,7 +5953,7 @@ const G = {
|
|
5678
5953
|
// 圓型圖例列點
|
5679
5954
|
}
|
5680
5955
|
}
|
5681
|
-
},
|
5956
|
+
}, zt = {
|
5682
5957
|
name: "PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM",
|
5683
5958
|
description: "Force Directed bubbles chart without mouse drag and zoom control",
|
5684
5959
|
descriptionZh: "無滑鼠托曳及縮放控制的力導向泡泡圖",
|
@@ -5723,7 +5998,7 @@ const G = {
|
|
5723
5998
|
// 圓型圖例列點
|
5724
5999
|
}
|
5725
6000
|
}
|
5726
|
-
},
|
6001
|
+
}, Xt = {
|
5727
6002
|
name: "PRESET_FORCE_DIRECTED_BUBBLES_SIMPLE",
|
5728
6003
|
description: "Simple force directed bubbles chart",
|
5729
6004
|
descriptionZh: "簡單力導向泡泡圖",
|
@@ -5767,7 +6042,7 @@ const G = {
|
|
5767
6042
|
padding: 7
|
5768
6043
|
}
|
5769
6044
|
}
|
5770
|
-
},
|
6045
|
+
}, Kt = {
|
5771
6046
|
name: "PRESET_FORCE_DIRECTED_NONE_ZOOM",
|
5772
6047
|
description: "Force directed chart without mouse drag and zoom control",
|
5773
6048
|
descriptionZh: "無滑鼠托曳及縮放控制的力導向圖",
|
@@ -5812,7 +6087,7 @@ const G = {
|
|
5812
6087
|
// 圓型圖例列點
|
5813
6088
|
}
|
5814
6089
|
}
|
5815
|
-
},
|
6090
|
+
}, jt = {
|
5816
6091
|
name: "PRESET_FORCE_DIRECTED_FIX_FONT_SIZE",
|
5817
6092
|
description: "Force directed chart with fixed font size",
|
5818
6093
|
descriptionZh: "固定字體大小的力導向圖",
|
@@ -5862,7 +6137,7 @@ const G = {
|
|
5862
6137
|
// 圓型圖例列點
|
5863
6138
|
}
|
5864
6139
|
}
|
5865
|
-
},
|
6140
|
+
}, qt = {
|
5866
6141
|
name: "PRESET_FORCE_DIRECTED_NONE_ARROW",
|
5867
6142
|
description: "Force directed chart without arrows",
|
5868
6143
|
descriptionZh: "沒有箭頭的力導向圖",
|
@@ -5910,7 +6185,7 @@ const G = {
|
|
5910
6185
|
// 圓型圖例列點
|
5911
6186
|
}
|
5912
6187
|
}
|
5913
|
-
},
|
6188
|
+
}, Jt = {
|
5914
6189
|
name: "PRESET_FORCE_DIRECTED_SIMPLE",
|
5915
6190
|
description: "Simple force directed chart",
|
5916
6191
|
descriptionZh: "簡單力導向圖",
|
@@ -5954,7 +6229,7 @@ const G = {
|
|
5954
6229
|
padding: 7
|
5955
6230
|
}
|
5956
6231
|
}
|
5957
|
-
},
|
6232
|
+
}, Qt = {
|
5958
6233
|
name: "PRESET_TREE_MAP_BASIC",
|
5959
6234
|
description: "Basic tree map",
|
5960
6235
|
descriptionZh: "基本樹狀矩形圖",
|
@@ -6003,7 +6278,7 @@ const G = {
|
|
6003
6278
|
padding: 14
|
6004
6279
|
}
|
6005
6280
|
}
|
6006
|
-
},
|
6281
|
+
}, $t = {
|
6007
6282
|
name: "PRESET_TREE_MAP_SIMPLE",
|
6008
6283
|
description: "Simple tree map",
|
6009
6284
|
descriptionZh: "簡單樹狀矩形圖",
|
@@ -6054,88 +6329,91 @@ const G = {
|
|
6054
6329
|
}
|
6055
6330
|
};
|
6056
6331
|
export {
|
6057
|
-
|
6058
|
-
|
6059
|
-
|
6060
|
-
|
6061
|
-
|
6062
|
-
|
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,
|
6063
6338
|
P as PRESET_BUBBLES_SEPARATE_ALL,
|
6064
6339
|
h as PRESET_BUBBLES_SEPARATE_LABEL,
|
6065
|
-
|
6340
|
+
_ as PRESET_BUBBLES_SEPARATE_SERIES,
|
6066
6341
|
b as PRESET_BUBBLES_SIMPLE,
|
6067
|
-
|
6068
|
-
|
6069
|
-
|
6070
|
-
|
6071
|
-
|
6072
|
-
|
6073
|
-
|
6074
|
-
|
6075
|
-
|
6076
|
-
|
6077
|
-
|
6078
|
-
|
6079
|
-
|
6080
|
-
|
6081
|
-
|
6082
|
-
|
6083
|
-
|
6084
|
-
|
6085
|
-
|
6086
|
-
|
6087
|
-
|
6088
|
-
|
6089
|
-
|
6090
|
-
|
6091
|
-
|
6092
|
-
|
6093
|
-
|
6094
|
-
|
6095
|
-
|
6096
|
-
|
6097
|
-
|
6098
|
-
|
6099
|
-
|
6100
|
-
|
6101
|
-
|
6102
|
-
|
6103
|
-
|
6104
|
-
|
6105
|
-
|
6106
|
-
|
6107
|
-
|
6108
|
-
|
6109
|
-
|
6110
|
-
|
6111
|
-
|
6112
|
-
|
6113
|
-
|
6114
|
-
|
6115
|
-
|
6116
|
-
|
6117
|
-
|
6118
|
-
|
6119
|
-
|
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,
|
6120
6395
|
i as PRESET_PIE_BASIC,
|
6121
6396
|
F as PRESET_PIE_DONUT,
|
6122
|
-
T as PRESET_PIE_GAUGE,
|
6123
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,
|
6124
6402
|
o as PRESET_PIE_SEPARATE_LABEL,
|
6125
6403
|
s as PRESET_PIE_SEPARATE_SERIES,
|
6126
6404
|
n as PRESET_PIE_SIMPLE,
|
6127
|
-
|
6405
|
+
d as PRESET_PIE_SUM_SERIES,
|
6128
6406
|
l as PRESET_PIE_WITH_INNER_LABELS,
|
6129
|
-
|
6130
|
-
|
6131
|
-
|
6132
|
-
|
6133
|
-
|
6134
|
-
|
6135
|
-
|
6136
|
-
|
6137
|
-
|
6138
|
-
|
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,
|
6139
6417
|
E as PRESET_ROSE_SCALING_BY_RADIUS,
|
6140
6418
|
A as PRESET_ROSE_SEPARATE_ALL,
|
6141
6419
|
C as PRESET_ROSE_SEPARATE_LABEL,
|
@@ -6143,18 +6421,18 @@ export {
|
|
6143
6421
|
p as PRESET_ROSE_SEPARATE_SERIES_AND_SUM_SERIES,
|
6144
6422
|
c as PRESET_ROSE_SIMPLE,
|
6145
6423
|
g as PRESET_ROSE_SUM_SERIES,
|
6146
|
-
|
6147
|
-
|
6148
|
-
|
6149
|
-
|
6150
|
-
|
6151
|
-
|
6152
|
-
|
6153
|
-
|
6154
|
-
|
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,
|
6155
6433
|
u as PRESET_SERIES_SEPARATE_SERIES,
|
6156
|
-
|
6157
|
-
|
6158
|
-
|
6159
|
-
|
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
|
6160
6438
|
};
|