@ecan-bi/datav 1.6.12 → 1.6.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.es.js +22596 -23544
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +95 -93
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +2 -2
- package/types/graph/bar/Bar.vue.d.ts +1 -189
- package/types/graph/bar/index.d.ts +1 -189
- package/types/graph/budget/Budget.vue.d.ts +4 -4
- package/types/graph/budget/index.d.ts +4 -4
- package/types/graph/budget/props.d.ts +2 -2
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +5 -151
- package/types/graph/combo-graph/index.d.ts +5 -151
- package/types/graph/combo-graph/props.d.ts +2 -2
- package/types/graph/line/Line.vue.d.ts +1 -172
- package/types/graph/line/index.d.ts +1 -172
- package/types/graph/pie/Pie.vue.d.ts +5 -104
- package/types/graph/pie/index.d.ts +5 -104
- package/types/graph/pie/props.d.ts +2 -2
- package/types/graph/radar/Radar.vue.d.ts +1 -92
- package/types/graph/radar/index.d.ts +1 -92
- package/types/graph/scatter/Scatter.vue.d.ts +5 -196
- package/types/graph/scatter/index.d.ts +5 -196
- package/types/graph/scatter/props.d.ts +2 -2
- package/types/text/text/Text.vue.d.ts +176 -5
- package/types/text/text/index.d.ts +176 -5
- package/types/text/text/props.d.ts +2 -2
- package/types/utils/constant.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ecan-bi/datav",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.15",
|
|
4
4
|
"main": "dist/index.umd.js",
|
|
5
5
|
"module": "dist/index.es.js",
|
|
6
6
|
"types": "types/index.d.ts",
|
|
@@ -30,7 +30,6 @@
|
|
|
30
30
|
"prepublishOnly": "npm run build"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@ecan-bi/tools": "^1.0.63",
|
|
34
33
|
"@sucrase/jest-plugin": "^2.2.0",
|
|
35
34
|
"@types/echarts": "^4.9.15",
|
|
36
35
|
"@types/jest": "^26.0.23",
|
|
@@ -80,6 +79,7 @@
|
|
|
80
79
|
},
|
|
81
80
|
"dependencies": {
|
|
82
81
|
"@ecan-bi/indicator-library": "^1.1.1",
|
|
82
|
+
"@ecan-bi/tools": "^1.0.65",
|
|
83
83
|
"@microsoft/fetch-event-source": "2.0.1",
|
|
84
84
|
"@types/big.js": "^6.1.6",
|
|
85
85
|
"ant-design-vue": "^3.1.1",
|
|
@@ -605,195 +605,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
605
605
|
default?: string;
|
|
606
606
|
};
|
|
607
607
|
}, {
|
|
608
|
-
option:
|
|
609
|
-
textStyle: {
|
|
610
|
-
fontFamily: string;
|
|
611
|
-
};
|
|
612
|
-
toolbox: {
|
|
613
|
-
show: any;
|
|
614
|
-
left: any;
|
|
615
|
-
top: any;
|
|
616
|
-
itemSize: any;
|
|
617
|
-
itemGap: any;
|
|
618
|
-
feature: {
|
|
619
|
-
myLocation: {
|
|
620
|
-
show: any;
|
|
621
|
-
title: string;
|
|
622
|
-
icon: string;
|
|
623
|
-
onclick(): void;
|
|
624
|
-
};
|
|
625
|
-
myDownload: {
|
|
626
|
-
show: any;
|
|
627
|
-
title: string;
|
|
628
|
-
icon: string;
|
|
629
|
-
onclick(): void;
|
|
630
|
-
};
|
|
631
|
-
myDataZoom: {
|
|
632
|
-
show: any;
|
|
633
|
-
title: string;
|
|
634
|
-
icon: string;
|
|
635
|
-
onclick(): void;
|
|
636
|
-
};
|
|
637
|
-
myInfo: {
|
|
638
|
-
show: any;
|
|
639
|
-
title: string;
|
|
640
|
-
icon: string;
|
|
641
|
-
onclick(): void;
|
|
642
|
-
};
|
|
643
|
-
mySource: {
|
|
644
|
-
show: any;
|
|
645
|
-
title: string;
|
|
646
|
-
icon: string;
|
|
647
|
-
onclick(): void;
|
|
648
|
-
};
|
|
649
|
-
};
|
|
650
|
-
};
|
|
651
|
-
title: {
|
|
652
|
-
text: any;
|
|
653
|
-
subtext: any;
|
|
654
|
-
textStyle: {
|
|
655
|
-
fontSize: any;
|
|
656
|
-
fontWeight: any;
|
|
657
|
-
color: any;
|
|
658
|
-
};
|
|
659
|
-
left: any;
|
|
660
|
-
};
|
|
661
|
-
grid: {
|
|
662
|
-
top: any;
|
|
663
|
-
bottom: any;
|
|
664
|
-
left: any;
|
|
665
|
-
right: any;
|
|
666
|
-
containLabel: any;
|
|
667
|
-
};
|
|
668
|
-
color: any;
|
|
669
|
-
tooltip: {
|
|
670
|
-
trigger: string;
|
|
671
|
-
show: any;
|
|
672
|
-
formatter: (params: any) => string;
|
|
673
|
-
textStyle: {
|
|
674
|
-
color: any;
|
|
675
|
-
fontSize: number;
|
|
676
|
-
};
|
|
677
|
-
position: any;
|
|
678
|
-
};
|
|
679
|
-
legend: {
|
|
680
|
-
type: string;
|
|
681
|
-
width: any;
|
|
682
|
-
height: any;
|
|
683
|
-
show: any;
|
|
684
|
-
orient: any;
|
|
685
|
-
top: any;
|
|
686
|
-
left: any;
|
|
687
|
-
textStyle: {
|
|
688
|
-
lineHeight: number;
|
|
689
|
-
rich: {
|
|
690
|
-
text: {
|
|
691
|
-
width: any;
|
|
692
|
-
color: any;
|
|
693
|
-
fontSize: any;
|
|
694
|
-
};
|
|
695
|
-
};
|
|
696
|
-
};
|
|
697
|
-
itemHeight: any;
|
|
698
|
-
itemWidth: any;
|
|
699
|
-
itemGap: any;
|
|
700
|
-
data: {
|
|
701
|
-
name: any;
|
|
702
|
-
itemStyle: {
|
|
703
|
-
color: any;
|
|
704
|
-
};
|
|
705
|
-
icon: any;
|
|
706
|
-
}[];
|
|
707
|
-
formatter: (name: string) => string;
|
|
708
|
-
};
|
|
709
|
-
xAxis: {
|
|
710
|
-
type: string;
|
|
711
|
-
data: {}[];
|
|
712
|
-
inverse: any;
|
|
713
|
-
minInterval: any;
|
|
714
|
-
splitLine: {
|
|
715
|
-
show: any;
|
|
716
|
-
lineStyle: {
|
|
717
|
-
color: any;
|
|
718
|
-
type: any;
|
|
719
|
-
};
|
|
720
|
-
interval: any;
|
|
721
|
-
};
|
|
722
|
-
splitArea: {
|
|
723
|
-
show: any;
|
|
724
|
-
};
|
|
725
|
-
axisLabel: {
|
|
726
|
-
show: any;
|
|
727
|
-
color: any;
|
|
728
|
-
interval: any;
|
|
729
|
-
rotate: any;
|
|
730
|
-
width: any;
|
|
731
|
-
overflow: any;
|
|
732
|
-
fontSize: any;
|
|
733
|
-
formatter(value: string): any;
|
|
734
|
-
};
|
|
735
|
-
axisLine: {
|
|
736
|
-
show: any;
|
|
737
|
-
lineStyle: {
|
|
738
|
-
color: any;
|
|
739
|
-
};
|
|
740
|
-
};
|
|
741
|
-
axisTick: {
|
|
742
|
-
show: any;
|
|
743
|
-
};
|
|
744
|
-
name: any;
|
|
745
|
-
nameTextStyle: {
|
|
746
|
-
fontSize: any;
|
|
747
|
-
color: any;
|
|
748
|
-
align: string;
|
|
749
|
-
};
|
|
750
|
-
max: any;
|
|
751
|
-
};
|
|
752
|
-
yAxis: {
|
|
753
|
-
type: string;
|
|
754
|
-
data: {
|
|
755
|
-
[x: string]: any;
|
|
756
|
-
}[];
|
|
757
|
-
inverse: any;
|
|
758
|
-
minInterval: any;
|
|
759
|
-
splitLine: {
|
|
760
|
-
show: any;
|
|
761
|
-
lineStyle: {
|
|
762
|
-
color: any;
|
|
763
|
-
type: any;
|
|
764
|
-
};
|
|
765
|
-
};
|
|
766
|
-
splitArea: {
|
|
767
|
-
show: any;
|
|
768
|
-
};
|
|
769
|
-
axisTick: {
|
|
770
|
-
show: any;
|
|
771
|
-
};
|
|
772
|
-
axisLabel: {
|
|
773
|
-
show: any;
|
|
774
|
-
fontSize: any;
|
|
775
|
-
color: any;
|
|
776
|
-
rotate: any;
|
|
777
|
-
width: any;
|
|
778
|
-
overflow: any;
|
|
779
|
-
formatter(value: string): any;
|
|
780
|
-
};
|
|
781
|
-
axisLine: {
|
|
782
|
-
show: any;
|
|
783
|
-
lineStyle: {
|
|
784
|
-
color: any;
|
|
785
|
-
};
|
|
786
|
-
};
|
|
787
|
-
name: any;
|
|
788
|
-
nameTextStyle: {
|
|
789
|
-
fontSize: any;
|
|
790
|
-
color: any;
|
|
791
|
-
align: string;
|
|
792
|
-
};
|
|
793
|
-
max: any;
|
|
794
|
-
};
|
|
795
|
-
series: any[];
|
|
796
|
-
}>;
|
|
608
|
+
option: any;
|
|
797
609
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
798
610
|
refreshData: () => Promise<void>;
|
|
799
611
|
click: () => void;
|
|
@@ -604,195 +604,7 @@ export declare const EcanBar: import('../../utils/withInstall').SFCWithInstall<i
|
|
|
604
604
|
default?: string;
|
|
605
605
|
};
|
|
606
606
|
}, {
|
|
607
|
-
option:
|
|
608
|
-
textStyle: {
|
|
609
|
-
fontFamily: string;
|
|
610
|
-
};
|
|
611
|
-
toolbox: {
|
|
612
|
-
show: any;
|
|
613
|
-
left: any;
|
|
614
|
-
top: any;
|
|
615
|
-
itemSize: any;
|
|
616
|
-
itemGap: any;
|
|
617
|
-
feature: {
|
|
618
|
-
myLocation: {
|
|
619
|
-
show: any;
|
|
620
|
-
title: string;
|
|
621
|
-
icon: string;
|
|
622
|
-
onclick(): void;
|
|
623
|
-
};
|
|
624
|
-
myDownload: {
|
|
625
|
-
show: any;
|
|
626
|
-
title: string;
|
|
627
|
-
icon: string;
|
|
628
|
-
onclick(): void;
|
|
629
|
-
};
|
|
630
|
-
myDataZoom: {
|
|
631
|
-
show: any;
|
|
632
|
-
title: string;
|
|
633
|
-
icon: string;
|
|
634
|
-
onclick(): void;
|
|
635
|
-
};
|
|
636
|
-
myInfo: {
|
|
637
|
-
show: any;
|
|
638
|
-
title: string;
|
|
639
|
-
icon: string;
|
|
640
|
-
onclick(): void;
|
|
641
|
-
};
|
|
642
|
-
mySource: {
|
|
643
|
-
show: any;
|
|
644
|
-
title: string;
|
|
645
|
-
icon: string;
|
|
646
|
-
onclick(): void;
|
|
647
|
-
};
|
|
648
|
-
};
|
|
649
|
-
};
|
|
650
|
-
title: {
|
|
651
|
-
text: any;
|
|
652
|
-
subtext: any;
|
|
653
|
-
textStyle: {
|
|
654
|
-
fontSize: any;
|
|
655
|
-
fontWeight: any;
|
|
656
|
-
color: any;
|
|
657
|
-
};
|
|
658
|
-
left: any;
|
|
659
|
-
};
|
|
660
|
-
grid: {
|
|
661
|
-
top: any;
|
|
662
|
-
bottom: any;
|
|
663
|
-
left: any;
|
|
664
|
-
right: any;
|
|
665
|
-
containLabel: any;
|
|
666
|
-
};
|
|
667
|
-
color: any;
|
|
668
|
-
tooltip: {
|
|
669
|
-
trigger: string;
|
|
670
|
-
show: any;
|
|
671
|
-
formatter: (params: any) => string;
|
|
672
|
-
textStyle: {
|
|
673
|
-
color: any;
|
|
674
|
-
fontSize: number;
|
|
675
|
-
};
|
|
676
|
-
position: any;
|
|
677
|
-
};
|
|
678
|
-
legend: {
|
|
679
|
-
type: string;
|
|
680
|
-
width: any;
|
|
681
|
-
height: any;
|
|
682
|
-
show: any;
|
|
683
|
-
orient: any;
|
|
684
|
-
top: any;
|
|
685
|
-
left: any;
|
|
686
|
-
textStyle: {
|
|
687
|
-
lineHeight: number;
|
|
688
|
-
rich: {
|
|
689
|
-
text: {
|
|
690
|
-
width: any;
|
|
691
|
-
color: any;
|
|
692
|
-
fontSize: any;
|
|
693
|
-
};
|
|
694
|
-
};
|
|
695
|
-
};
|
|
696
|
-
itemHeight: any;
|
|
697
|
-
itemWidth: any;
|
|
698
|
-
itemGap: any;
|
|
699
|
-
data: {
|
|
700
|
-
name: any;
|
|
701
|
-
itemStyle: {
|
|
702
|
-
color: any;
|
|
703
|
-
};
|
|
704
|
-
icon: any;
|
|
705
|
-
}[];
|
|
706
|
-
formatter: (name: string) => string;
|
|
707
|
-
};
|
|
708
|
-
xAxis: {
|
|
709
|
-
type: string;
|
|
710
|
-
data: {}[];
|
|
711
|
-
inverse: any;
|
|
712
|
-
minInterval: any;
|
|
713
|
-
splitLine: {
|
|
714
|
-
show: any;
|
|
715
|
-
lineStyle: {
|
|
716
|
-
color: any;
|
|
717
|
-
type: any;
|
|
718
|
-
};
|
|
719
|
-
interval: any;
|
|
720
|
-
};
|
|
721
|
-
splitArea: {
|
|
722
|
-
show: any;
|
|
723
|
-
};
|
|
724
|
-
axisLabel: {
|
|
725
|
-
show: any;
|
|
726
|
-
color: any;
|
|
727
|
-
interval: any;
|
|
728
|
-
rotate: any;
|
|
729
|
-
width: any;
|
|
730
|
-
overflow: any;
|
|
731
|
-
fontSize: any;
|
|
732
|
-
formatter(value: string): any;
|
|
733
|
-
};
|
|
734
|
-
axisLine: {
|
|
735
|
-
show: any;
|
|
736
|
-
lineStyle: {
|
|
737
|
-
color: any;
|
|
738
|
-
};
|
|
739
|
-
};
|
|
740
|
-
axisTick: {
|
|
741
|
-
show: any;
|
|
742
|
-
};
|
|
743
|
-
name: any;
|
|
744
|
-
nameTextStyle: {
|
|
745
|
-
fontSize: any;
|
|
746
|
-
color: any;
|
|
747
|
-
align: string;
|
|
748
|
-
};
|
|
749
|
-
max: any;
|
|
750
|
-
};
|
|
751
|
-
yAxis: {
|
|
752
|
-
type: string;
|
|
753
|
-
data: {
|
|
754
|
-
[x: string]: any;
|
|
755
|
-
}[];
|
|
756
|
-
inverse: any;
|
|
757
|
-
minInterval: any;
|
|
758
|
-
splitLine: {
|
|
759
|
-
show: any;
|
|
760
|
-
lineStyle: {
|
|
761
|
-
color: any;
|
|
762
|
-
type: any;
|
|
763
|
-
};
|
|
764
|
-
};
|
|
765
|
-
splitArea: {
|
|
766
|
-
show: any;
|
|
767
|
-
};
|
|
768
|
-
axisTick: {
|
|
769
|
-
show: any;
|
|
770
|
-
};
|
|
771
|
-
axisLabel: {
|
|
772
|
-
show: any;
|
|
773
|
-
fontSize: any;
|
|
774
|
-
color: any;
|
|
775
|
-
rotate: any;
|
|
776
|
-
width: any;
|
|
777
|
-
overflow: any;
|
|
778
|
-
formatter(value: string): any;
|
|
779
|
-
};
|
|
780
|
-
axisLine: {
|
|
781
|
-
show: any;
|
|
782
|
-
lineStyle: {
|
|
783
|
-
color: any;
|
|
784
|
-
};
|
|
785
|
-
};
|
|
786
|
-
name: any;
|
|
787
|
-
nameTextStyle: {
|
|
788
|
-
fontSize: any;
|
|
789
|
-
color: any;
|
|
790
|
-
align: string;
|
|
791
|
-
};
|
|
792
|
-
max: any;
|
|
793
|
-
};
|
|
794
|
-
series: any[];
|
|
795
|
-
}>;
|
|
607
|
+
option: any;
|
|
796
608
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
797
609
|
refreshData: () => Promise<void>;
|
|
798
610
|
click: () => void;
|
|
@@ -145,8 +145,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
145
145
|
default?: boolean;
|
|
146
146
|
};
|
|
147
147
|
tooltipTrigger: {
|
|
148
|
-
type?: import("vue").PropType<"none" | "
|
|
149
|
-
default?: "none" | "
|
|
148
|
+
type?: import("vue").PropType<"none" | "item" | "axis">;
|
|
149
|
+
default?: "none" | "item" | "axis";
|
|
150
150
|
};
|
|
151
151
|
tooltipTextStyleColor: {
|
|
152
152
|
type?: import("vue").PropType<string>;
|
|
@@ -924,8 +924,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
924
924
|
default?: boolean;
|
|
925
925
|
};
|
|
926
926
|
tooltipTrigger: {
|
|
927
|
-
type?: import("vue").PropType<"none" | "
|
|
928
|
-
default?: "none" | "
|
|
927
|
+
type?: import("vue").PropType<"none" | "item" | "axis">;
|
|
928
|
+
default?: "none" | "item" | "axis";
|
|
929
929
|
};
|
|
930
930
|
tooltipTextStyleColor: {
|
|
931
931
|
type?: import("vue").PropType<string>;
|
|
@@ -144,8 +144,8 @@ export declare const EcanBudget: import("../../utils/withInstall").SFCWithInstal
|
|
|
144
144
|
default?: boolean;
|
|
145
145
|
};
|
|
146
146
|
tooltipTrigger: {
|
|
147
|
-
type?: import("vue").PropType<"none" | "
|
|
148
|
-
default?: "none" | "
|
|
147
|
+
type?: import("vue").PropType<"none" | "item" | "axis">;
|
|
148
|
+
default?: "none" | "item" | "axis";
|
|
149
149
|
};
|
|
150
150
|
tooltipTextStyleColor: {
|
|
151
151
|
type?: import("vue").PropType<string>;
|
|
@@ -923,8 +923,8 @@ export declare const EcanBudget: import("../../utils/withInstall").SFCWithInstal
|
|
|
923
923
|
default?: boolean;
|
|
924
924
|
};
|
|
925
925
|
tooltipTrigger: {
|
|
926
|
-
type?: import("vue").PropType<"none" | "
|
|
927
|
-
default?: "none" | "
|
|
926
|
+
type?: import("vue").PropType<"none" | "item" | "axis">;
|
|
927
|
+
default?: "none" | "item" | "axis";
|
|
928
928
|
};
|
|
929
929
|
tooltipTextStyleColor: {
|
|
930
930
|
type?: import("vue").PropType<string>;
|
|
@@ -268,8 +268,8 @@ export declare const budgetComponentProps: {
|
|
|
268
268
|
default?: boolean;
|
|
269
269
|
};
|
|
270
270
|
tooltipTrigger: {
|
|
271
|
-
type?: import("vue").PropType<"none" | "
|
|
272
|
-
default?: "none" | "
|
|
271
|
+
type?: import("vue").PropType<"none" | "item" | "axis">;
|
|
272
|
+
default?: "none" | "item" | "axis";
|
|
273
273
|
};
|
|
274
274
|
tooltipTextStyleColor: {
|
|
275
275
|
type?: import("vue").PropType<string>;
|
|
@@ -145,8 +145,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
145
145
|
default?: boolean;
|
|
146
146
|
};
|
|
147
147
|
tooltipTrigger: {
|
|
148
|
-
type?: import("vue").PropType<"none" | "
|
|
149
|
-
default?: "none" | "
|
|
148
|
+
type?: import("vue").PropType<"none" | "item" | "axis">;
|
|
149
|
+
default?: "none" | "item" | "axis";
|
|
150
150
|
};
|
|
151
151
|
tooltipTextStyleColor: {
|
|
152
152
|
type?: import("vue").PropType<string>;
|
|
@@ -642,153 +642,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
642
642
|
};
|
|
643
643
|
}, {
|
|
644
644
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
645
|
-
option:
|
|
646
|
-
textStyle: {
|
|
647
|
-
fontFamily: string;
|
|
648
|
-
};
|
|
649
|
-
title: {
|
|
650
|
-
text: any;
|
|
651
|
-
subtext: any;
|
|
652
|
-
textStyle: {
|
|
653
|
-
fontSize: any;
|
|
654
|
-
fontWeight: any;
|
|
655
|
-
color: any;
|
|
656
|
-
};
|
|
657
|
-
left: any;
|
|
658
|
-
};
|
|
659
|
-
toolbox: {
|
|
660
|
-
show: any;
|
|
661
|
-
left: any;
|
|
662
|
-
top: any;
|
|
663
|
-
itemSize: any;
|
|
664
|
-
itemGap: any;
|
|
665
|
-
feature: {
|
|
666
|
-
myLocation: {
|
|
667
|
-
show: any;
|
|
668
|
-
title: string;
|
|
669
|
-
icon: string;
|
|
670
|
-
onclick(): void;
|
|
671
|
-
};
|
|
672
|
-
myDownload: {
|
|
673
|
-
show: any;
|
|
674
|
-
title: string;
|
|
675
|
-
icon: string;
|
|
676
|
-
onclick(): void;
|
|
677
|
-
};
|
|
678
|
-
myDataZoom: {
|
|
679
|
-
show: any;
|
|
680
|
-
title: string;
|
|
681
|
-
icon: string;
|
|
682
|
-
onclick(): void;
|
|
683
|
-
};
|
|
684
|
-
myInfo: {
|
|
685
|
-
show: any;
|
|
686
|
-
title: string;
|
|
687
|
-
icon: string;
|
|
688
|
-
onclick(): void;
|
|
689
|
-
};
|
|
690
|
-
mySource: {
|
|
691
|
-
show: any;
|
|
692
|
-
title: string;
|
|
693
|
-
icon: string;
|
|
694
|
-
onclick(): void;
|
|
695
|
-
};
|
|
696
|
-
};
|
|
697
|
-
};
|
|
698
|
-
grid: {
|
|
699
|
-
top: any;
|
|
700
|
-
bottom: any;
|
|
701
|
-
left: any;
|
|
702
|
-
right: any;
|
|
703
|
-
containLabel: any;
|
|
704
|
-
};
|
|
705
|
-
color: any;
|
|
706
|
-
legend: {
|
|
707
|
-
type: string;
|
|
708
|
-
width: any;
|
|
709
|
-
height: any;
|
|
710
|
-
show: any;
|
|
711
|
-
orient: any;
|
|
712
|
-
top: any;
|
|
713
|
-
left: any;
|
|
714
|
-
textStyle: {
|
|
715
|
-
lineHeight: number;
|
|
716
|
-
rich: {
|
|
717
|
-
text: {
|
|
718
|
-
width: any;
|
|
719
|
-
color: any;
|
|
720
|
-
fontSize: any;
|
|
721
|
-
};
|
|
722
|
-
};
|
|
723
|
-
};
|
|
724
|
-
itemHeight: any;
|
|
725
|
-
itemWidth: any;
|
|
726
|
-
itemGap: any;
|
|
727
|
-
data: {
|
|
728
|
-
name: any;
|
|
729
|
-
itemStyle: {
|
|
730
|
-
color: any;
|
|
731
|
-
};
|
|
732
|
-
icon: any;
|
|
733
|
-
}[];
|
|
734
|
-
formatter: (name: string) => string;
|
|
735
|
-
};
|
|
736
|
-
tooltip: {
|
|
737
|
-
trigger: string;
|
|
738
|
-
show: any;
|
|
739
|
-
formatter: (params: any) => string;
|
|
740
|
-
textStyle: {
|
|
741
|
-
color: any;
|
|
742
|
-
fontSize: number;
|
|
743
|
-
};
|
|
744
|
-
position: any;
|
|
745
|
-
};
|
|
746
|
-
xAxis: {
|
|
747
|
-
minInterval: any;
|
|
748
|
-
type: string;
|
|
749
|
-
data: {}[];
|
|
750
|
-
splitLine: {
|
|
751
|
-
show: any;
|
|
752
|
-
lineStyle: {
|
|
753
|
-
color: any;
|
|
754
|
-
};
|
|
755
|
-
interval: any;
|
|
756
|
-
};
|
|
757
|
-
splitArea: {
|
|
758
|
-
show: any;
|
|
759
|
-
};
|
|
760
|
-
axisLabel: {
|
|
761
|
-
show: any;
|
|
762
|
-
color: any;
|
|
763
|
-
interval: any;
|
|
764
|
-
rotate: any;
|
|
765
|
-
width: any;
|
|
766
|
-
overflow: any;
|
|
767
|
-
fontSize: any;
|
|
768
|
-
formatter(value: string): any;
|
|
769
|
-
};
|
|
770
|
-
axisLine: {
|
|
771
|
-
show: any;
|
|
772
|
-
lineStyle: {
|
|
773
|
-
color: any;
|
|
774
|
-
};
|
|
775
|
-
};
|
|
776
|
-
axisTick: {
|
|
777
|
-
show: any;
|
|
778
|
-
};
|
|
779
|
-
name: any;
|
|
780
|
-
nameTextStyle: {
|
|
781
|
-
fontSize: any;
|
|
782
|
-
color: any;
|
|
783
|
-
align: string;
|
|
784
|
-
};
|
|
785
|
-
max: any;
|
|
786
|
-
};
|
|
787
|
-
yAxis: any;
|
|
788
|
-
series: {
|
|
789
|
-
[x: string]: any;
|
|
790
|
-
}[];
|
|
791
|
-
}>;
|
|
645
|
+
option: any;
|
|
792
646
|
click: () => void;
|
|
793
647
|
loading: import("vue").Ref<boolean>;
|
|
794
648
|
onClose: () => void;
|
|
@@ -949,8 +803,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
949
803
|
default?: boolean;
|
|
950
804
|
};
|
|
951
805
|
tooltipTrigger: {
|
|
952
|
-
type?: import("vue").PropType<"none" | "
|
|
953
|
-
default?: "none" | "
|
|
806
|
+
type?: import("vue").PropType<"none" | "item" | "axis">;
|
|
807
|
+
default?: "none" | "item" | "axis";
|
|
954
808
|
};
|
|
955
809
|
tooltipTextStyleColor: {
|
|
956
810
|
type?: import("vue").PropType<string>;
|