@ecan-bi/datav 1.2.75 → 1.2.77
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 +3550 -3427
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +26 -26
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/container/modal/Modal.vue.d.ts +1 -0
- package/types/container/modal/index.d.ts +1 -0
- package/types/container/tabs/Tabs.vue.d.ts +8 -0
- package/types/container/tabs/index.d.ts +8 -0
- package/types/container/tabs/props.d.ts +5 -0
- package/types/control/button/Button.vue.d.ts +10 -2
- package/types/control/button/index.d.ts +10 -2
- package/types/control/button/props.d.ts +7 -2
- package/types/control/date-picker/DatePicker.vue.d.ts +7 -0
- package/types/control/date-picker/index.d.ts +7 -0
- package/types/graph/bar/Bar.vue.d.ts +38 -1
- package/types/graph/bar/index.d.ts +38 -1
- package/types/graph/bar/props.d.ts +20 -0
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +38 -1
- package/types/graph/combo-graph/index.d.ts +38 -1
- package/types/graph/combo-graph/props.d.ts +20 -0
- package/types/graph/line/Line.vue.d.ts +37 -0
- package/types/graph/line/index.d.ts +37 -0
- package/types/graph/line/props.d.ts +24 -0
- package/types/graph/pie/Pie.vue.d.ts +38 -1
- package/types/graph/pie/index.d.ts +38 -1
- package/types/graph/pie/props.d.ts +20 -0
- package/types/graph/radar/Radar.vue.d.ts +37 -0
- package/types/graph/radar/index.d.ts +37 -0
- package/types/graph/radar/props.d.ts +24 -0
- package/types/graph/scatter/Scatter.vue.d.ts +38 -1
- package/types/graph/scatter/index.d.ts +38 -1
- package/types/graph/scatter/props.d.ts +20 -0
- package/types/hooks/useTransformChartDataByAttrKey.d.ts +1 -1
|
@@ -11,6 +11,22 @@ export declare const EcanComboGraph: import("../../utils/withInstall").SFCWithIn
|
|
|
11
11
|
type?: import("vue").PropType<string>;
|
|
12
12
|
default?: string;
|
|
13
13
|
};
|
|
14
|
+
titleFontSize: {
|
|
15
|
+
type?: import("vue").PropType<string>;
|
|
16
|
+
default?: string;
|
|
17
|
+
};
|
|
18
|
+
titleColor: {
|
|
19
|
+
type?: import("vue").PropType<string>;
|
|
20
|
+
default?: string;
|
|
21
|
+
};
|
|
22
|
+
fontWeight: {
|
|
23
|
+
type?: import("vue").PropType<number>;
|
|
24
|
+
default?: number;
|
|
25
|
+
};
|
|
26
|
+
textAlign: {
|
|
27
|
+
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
28
|
+
default?: "left" | "center" | "right";
|
|
29
|
+
};
|
|
14
30
|
colors: {
|
|
15
31
|
type?: import("vue").PropType<string[]>;
|
|
16
32
|
default?: string[];
|
|
@@ -445,7 +461,12 @@ export declare const EcanComboGraph: import("../../utils/withInstall").SFCWithIn
|
|
|
445
461
|
title: {
|
|
446
462
|
text: string;
|
|
447
463
|
subtext: string;
|
|
448
|
-
|
|
464
|
+
textStyle: {
|
|
465
|
+
fontSize: string;
|
|
466
|
+
fontWeight: number;
|
|
467
|
+
color: string;
|
|
468
|
+
};
|
|
469
|
+
left: "left" | "center" | "right";
|
|
449
470
|
};
|
|
450
471
|
toolbox: {
|
|
451
472
|
show: boolean;
|
|
@@ -603,6 +624,22 @@ export declare const EcanComboGraph: import("../../utils/withInstall").SFCWithIn
|
|
|
603
624
|
type?: import("vue").PropType<string>;
|
|
604
625
|
default?: string;
|
|
605
626
|
};
|
|
627
|
+
titleFontSize: {
|
|
628
|
+
type?: import("vue").PropType<string>;
|
|
629
|
+
default?: string;
|
|
630
|
+
};
|
|
631
|
+
titleColor: {
|
|
632
|
+
type?: import("vue").PropType<string>;
|
|
633
|
+
default?: string;
|
|
634
|
+
};
|
|
635
|
+
fontWeight: {
|
|
636
|
+
type?: import("vue").PropType<number>;
|
|
637
|
+
default?: number;
|
|
638
|
+
};
|
|
639
|
+
textAlign: {
|
|
640
|
+
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
641
|
+
default?: "left" | "center" | "right";
|
|
642
|
+
};
|
|
606
643
|
colors: {
|
|
607
644
|
type?: import("vue").PropType<string[]>;
|
|
608
645
|
default?: string[];
|
|
@@ -3,6 +3,10 @@ export interface ComboGraphProps extends Props {
|
|
|
3
3
|
data: Data;
|
|
4
4
|
titleText: string;
|
|
5
5
|
titleSubtext: string;
|
|
6
|
+
titleFontSize: string;
|
|
7
|
+
titleColor: string;
|
|
8
|
+
fontWeight: number;
|
|
9
|
+
textAlign: 'left' | 'right' | 'center';
|
|
6
10
|
colors: string[];
|
|
7
11
|
legendShow: boolean;
|
|
8
12
|
legendTextStyleColor: string;
|
|
@@ -105,6 +109,22 @@ export declare const comboGraphComponentProps: {
|
|
|
105
109
|
type?: import("vue").PropType<string>;
|
|
106
110
|
default?: string;
|
|
107
111
|
};
|
|
112
|
+
titleFontSize: {
|
|
113
|
+
type?: import("vue").PropType<string>;
|
|
114
|
+
default?: string;
|
|
115
|
+
};
|
|
116
|
+
titleColor: {
|
|
117
|
+
type?: import("vue").PropType<string>;
|
|
118
|
+
default?: string;
|
|
119
|
+
};
|
|
120
|
+
fontWeight: {
|
|
121
|
+
type?: import("vue").PropType<number>;
|
|
122
|
+
default?: number;
|
|
123
|
+
};
|
|
124
|
+
textAlign: {
|
|
125
|
+
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
126
|
+
default?: "left" | "center" | "right";
|
|
127
|
+
};
|
|
108
128
|
colors: {
|
|
109
129
|
type?: import("vue").PropType<string[]>;
|
|
110
130
|
default?: string[];
|
|
@@ -51,6 +51,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
51
51
|
type?: import("vue").PropType<string>;
|
|
52
52
|
default?: string;
|
|
53
53
|
};
|
|
54
|
+
titleFontSize: {
|
|
55
|
+
type?: import("vue").PropType<string>;
|
|
56
|
+
default?: string;
|
|
57
|
+
};
|
|
58
|
+
titleColor: {
|
|
59
|
+
type?: import("vue").PropType<string>;
|
|
60
|
+
default?: string;
|
|
61
|
+
};
|
|
62
|
+
fontWeight: {
|
|
63
|
+
type?: import("vue").PropType<number>;
|
|
64
|
+
default?: number;
|
|
65
|
+
};
|
|
66
|
+
textAlign: {
|
|
67
|
+
type?: import("vue").PropType<string>;
|
|
68
|
+
default?: string;
|
|
69
|
+
};
|
|
54
70
|
titleSubtext: {
|
|
55
71
|
type?: import("vue").PropType<string>;
|
|
56
72
|
default?: string;
|
|
@@ -445,6 +461,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
445
461
|
title: {
|
|
446
462
|
text: string;
|
|
447
463
|
subText: string;
|
|
464
|
+
textStyle: {
|
|
465
|
+
fontSize: string;
|
|
466
|
+
fontWeight: number;
|
|
467
|
+
color: string;
|
|
468
|
+
};
|
|
448
469
|
left: string;
|
|
449
470
|
};
|
|
450
471
|
grid: {
|
|
@@ -605,6 +626,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
605
626
|
type?: import("vue").PropType<string>;
|
|
606
627
|
default?: string;
|
|
607
628
|
};
|
|
629
|
+
titleFontSize: {
|
|
630
|
+
type?: import("vue").PropType<string>;
|
|
631
|
+
default?: string;
|
|
632
|
+
};
|
|
633
|
+
titleColor: {
|
|
634
|
+
type?: import("vue").PropType<string>;
|
|
635
|
+
default?: string;
|
|
636
|
+
};
|
|
637
|
+
fontWeight: {
|
|
638
|
+
type?: import("vue").PropType<number>;
|
|
639
|
+
default?: number;
|
|
640
|
+
};
|
|
641
|
+
textAlign: {
|
|
642
|
+
type?: import("vue").PropType<string>;
|
|
643
|
+
default?: string;
|
|
644
|
+
};
|
|
608
645
|
titleSubtext: {
|
|
609
646
|
type?: import("vue").PropType<string>;
|
|
610
647
|
default?: string;
|
|
@@ -51,6 +51,22 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
51
51
|
type?: import("vue").PropType<string>;
|
|
52
52
|
default?: string;
|
|
53
53
|
};
|
|
54
|
+
titleFontSize: {
|
|
55
|
+
type?: import("vue").PropType<string>;
|
|
56
|
+
default?: string;
|
|
57
|
+
};
|
|
58
|
+
titleColor: {
|
|
59
|
+
type?: import("vue").PropType<string>;
|
|
60
|
+
default?: string;
|
|
61
|
+
};
|
|
62
|
+
fontWeight: {
|
|
63
|
+
type?: import("vue").PropType<number>;
|
|
64
|
+
default?: number;
|
|
65
|
+
};
|
|
66
|
+
textAlign: {
|
|
67
|
+
type?: import("vue").PropType<string>;
|
|
68
|
+
default?: string;
|
|
69
|
+
};
|
|
54
70
|
titleSubtext: {
|
|
55
71
|
type?: import("vue").PropType<string>;
|
|
56
72
|
default?: string;
|
|
@@ -445,6 +461,11 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
445
461
|
title: {
|
|
446
462
|
text: string;
|
|
447
463
|
subText: string;
|
|
464
|
+
textStyle: {
|
|
465
|
+
fontSize: string;
|
|
466
|
+
fontWeight: number;
|
|
467
|
+
color: string;
|
|
468
|
+
};
|
|
448
469
|
left: string;
|
|
449
470
|
};
|
|
450
471
|
grid: {
|
|
@@ -605,6 +626,22 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
605
626
|
type?: import("vue").PropType<string>;
|
|
606
627
|
default?: string;
|
|
607
628
|
};
|
|
629
|
+
titleFontSize: {
|
|
630
|
+
type?: import("vue").PropType<string>;
|
|
631
|
+
default?: string;
|
|
632
|
+
};
|
|
633
|
+
titleColor: {
|
|
634
|
+
type?: import("vue").PropType<string>;
|
|
635
|
+
default?: string;
|
|
636
|
+
};
|
|
637
|
+
fontWeight: {
|
|
638
|
+
type?: import("vue").PropType<number>;
|
|
639
|
+
default?: number;
|
|
640
|
+
};
|
|
641
|
+
textAlign: {
|
|
642
|
+
type?: import("vue").PropType<string>;
|
|
643
|
+
default?: string;
|
|
644
|
+
};
|
|
608
645
|
titleSubtext: {
|
|
609
646
|
type?: import("vue").PropType<string>;
|
|
610
647
|
default?: string;
|
|
@@ -3,6 +3,10 @@ export interface LineProps extends Props {
|
|
|
3
3
|
data: Data;
|
|
4
4
|
titleText: string;
|
|
5
5
|
titleSubtext: string;
|
|
6
|
+
titleFontSize: string;
|
|
7
|
+
titleColor: string;
|
|
8
|
+
fontWeight: number;
|
|
9
|
+
textAlign: 'left' | 'right' | 'center';
|
|
6
10
|
titleLeft: string;
|
|
7
11
|
colors: string[];
|
|
8
12
|
legendShow: boolean;
|
|
@@ -96,6 +100,10 @@ export declare const lineProps: {
|
|
|
96
100
|
type: string;
|
|
97
101
|
}[];
|
|
98
102
|
titleText: string;
|
|
103
|
+
titleFontSize: string;
|
|
104
|
+
titleColor: string;
|
|
105
|
+
fontWeight: number;
|
|
106
|
+
textAlign: string;
|
|
99
107
|
titleSubtext: string;
|
|
100
108
|
titleLeft: string;
|
|
101
109
|
legendShow: boolean;
|
|
@@ -245,6 +253,22 @@ export declare const lineComponentProps: {
|
|
|
245
253
|
type?: import("vue").PropType<string>;
|
|
246
254
|
default?: string;
|
|
247
255
|
};
|
|
256
|
+
titleFontSize: {
|
|
257
|
+
type?: import("vue").PropType<string>;
|
|
258
|
+
default?: string;
|
|
259
|
+
};
|
|
260
|
+
titleColor: {
|
|
261
|
+
type?: import("vue").PropType<string>;
|
|
262
|
+
default?: string;
|
|
263
|
+
};
|
|
264
|
+
fontWeight: {
|
|
265
|
+
type?: import("vue").PropType<number>;
|
|
266
|
+
default?: number;
|
|
267
|
+
};
|
|
268
|
+
textAlign: {
|
|
269
|
+
type?: import("vue").PropType<string>;
|
|
270
|
+
default?: string;
|
|
271
|
+
};
|
|
248
272
|
titleSubtext: {
|
|
249
273
|
type?: import("vue").PropType<string>;
|
|
250
274
|
default?: string;
|
|
@@ -12,6 +12,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
12
12
|
type?: import("vue").PropType<string>;
|
|
13
13
|
default?: string;
|
|
14
14
|
};
|
|
15
|
+
titleFontSize: {
|
|
16
|
+
type?: import("vue").PropType<string>;
|
|
17
|
+
default?: string;
|
|
18
|
+
};
|
|
19
|
+
titleColor: {
|
|
20
|
+
type?: import("vue").PropType<string>;
|
|
21
|
+
default?: string;
|
|
22
|
+
};
|
|
23
|
+
fontWeight: {
|
|
24
|
+
type?: import("vue").PropType<number>;
|
|
25
|
+
default?: number;
|
|
26
|
+
};
|
|
27
|
+
textAlign: {
|
|
28
|
+
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
29
|
+
default?: "left" | "center" | "right";
|
|
30
|
+
};
|
|
15
31
|
titleLeft: {
|
|
16
32
|
type?: import("vue").PropType<string>;
|
|
17
33
|
default?: string;
|
|
@@ -360,7 +376,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
360
376
|
title: {
|
|
361
377
|
text: string;
|
|
362
378
|
subtext: string;
|
|
363
|
-
|
|
379
|
+
textStyle: {
|
|
380
|
+
fontSize: string;
|
|
381
|
+
fontWeight: number;
|
|
382
|
+
color: string;
|
|
383
|
+
};
|
|
384
|
+
left: "left" | "center" | "right";
|
|
364
385
|
};
|
|
365
386
|
grid: {
|
|
366
387
|
top: string;
|
|
@@ -431,6 +452,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
431
452
|
type?: import("vue").PropType<string>;
|
|
432
453
|
default?: string;
|
|
433
454
|
};
|
|
455
|
+
titleFontSize: {
|
|
456
|
+
type?: import("vue").PropType<string>;
|
|
457
|
+
default?: string;
|
|
458
|
+
};
|
|
459
|
+
titleColor: {
|
|
460
|
+
type?: import("vue").PropType<string>;
|
|
461
|
+
default?: string;
|
|
462
|
+
};
|
|
463
|
+
fontWeight: {
|
|
464
|
+
type?: import("vue").PropType<number>;
|
|
465
|
+
default?: number;
|
|
466
|
+
};
|
|
467
|
+
textAlign: {
|
|
468
|
+
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
469
|
+
default?: "left" | "center" | "right";
|
|
470
|
+
};
|
|
434
471
|
titleLeft: {
|
|
435
472
|
type?: import("vue").PropType<string>;
|
|
436
473
|
default?: string;
|
|
@@ -11,6 +11,22 @@ export declare const EcanPie: import("../../utils/withInstall").SFCWithInstall<i
|
|
|
11
11
|
type?: import("vue").PropType<string>;
|
|
12
12
|
default?: string;
|
|
13
13
|
};
|
|
14
|
+
titleFontSize: {
|
|
15
|
+
type?: import("vue").PropType<string>;
|
|
16
|
+
default?: string;
|
|
17
|
+
};
|
|
18
|
+
titleColor: {
|
|
19
|
+
type?: import("vue").PropType<string>;
|
|
20
|
+
default?: string;
|
|
21
|
+
};
|
|
22
|
+
fontWeight: {
|
|
23
|
+
type?: import("vue").PropType<number>;
|
|
24
|
+
default?: number;
|
|
25
|
+
};
|
|
26
|
+
textAlign: {
|
|
27
|
+
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
28
|
+
default?: "left" | "center" | "right";
|
|
29
|
+
};
|
|
14
30
|
titleLeft: {
|
|
15
31
|
type?: import("vue").PropType<string>;
|
|
16
32
|
default?: string;
|
|
@@ -359,7 +375,12 @@ export declare const EcanPie: import("../../utils/withInstall").SFCWithInstall<i
|
|
|
359
375
|
title: {
|
|
360
376
|
text: string;
|
|
361
377
|
subtext: string;
|
|
362
|
-
|
|
378
|
+
textStyle: {
|
|
379
|
+
fontSize: string;
|
|
380
|
+
fontWeight: number;
|
|
381
|
+
color: string;
|
|
382
|
+
};
|
|
383
|
+
left: "left" | "center" | "right";
|
|
363
384
|
};
|
|
364
385
|
grid: {
|
|
365
386
|
top: string;
|
|
@@ -430,6 +451,22 @@ export declare const EcanPie: import("../../utils/withInstall").SFCWithInstall<i
|
|
|
430
451
|
type?: import("vue").PropType<string>;
|
|
431
452
|
default?: string;
|
|
432
453
|
};
|
|
454
|
+
titleFontSize: {
|
|
455
|
+
type?: import("vue").PropType<string>;
|
|
456
|
+
default?: string;
|
|
457
|
+
};
|
|
458
|
+
titleColor: {
|
|
459
|
+
type?: import("vue").PropType<string>;
|
|
460
|
+
default?: string;
|
|
461
|
+
};
|
|
462
|
+
fontWeight: {
|
|
463
|
+
type?: import("vue").PropType<number>;
|
|
464
|
+
default?: number;
|
|
465
|
+
};
|
|
466
|
+
textAlign: {
|
|
467
|
+
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
468
|
+
default?: "left" | "center" | "right";
|
|
469
|
+
};
|
|
433
470
|
titleLeft: {
|
|
434
471
|
type?: import("vue").PropType<string>;
|
|
435
472
|
default?: string;
|
|
@@ -3,6 +3,10 @@ export interface PieProps extends Props {
|
|
|
3
3
|
data: Data;
|
|
4
4
|
titleText: string;
|
|
5
5
|
titleSubtext: string;
|
|
6
|
+
titleFontSize: string;
|
|
7
|
+
titleColor: string;
|
|
8
|
+
fontWeight: number;
|
|
9
|
+
textAlign: 'left' | 'right' | 'center';
|
|
6
10
|
titleLeft: string;
|
|
7
11
|
colors: string[];
|
|
8
12
|
backgroundColor: string;
|
|
@@ -75,6 +79,22 @@ export declare const pieComponentProps: {
|
|
|
75
79
|
type?: import("vue").PropType<string>;
|
|
76
80
|
default?: string;
|
|
77
81
|
};
|
|
82
|
+
titleFontSize: {
|
|
83
|
+
type?: import("vue").PropType<string>;
|
|
84
|
+
default?: string;
|
|
85
|
+
};
|
|
86
|
+
titleColor: {
|
|
87
|
+
type?: import("vue").PropType<string>;
|
|
88
|
+
default?: string;
|
|
89
|
+
};
|
|
90
|
+
fontWeight: {
|
|
91
|
+
type?: import("vue").PropType<number>;
|
|
92
|
+
default?: number;
|
|
93
|
+
};
|
|
94
|
+
textAlign: {
|
|
95
|
+
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
96
|
+
default?: "left" | "center" | "right";
|
|
97
|
+
};
|
|
78
98
|
titleLeft: {
|
|
79
99
|
type?: import("vue").PropType<string>;
|
|
80
100
|
default?: string;
|
|
@@ -55,6 +55,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
55
55
|
type?: import("vue").PropType<string>;
|
|
56
56
|
default?: string;
|
|
57
57
|
};
|
|
58
|
+
titleFontSize: {
|
|
59
|
+
type?: import("vue").PropType<string>;
|
|
60
|
+
default?: string;
|
|
61
|
+
};
|
|
62
|
+
titleColor: {
|
|
63
|
+
type?: import("vue").PropType<string>;
|
|
64
|
+
default?: string;
|
|
65
|
+
};
|
|
66
|
+
fontWeight: {
|
|
67
|
+
type?: import("vue").PropType<number>;
|
|
68
|
+
default?: number;
|
|
69
|
+
};
|
|
70
|
+
textAlign: {
|
|
71
|
+
type?: import("vue").PropType<string>;
|
|
72
|
+
default?: string;
|
|
73
|
+
};
|
|
58
74
|
legendShow: {
|
|
59
75
|
type?: import("vue").PropType<boolean>;
|
|
60
76
|
default?: boolean;
|
|
@@ -313,6 +329,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
313
329
|
title: {
|
|
314
330
|
text: string;
|
|
315
331
|
subText: string;
|
|
332
|
+
textStyle: {
|
|
333
|
+
fontSize: string;
|
|
334
|
+
fontWeight: number;
|
|
335
|
+
color: string;
|
|
336
|
+
};
|
|
316
337
|
left: string;
|
|
317
338
|
};
|
|
318
339
|
color: string[];
|
|
@@ -414,6 +435,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
414
435
|
type?: import("vue").PropType<string>;
|
|
415
436
|
default?: string;
|
|
416
437
|
};
|
|
438
|
+
titleFontSize: {
|
|
439
|
+
type?: import("vue").PropType<string>;
|
|
440
|
+
default?: string;
|
|
441
|
+
};
|
|
442
|
+
titleColor: {
|
|
443
|
+
type?: import("vue").PropType<string>;
|
|
444
|
+
default?: string;
|
|
445
|
+
};
|
|
446
|
+
fontWeight: {
|
|
447
|
+
type?: import("vue").PropType<number>;
|
|
448
|
+
default?: number;
|
|
449
|
+
};
|
|
450
|
+
textAlign: {
|
|
451
|
+
type?: import("vue").PropType<string>;
|
|
452
|
+
default?: string;
|
|
453
|
+
};
|
|
417
454
|
legendShow: {
|
|
418
455
|
type?: import("vue").PropType<boolean>;
|
|
419
456
|
default?: boolean;
|
|
@@ -55,6 +55,22 @@ export declare const EcanRadar: import("../../utils/withInstall").SFCWithInstall
|
|
|
55
55
|
type?: import("vue").PropType<string>;
|
|
56
56
|
default?: string;
|
|
57
57
|
};
|
|
58
|
+
titleFontSize: {
|
|
59
|
+
type?: import("vue").PropType<string>;
|
|
60
|
+
default?: string;
|
|
61
|
+
};
|
|
62
|
+
titleColor: {
|
|
63
|
+
type?: import("vue").PropType<string>;
|
|
64
|
+
default?: string;
|
|
65
|
+
};
|
|
66
|
+
fontWeight: {
|
|
67
|
+
type?: import("vue").PropType<number>;
|
|
68
|
+
default?: number;
|
|
69
|
+
};
|
|
70
|
+
textAlign: {
|
|
71
|
+
type?: import("vue").PropType<string>;
|
|
72
|
+
default?: string;
|
|
73
|
+
};
|
|
58
74
|
legendShow: {
|
|
59
75
|
type?: import("vue").PropType<boolean>;
|
|
60
76
|
default?: boolean;
|
|
@@ -313,6 +329,11 @@ export declare const EcanRadar: import("../../utils/withInstall").SFCWithInstall
|
|
|
313
329
|
title: {
|
|
314
330
|
text: string;
|
|
315
331
|
subText: string;
|
|
332
|
+
textStyle: {
|
|
333
|
+
fontSize: string;
|
|
334
|
+
fontWeight: number;
|
|
335
|
+
color: string;
|
|
336
|
+
};
|
|
316
337
|
left: string;
|
|
317
338
|
};
|
|
318
339
|
color: string[];
|
|
@@ -414,6 +435,22 @@ export declare const EcanRadar: import("../../utils/withInstall").SFCWithInstall
|
|
|
414
435
|
type?: import("vue").PropType<string>;
|
|
415
436
|
default?: string;
|
|
416
437
|
};
|
|
438
|
+
titleFontSize: {
|
|
439
|
+
type?: import("vue").PropType<string>;
|
|
440
|
+
default?: string;
|
|
441
|
+
};
|
|
442
|
+
titleColor: {
|
|
443
|
+
type?: import("vue").PropType<string>;
|
|
444
|
+
default?: string;
|
|
445
|
+
};
|
|
446
|
+
fontWeight: {
|
|
447
|
+
type?: import("vue").PropType<number>;
|
|
448
|
+
default?: number;
|
|
449
|
+
};
|
|
450
|
+
textAlign: {
|
|
451
|
+
type?: import("vue").PropType<string>;
|
|
452
|
+
default?: string;
|
|
453
|
+
};
|
|
417
454
|
legendShow: {
|
|
418
455
|
type?: import("vue").PropType<boolean>;
|
|
419
456
|
default?: boolean;
|
|
@@ -3,6 +3,10 @@ export interface RadarProps extends Props {
|
|
|
3
3
|
data: Data;
|
|
4
4
|
titleText: string;
|
|
5
5
|
titleSubtext: string;
|
|
6
|
+
titleFontSize: string;
|
|
7
|
+
titleColor: string;
|
|
8
|
+
fontWeight: number;
|
|
9
|
+
textAlign: 'left' | 'right' | 'center';
|
|
6
10
|
colors: string[];
|
|
7
11
|
legendShow: boolean;
|
|
8
12
|
legendLeft: 'left' | 'center' | 'right';
|
|
@@ -62,6 +66,10 @@ export declare const radarProps: {
|
|
|
62
66
|
}[];
|
|
63
67
|
titleText: string;
|
|
64
68
|
titleSubtext: string;
|
|
69
|
+
titleFontSize: string;
|
|
70
|
+
titleColor: string;
|
|
71
|
+
fontWeight: number;
|
|
72
|
+
textAlign: string;
|
|
65
73
|
legendShow: boolean;
|
|
66
74
|
legendOrient: string;
|
|
67
75
|
legendTop: string;
|
|
@@ -181,6 +189,22 @@ export declare const radarComponentProps: {
|
|
|
181
189
|
type?: import("vue").PropType<string>;
|
|
182
190
|
default?: string;
|
|
183
191
|
};
|
|
192
|
+
titleFontSize: {
|
|
193
|
+
type?: import("vue").PropType<string>;
|
|
194
|
+
default?: string;
|
|
195
|
+
};
|
|
196
|
+
titleColor: {
|
|
197
|
+
type?: import("vue").PropType<string>;
|
|
198
|
+
default?: string;
|
|
199
|
+
};
|
|
200
|
+
fontWeight: {
|
|
201
|
+
type?: import("vue").PropType<number>;
|
|
202
|
+
default?: number;
|
|
203
|
+
};
|
|
204
|
+
textAlign: {
|
|
205
|
+
type?: import("vue").PropType<string>;
|
|
206
|
+
default?: string;
|
|
207
|
+
};
|
|
184
208
|
legendShow: {
|
|
185
209
|
type?: import("vue").PropType<boolean>;
|
|
186
210
|
default?: boolean;
|
|
@@ -11,6 +11,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
11
11
|
type?: import("vue").PropType<string>;
|
|
12
12
|
default?: string;
|
|
13
13
|
};
|
|
14
|
+
titleFontSize: {
|
|
15
|
+
type?: import("vue").PropType<string>;
|
|
16
|
+
default?: string;
|
|
17
|
+
};
|
|
18
|
+
titleColor: {
|
|
19
|
+
type?: import("vue").PropType<string>;
|
|
20
|
+
default?: string;
|
|
21
|
+
};
|
|
22
|
+
fontWeight: {
|
|
23
|
+
type?: import("vue").PropType<number>;
|
|
24
|
+
default?: number;
|
|
25
|
+
};
|
|
26
|
+
textAlign: {
|
|
27
|
+
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
28
|
+
default?: "left" | "center" | "right";
|
|
29
|
+
};
|
|
14
30
|
colors: {
|
|
15
31
|
type?: import("vue").PropType<string[]>;
|
|
16
32
|
default?: string[];
|
|
@@ -353,7 +369,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
353
369
|
title: {
|
|
354
370
|
text: string;
|
|
355
371
|
subtext: string;
|
|
356
|
-
|
|
372
|
+
textStyle: {
|
|
373
|
+
fontSize: string;
|
|
374
|
+
fontWeight: number;
|
|
375
|
+
color: string;
|
|
376
|
+
};
|
|
377
|
+
left: "left" | "center" | "right";
|
|
357
378
|
};
|
|
358
379
|
grid: {
|
|
359
380
|
top: string;
|
|
@@ -462,6 +483,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
462
483
|
type?: import("vue").PropType<string>;
|
|
463
484
|
default?: string;
|
|
464
485
|
};
|
|
486
|
+
titleFontSize: {
|
|
487
|
+
type?: import("vue").PropType<string>;
|
|
488
|
+
default?: string;
|
|
489
|
+
};
|
|
490
|
+
titleColor: {
|
|
491
|
+
type?: import("vue").PropType<string>;
|
|
492
|
+
default?: string;
|
|
493
|
+
};
|
|
494
|
+
fontWeight: {
|
|
495
|
+
type?: import("vue").PropType<number>;
|
|
496
|
+
default?: number;
|
|
497
|
+
};
|
|
498
|
+
textAlign: {
|
|
499
|
+
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
500
|
+
default?: "left" | "center" | "right";
|
|
501
|
+
};
|
|
465
502
|
colors: {
|
|
466
503
|
type?: import("vue").PropType<string[]>;
|
|
467
504
|
default?: string[];
|
|
@@ -11,6 +11,22 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
11
11
|
type?: import("vue").PropType<string>;
|
|
12
12
|
default?: string;
|
|
13
13
|
};
|
|
14
|
+
titleFontSize: {
|
|
15
|
+
type?: import("vue").PropType<string>;
|
|
16
|
+
default?: string;
|
|
17
|
+
};
|
|
18
|
+
titleColor: {
|
|
19
|
+
type?: import("vue").PropType<string>;
|
|
20
|
+
default?: string;
|
|
21
|
+
};
|
|
22
|
+
fontWeight: {
|
|
23
|
+
type?: import("vue").PropType<number>;
|
|
24
|
+
default?: number;
|
|
25
|
+
};
|
|
26
|
+
textAlign: {
|
|
27
|
+
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
28
|
+
default?: "left" | "center" | "right";
|
|
29
|
+
};
|
|
14
30
|
colors: {
|
|
15
31
|
type?: import("vue").PropType<string[]>;
|
|
16
32
|
default?: string[];
|
|
@@ -353,7 +369,12 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
353
369
|
title: {
|
|
354
370
|
text: string;
|
|
355
371
|
subtext: string;
|
|
356
|
-
|
|
372
|
+
textStyle: {
|
|
373
|
+
fontSize: string;
|
|
374
|
+
fontWeight: number;
|
|
375
|
+
color: string;
|
|
376
|
+
};
|
|
377
|
+
left: "left" | "center" | "right";
|
|
357
378
|
};
|
|
358
379
|
grid: {
|
|
359
380
|
top: string;
|
|
@@ -462,6 +483,22 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
462
483
|
type?: import("vue").PropType<string>;
|
|
463
484
|
default?: string;
|
|
464
485
|
};
|
|
486
|
+
titleFontSize: {
|
|
487
|
+
type?: import("vue").PropType<string>;
|
|
488
|
+
default?: string;
|
|
489
|
+
};
|
|
490
|
+
titleColor: {
|
|
491
|
+
type?: import("vue").PropType<string>;
|
|
492
|
+
default?: string;
|
|
493
|
+
};
|
|
494
|
+
fontWeight: {
|
|
495
|
+
type?: import("vue").PropType<number>;
|
|
496
|
+
default?: number;
|
|
497
|
+
};
|
|
498
|
+
textAlign: {
|
|
499
|
+
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
500
|
+
default?: "left" | "center" | "right";
|
|
501
|
+
};
|
|
465
502
|
colors: {
|
|
466
503
|
type?: import("vue").PropType<string[]>;
|
|
467
504
|
default?: string[];
|