@ecan-bi/datav 1.1.40 → 1.1.42
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 +1307 -1297
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +6 -6
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/container/border/Border.vue.d.ts +144 -618
- package/types/container/border/index.d.ts +144 -618
- package/types/container/border/props.d.ts +72 -309
- package/types/container/modal/Modal.vue.d.ts +74 -237
- package/types/container/modal/index.d.ts +73 -237
- package/types/container/modal/props.d.ts +36 -117
- package/types/container/tabs/Tabs.vue.d.ts +176 -400
- package/types/container/tabs/index.d.ts +176 -400
- package/types/container/tabs/props.d.ts +88 -200
- package/types/control/button/Button.vue.d.ts +126 -418
- package/types/control/button/index.d.ts +126 -418
- package/types/control/button/props.d.ts +63 -209
- package/types/control/checkbox/Checkbox.vue.d.ts +102 -334
- package/types/control/checkbox/index.d.ts +102 -334
- package/types/control/checkbox/props.d.ts +51 -167
- package/types/control/date-picker/DatePicker.vue.d.ts +119 -391
- package/types/control/date-picker/index.d.ts +119 -391
- package/types/control/date-picker/props.d.ts +59 -195
- package/types/control/input/Input.vue.d.ts +102 -334
- package/types/control/input/index.d.ts +102 -334
- package/types/control/input/props.d.ts +51 -167
- package/types/control/range-picker/RangePicker.vue.d.ts +128 -420
- package/types/control/range-picker/index.d.ts +128 -420
- package/types/control/range-picker/props.d.ts +63 -209
- package/types/control/select/Select.vue.d.ts +125 -531
- package/types/control/select/index.d.ts +125 -531
- package/types/control/select/props.d.ts +59 -265
- package/types/graph/bar/Bar.vue.d.ts +374 -2044
- package/types/graph/bar/index.d.ts +373 -2043
- package/types/graph/bar/props.d.ts +166 -962
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +340 -741
- package/types/graph/combo-graph/index.d.ts +339 -741
- package/types/graph/combo-graph/props.d.ts +154 -355
- package/types/graph/custom-graph/CustomGraph.vue.d.ts +100 -420
- package/types/graph/custom-graph/index.d.ts +100 -420
- package/types/graph/custom-graph/props.d.ts +50 -210
- package/types/graph/line/Line.vue.d.ts +364 -2546
- package/types/graph/line/index.d.ts +364 -2546
- package/types/graph/line/props.d.ts +149 -1211
- package/types/graph/pie/Pie.vue.d.ts +317 -722
- package/types/graph/pie/index.d.ts +316 -722
- package/types/graph/pie/props.d.ts +142 -345
- package/types/graph/scatter/Scatter.vue.d.ts +293 -639
- package/types/graph/scatter/index.d.ts +293 -639
- package/types/graph/scatter/props.d.ts +132 -305
- package/types/map/map/Map.vue.d.ts +269 -1404
- package/types/map/map/index.d.ts +269 -1404
- package/types/map/map/props.d.ts +121 -664
- package/types/media/iframe/Iframe.vue.d.ts +102 -334
- package/types/media/iframe/index.d.ts +102 -334
- package/types/media/iframe/props.d.ts +51 -167
- package/types/media/image/Image.vue.d.ts +110 -362
- package/types/media/image/index.d.ts +110 -362
- package/types/media/image/props.d.ts +55 -181
- package/types/setting/page-config/PageConfig.vue.d.ts +28 -70
- package/types/setting/page-config/index.d.ts +28 -70
- package/types/setting/page-config/props.d.ts +14 -35
- package/types/setting/provider-config/ProviderConfig.vue.d.ts +22 -62
- package/types/setting/provider-config/index.d.ts +22 -62
- package/types/setting/provider-config/props.d.ts +11 -31
- package/types/table/table/Table.vue.d.ts +234 -1660
- package/types/table/table/index.d.ts +234 -1660
- package/types/table/table/props.d.ts +101 -811
- package/types/text/list/List.vue.d.ts +136 -688
- package/types/text/list/index.d.ts +136 -688
- package/types/text/list/props.d.ts +68 -344
- package/types/text/proportion/Proportion.vue.d.ts +148 -636
- package/types/text/proportion/index.d.ts +148 -636
- package/types/text/proportion/props.d.ts +74 -318
- package/types/text/text/Text.vue.d.ts +160 -690
- package/types/text/text/index.d.ts +160 -690
- package/types/text/text/props.d.ts +81 -346
- package/types/text/time-display/TimeDisplay.vue.d.ts +126 -418
- package/types/text/time-display/index.d.ts +126 -418
- package/types/text/time-display/props.d.ts +63 -209
- package/types/utils/props.d.ts +3 -5
- package/types/utils/runCode.d.ts +2 -0
|
@@ -1,515 +1,314 @@
|
|
|
1
1
|
export declare const EcanComboGraph: import("../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
|
|
2
2
|
data: {
|
|
3
|
-
type?:
|
|
4
|
-
default?:
|
|
5
|
-
} | {
|
|
6
|
-
type: any;
|
|
7
|
-
default: any;
|
|
3
|
+
type?: import("vue").PropType<import("../../utils/props").Data>;
|
|
4
|
+
default?: import("../../utils/props").Data;
|
|
8
5
|
};
|
|
9
6
|
titleText: {
|
|
10
|
-
type?:
|
|
11
|
-
default?:
|
|
12
|
-
} | {
|
|
13
|
-
type: any;
|
|
14
|
-
default: any;
|
|
7
|
+
type?: import("vue").PropType<string>;
|
|
8
|
+
default?: string;
|
|
15
9
|
};
|
|
16
10
|
titleSubtext: {
|
|
17
|
-
type?:
|
|
18
|
-
default?:
|
|
19
|
-
} | {
|
|
20
|
-
type: any;
|
|
21
|
-
default: any;
|
|
11
|
+
type?: import("vue").PropType<string>;
|
|
12
|
+
default?: string;
|
|
22
13
|
};
|
|
23
14
|
colors: {
|
|
24
|
-
type?:
|
|
25
|
-
default?:
|
|
26
|
-
} | {
|
|
27
|
-
type: any;
|
|
28
|
-
default: any;
|
|
15
|
+
type?: import("vue").PropType<string[]>;
|
|
16
|
+
default?: string[];
|
|
29
17
|
};
|
|
30
18
|
legendShow: {
|
|
31
|
-
type?:
|
|
32
|
-
default?:
|
|
33
|
-
} | {
|
|
34
|
-
type: any;
|
|
35
|
-
default: any;
|
|
19
|
+
type?: import("vue").PropType<boolean>;
|
|
20
|
+
default?: boolean;
|
|
36
21
|
};
|
|
37
22
|
legendTextStyleColor: {
|
|
38
|
-
type?:
|
|
39
|
-
default?:
|
|
40
|
-
} | {
|
|
41
|
-
type: any;
|
|
42
|
-
default: any;
|
|
23
|
+
type?: import("vue").PropType<string>;
|
|
24
|
+
default?: string;
|
|
43
25
|
};
|
|
44
26
|
legendLeft: {
|
|
45
|
-
type?:
|
|
46
|
-
default?:
|
|
47
|
-
} | {
|
|
48
|
-
type: any;
|
|
49
|
-
default: any;
|
|
27
|
+
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
28
|
+
default?: "left" | "center" | "right";
|
|
50
29
|
};
|
|
51
30
|
legendTop: {
|
|
52
|
-
type?:
|
|
53
|
-
default?:
|
|
54
|
-
} | {
|
|
55
|
-
type: any;
|
|
56
|
-
default: any;
|
|
31
|
+
type?: import("vue").PropType<"top" | "bottom" | "middle">;
|
|
32
|
+
default?: "top" | "bottom" | "middle";
|
|
57
33
|
};
|
|
58
34
|
legendOrient: {
|
|
59
|
-
type?:
|
|
60
|
-
default?:
|
|
61
|
-
} | {
|
|
62
|
-
type: any;
|
|
63
|
-
default: any;
|
|
35
|
+
type?: import("vue").PropType<"horizontal" | "vertical">;
|
|
36
|
+
default?: "horizontal" | "vertical";
|
|
64
37
|
};
|
|
65
38
|
xAxisSplitLineShow: {
|
|
66
|
-
type?:
|
|
67
|
-
default?:
|
|
68
|
-
} | {
|
|
69
|
-
type: any;
|
|
70
|
-
default: any;
|
|
39
|
+
type?: import("vue").PropType<boolean>;
|
|
40
|
+
default?: boolean;
|
|
71
41
|
};
|
|
72
42
|
xAxisMinInterval: {
|
|
73
|
-
type?:
|
|
74
|
-
default?:
|
|
75
|
-
} | {
|
|
76
|
-
type: any;
|
|
77
|
-
default: any;
|
|
43
|
+
type?: import("vue").PropType<number>;
|
|
44
|
+
default?: number;
|
|
78
45
|
};
|
|
79
46
|
xAxisLabelColor: {
|
|
80
|
-
type?:
|
|
81
|
-
default?:
|
|
82
|
-
} | {
|
|
83
|
-
type: any;
|
|
84
|
-
default: any;
|
|
47
|
+
type?: import("vue").PropType<string>;
|
|
48
|
+
default?: string;
|
|
85
49
|
};
|
|
86
50
|
xAxisLineStyleColor: {
|
|
87
|
-
type?:
|
|
88
|
-
default?:
|
|
89
|
-
} | {
|
|
90
|
-
type: any;
|
|
91
|
-
default: any;
|
|
51
|
+
type?: import("vue").PropType<string>;
|
|
52
|
+
default?: string;
|
|
92
53
|
};
|
|
93
54
|
xAxisTickShow: {
|
|
94
|
-
type?:
|
|
95
|
-
default?:
|
|
96
|
-
} | {
|
|
97
|
-
type: any;
|
|
98
|
-
default: any;
|
|
55
|
+
type?: import("vue").PropType<boolean>;
|
|
56
|
+
default?: boolean;
|
|
99
57
|
};
|
|
100
58
|
yAxisSplitLineShow: {
|
|
101
|
-
type?:
|
|
102
|
-
default?:
|
|
103
|
-
} | {
|
|
104
|
-
type: any;
|
|
105
|
-
default: any;
|
|
59
|
+
type?: import("vue").PropType<boolean>;
|
|
60
|
+
default?: boolean;
|
|
106
61
|
};
|
|
107
62
|
xAxisSplitLineStyleColor: {
|
|
108
|
-
type?:
|
|
109
|
-
default?:
|
|
110
|
-
} | {
|
|
111
|
-
type: any;
|
|
112
|
-
default: any;
|
|
63
|
+
type?: import("vue").PropType<string>;
|
|
64
|
+
default?: string;
|
|
113
65
|
};
|
|
114
66
|
yAxisSplitLineStyleColor: {
|
|
115
|
-
type?:
|
|
116
|
-
default?:
|
|
117
|
-
} | {
|
|
118
|
-
type: any;
|
|
119
|
-
default: any;
|
|
67
|
+
type?: import("vue").PropType<string>;
|
|
68
|
+
default?: string;
|
|
120
69
|
};
|
|
121
70
|
yAxisLabelColor: {
|
|
122
|
-
type?:
|
|
123
|
-
default?:
|
|
124
|
-
} | {
|
|
125
|
-
type: any;
|
|
126
|
-
default: any;
|
|
71
|
+
type?: import("vue").PropType<string>;
|
|
72
|
+
default?: string;
|
|
127
73
|
};
|
|
128
74
|
yAxisLineStyleColor: {
|
|
129
|
-
type?:
|
|
130
|
-
default?:
|
|
131
|
-
} | {
|
|
132
|
-
type: any;
|
|
133
|
-
default: any;
|
|
75
|
+
type?: import("vue").PropType<string>;
|
|
76
|
+
default?: string;
|
|
134
77
|
};
|
|
135
78
|
valueTypeDataFieldNames: {
|
|
136
|
-
type?:
|
|
137
|
-
default?:
|
|
138
|
-
} | {
|
|
139
|
-
type: any;
|
|
140
|
-
default: any;
|
|
79
|
+
type?: import("vue").PropType<import("../../utils/props").ValueTypeDataFieldNames>;
|
|
80
|
+
default?: import("../../utils/props").ValueTypeDataFieldNames;
|
|
141
81
|
};
|
|
142
82
|
keyTypeDataFieldNames: {
|
|
143
|
-
type?:
|
|
144
|
-
default?:
|
|
145
|
-
} | {
|
|
146
|
-
type: any;
|
|
147
|
-
default: any;
|
|
83
|
+
type?: import("vue").PropType<import("../../utils/props").KeyTypeDataFieldNames>;
|
|
84
|
+
default?: import("../../utils/props").KeyTypeDataFieldNames;
|
|
148
85
|
};
|
|
149
86
|
tooltipShow: {
|
|
150
|
-
type?:
|
|
151
|
-
default?:
|
|
152
|
-
} | {
|
|
153
|
-
type: any;
|
|
154
|
-
default: any;
|
|
87
|
+
type?: import("vue").PropType<boolean>;
|
|
88
|
+
default?: boolean;
|
|
155
89
|
};
|
|
156
90
|
tooltipTrigger: {
|
|
157
|
-
type?:
|
|
158
|
-
default?:
|
|
159
|
-
} | {
|
|
160
|
-
type: any;
|
|
161
|
-
default: any;
|
|
91
|
+
type?: import("vue").PropType<"none" | "axis" | "item">;
|
|
92
|
+
default?: "none" | "axis" | "item";
|
|
162
93
|
};
|
|
163
94
|
tooltipTextStyleColor: {
|
|
164
|
-
type?:
|
|
165
|
-
default?:
|
|
166
|
-
} | {
|
|
167
|
-
type: any;
|
|
168
|
-
default: any;
|
|
95
|
+
type?: import("vue").PropType<string>;
|
|
96
|
+
default?: string;
|
|
169
97
|
};
|
|
170
98
|
tooltipFormatter: {
|
|
171
|
-
type?:
|
|
172
|
-
default?:
|
|
173
|
-
} | {
|
|
174
|
-
type: any;
|
|
175
|
-
default: any;
|
|
99
|
+
type?: import("vue").PropType<string>;
|
|
100
|
+
default?: string;
|
|
176
101
|
};
|
|
177
102
|
seriesTypes: {
|
|
178
|
-
type?:
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
103
|
+
type?: import("vue").PropType<{
|
|
104
|
+
[key: string]: any;
|
|
105
|
+
}[]>;
|
|
106
|
+
default?: {
|
|
107
|
+
[key: string]: any;
|
|
108
|
+
}[];
|
|
183
109
|
};
|
|
184
110
|
dataFieldConfigType: {
|
|
185
|
-
type?:
|
|
186
|
-
default?:
|
|
187
|
-
} | {
|
|
188
|
-
type: any;
|
|
189
|
-
default: any;
|
|
111
|
+
type?: import("vue").PropType<"value" | "key">;
|
|
112
|
+
default?: "value" | "key";
|
|
190
113
|
};
|
|
191
114
|
yAxis: {
|
|
192
|
-
type?:
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
115
|
+
type?: import("vue").PropType<{
|
|
116
|
+
[key: string]: any;
|
|
117
|
+
}[]>;
|
|
118
|
+
default?: {
|
|
119
|
+
[key: string]: any;
|
|
120
|
+
}[];
|
|
197
121
|
};
|
|
198
122
|
yAxisMinInterval: {
|
|
199
|
-
type?:
|
|
200
|
-
default?:
|
|
201
|
-
} | {
|
|
202
|
-
type: any;
|
|
203
|
-
default: any;
|
|
123
|
+
type?: import("vue").PropType<number>;
|
|
124
|
+
default?: number;
|
|
204
125
|
};
|
|
205
126
|
graphicConfig?: {
|
|
206
|
-
type?:
|
|
207
|
-
default?:
|
|
208
|
-
} | {
|
|
209
|
-
type: any;
|
|
210
|
-
default: any;
|
|
127
|
+
type?: import("vue").PropType<any>;
|
|
128
|
+
default?: any;
|
|
211
129
|
};
|
|
212
130
|
gridContainLabel: {
|
|
213
|
-
type?:
|
|
214
|
-
default?:
|
|
215
|
-
} | {
|
|
216
|
-
type: any;
|
|
217
|
-
default: any;
|
|
131
|
+
type?: import("vue").PropType<boolean>;
|
|
132
|
+
default?: boolean;
|
|
218
133
|
};
|
|
219
134
|
gridTop: {
|
|
220
|
-
type?:
|
|
221
|
-
default?:
|
|
222
|
-
} | {
|
|
223
|
-
type: any;
|
|
224
|
-
default: any;
|
|
135
|
+
type?: import("vue").PropType<string>;
|
|
136
|
+
default?: string;
|
|
225
137
|
};
|
|
226
138
|
gridBottom: {
|
|
227
|
-
type?:
|
|
228
|
-
default?:
|
|
229
|
-
} | {
|
|
230
|
-
type: any;
|
|
231
|
-
default: any;
|
|
139
|
+
type?: import("vue").PropType<string>;
|
|
140
|
+
default?: string;
|
|
232
141
|
};
|
|
233
142
|
gridLeft: {
|
|
234
|
-
type?:
|
|
235
|
-
default?:
|
|
236
|
-
} | {
|
|
237
|
-
type: any;
|
|
238
|
-
default: any;
|
|
143
|
+
type?: import("vue").PropType<string>;
|
|
144
|
+
default?: string;
|
|
239
145
|
};
|
|
240
146
|
gridRight: {
|
|
241
|
-
type?:
|
|
242
|
-
default?:
|
|
243
|
-
} | {
|
|
244
|
-
type: any;
|
|
245
|
-
default: any;
|
|
147
|
+
type?: import("vue").PropType<string>;
|
|
148
|
+
default?: string;
|
|
246
149
|
};
|
|
247
150
|
toolboxShow: {
|
|
248
|
-
type?:
|
|
249
|
-
default?:
|
|
250
|
-
} | {
|
|
251
|
-
type: any;
|
|
252
|
-
default: any;
|
|
151
|
+
type?: import("vue").PropType<boolean>;
|
|
152
|
+
default?: boolean;
|
|
253
153
|
};
|
|
254
154
|
toolboxOrient: {
|
|
255
|
-
type?:
|
|
256
|
-
default?:
|
|
257
|
-
} | {
|
|
258
|
-
type: any;
|
|
259
|
-
default: any;
|
|
155
|
+
type?: import("vue").PropType<"horizontal" | "vertical">;
|
|
156
|
+
default?: "horizontal" | "vertical";
|
|
260
157
|
};
|
|
261
158
|
toolboxItemSize: {
|
|
262
|
-
type?:
|
|
263
|
-
default?:
|
|
264
|
-
} | {
|
|
265
|
-
type: any;
|
|
266
|
-
default: any;
|
|
159
|
+
type?: import("vue").PropType<number>;
|
|
160
|
+
default?: number;
|
|
267
161
|
};
|
|
268
162
|
toolboxItemGap: {
|
|
269
|
-
type?:
|
|
270
|
-
default?:
|
|
271
|
-
} | {
|
|
272
|
-
type: any;
|
|
273
|
-
default: any;
|
|
163
|
+
type?: import("vue").PropType<number>;
|
|
164
|
+
default?: number;
|
|
274
165
|
};
|
|
275
166
|
toolboxLeft: {
|
|
276
|
-
type?:
|
|
277
|
-
default?:
|
|
278
|
-
} | {
|
|
279
|
-
type: any;
|
|
280
|
-
default: any;
|
|
167
|
+
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
168
|
+
default?: "left" | "center" | "right";
|
|
281
169
|
};
|
|
282
170
|
toolboxTop: {
|
|
283
|
-
type?:
|
|
284
|
-
default?:
|
|
285
|
-
} | {
|
|
286
|
-
type: any;
|
|
287
|
-
default: any;
|
|
171
|
+
type?: import("vue").PropType<"top" | "bottom" | "middle">;
|
|
172
|
+
default?: "top" | "bottom" | "middle";
|
|
288
173
|
};
|
|
289
174
|
toolboxIconStyleBorderColor: {
|
|
290
|
-
type?:
|
|
291
|
-
default?:
|
|
292
|
-
} | {
|
|
293
|
-
type: any;
|
|
294
|
-
default: any;
|
|
175
|
+
type?: import("vue").PropType<string>;
|
|
176
|
+
default?: string;
|
|
295
177
|
};
|
|
296
178
|
toolboxDownloadUrl: {
|
|
297
|
-
type?:
|
|
298
|
-
default?:
|
|
299
|
-
} | {
|
|
300
|
-
type: any;
|
|
301
|
-
default: any;
|
|
179
|
+
type?: import("vue").PropType<string>;
|
|
180
|
+
default?: string;
|
|
302
181
|
};
|
|
303
182
|
toolboxInfoText: {
|
|
304
|
-
type?:
|
|
305
|
-
default?:
|
|
306
|
-
} | {
|
|
307
|
-
type: any;
|
|
308
|
-
default: any;
|
|
183
|
+
type?: import("vue").PropType<string>;
|
|
184
|
+
default?: string;
|
|
309
185
|
};
|
|
310
186
|
symbolSize: {
|
|
311
|
-
type?:
|
|
312
|
-
default?:
|
|
313
|
-
} | {
|
|
314
|
-
type: any;
|
|
315
|
-
default: any;
|
|
187
|
+
type?: import("vue").PropType<number>;
|
|
188
|
+
default?: number;
|
|
316
189
|
};
|
|
317
190
|
lineStyleWidth: {
|
|
318
|
-
type?:
|
|
319
|
-
default?:
|
|
320
|
-
} | {
|
|
321
|
-
type: any;
|
|
322
|
-
default: any;
|
|
191
|
+
type?: import("vue").PropType<number>;
|
|
192
|
+
default?: number;
|
|
323
193
|
};
|
|
324
194
|
smooth: {
|
|
325
|
-
type?:
|
|
326
|
-
default?:
|
|
327
|
-
} | {
|
|
328
|
-
type: any;
|
|
329
|
-
default: any;
|
|
195
|
+
type?: import("vue").PropType<boolean>;
|
|
196
|
+
default?: boolean;
|
|
330
197
|
};
|
|
331
198
|
areaStyleOpacity: {
|
|
332
|
-
type?:
|
|
333
|
-
default?:
|
|
334
|
-
} | {
|
|
335
|
-
type: any;
|
|
336
|
-
default: any;
|
|
199
|
+
type?: import("vue").PropType<number>;
|
|
200
|
+
default?: number;
|
|
337
201
|
};
|
|
338
202
|
barWidth: {
|
|
339
|
-
type?:
|
|
340
|
-
default?:
|
|
341
|
-
} | {
|
|
342
|
-
type: any;
|
|
343
|
-
default: any;
|
|
203
|
+
type?: import("vue").PropType<string>;
|
|
204
|
+
default?: string;
|
|
344
205
|
};
|
|
345
206
|
id: {
|
|
346
|
-
type?:
|
|
347
|
-
default?:
|
|
348
|
-
} | {
|
|
349
|
-
type: any;
|
|
350
|
-
default: any;
|
|
207
|
+
type?: import("vue").PropType<string>;
|
|
208
|
+
default?: string;
|
|
351
209
|
};
|
|
352
210
|
name: {
|
|
353
|
-
type?:
|
|
354
|
-
default?:
|
|
355
|
-
} | {
|
|
356
|
-
type: any;
|
|
357
|
-
default: any;
|
|
211
|
+
type?: import("vue").PropType<string>;
|
|
212
|
+
default?: string;
|
|
358
213
|
};
|
|
359
214
|
keyName: {
|
|
360
|
-
type?:
|
|
361
|
-
default?:
|
|
362
|
-
} | {
|
|
363
|
-
type: any;
|
|
364
|
-
default: any;
|
|
215
|
+
type?: import("vue").PropType<string>;
|
|
216
|
+
default?: string;
|
|
365
217
|
};
|
|
366
218
|
type: {
|
|
367
|
-
type?:
|
|
368
|
-
default?:
|
|
369
|
-
} | {
|
|
370
|
-
type: any;
|
|
371
|
-
default: any;
|
|
219
|
+
type?: import("vue").PropType<string>;
|
|
220
|
+
default?: string;
|
|
372
221
|
};
|
|
373
222
|
width: {
|
|
374
|
-
type?:
|
|
375
|
-
default?:
|
|
376
|
-
} | {
|
|
377
|
-
type: any;
|
|
378
|
-
default: any;
|
|
223
|
+
type?: import("vue").PropType<string>;
|
|
224
|
+
default?: string;
|
|
379
225
|
};
|
|
380
226
|
height: {
|
|
381
|
-
type?:
|
|
382
|
-
default?:
|
|
383
|
-
} | {
|
|
384
|
-
type: any;
|
|
385
|
-
default: any;
|
|
227
|
+
type?: import("vue").PropType<string>;
|
|
228
|
+
default?: string;
|
|
386
229
|
};
|
|
387
230
|
position: {
|
|
388
|
-
type?:
|
|
389
|
-
default?:
|
|
390
|
-
} | {
|
|
391
|
-
type: any;
|
|
392
|
-
default: any;
|
|
231
|
+
type?: import("vue").PropType<string>;
|
|
232
|
+
default?: string;
|
|
393
233
|
};
|
|
394
234
|
top: {
|
|
395
|
-
type?:
|
|
396
|
-
default?:
|
|
397
|
-
} | {
|
|
398
|
-
type: any;
|
|
399
|
-
default: any;
|
|
235
|
+
type?: import("vue").PropType<string>;
|
|
236
|
+
default?: string;
|
|
400
237
|
};
|
|
401
238
|
left: {
|
|
402
|
-
type?:
|
|
403
|
-
default?:
|
|
404
|
-
} | {
|
|
405
|
-
type: any;
|
|
406
|
-
default: any;
|
|
239
|
+
type?: import("vue").PropType<string>;
|
|
240
|
+
default?: string;
|
|
407
241
|
};
|
|
408
242
|
zIndex: {
|
|
409
|
-
type?:
|
|
410
|
-
default?:
|
|
411
|
-
} | {
|
|
412
|
-
type: any;
|
|
413
|
-
default: any;
|
|
243
|
+
type?: import("vue").PropType<number>;
|
|
244
|
+
default?: number;
|
|
414
245
|
};
|
|
415
246
|
rotate: {
|
|
416
|
-
type?:
|
|
417
|
-
default?:
|
|
418
|
-
} | {
|
|
419
|
-
type: any;
|
|
420
|
-
default: any;
|
|
247
|
+
type?: import("vue").PropType<string>;
|
|
248
|
+
default?: string;
|
|
421
249
|
};
|
|
422
250
|
isShow: {
|
|
423
|
-
type?:
|
|
424
|
-
default?:
|
|
425
|
-
} | {
|
|
426
|
-
type: any;
|
|
427
|
-
default: any;
|
|
251
|
+
type?: import("vue").PropType<boolean>;
|
|
252
|
+
default?: boolean;
|
|
428
253
|
};
|
|
429
254
|
isRender: {
|
|
430
|
-
type?:
|
|
431
|
-
default?:
|
|
432
|
-
} | {
|
|
433
|
-
type: any;
|
|
434
|
-
default: any;
|
|
255
|
+
type?: import("vue").PropType<boolean>;
|
|
256
|
+
default?: boolean;
|
|
435
257
|
};
|
|
436
258
|
events: {
|
|
437
|
-
type?:
|
|
438
|
-
default?:
|
|
439
|
-
} | {
|
|
440
|
-
type: any;
|
|
441
|
-
default: any;
|
|
259
|
+
type?: import("vue").PropType<import("../../utils/props").Events>;
|
|
260
|
+
default?: import("../../utils/props").Events;
|
|
442
261
|
};
|
|
443
262
|
requestUrl: {
|
|
444
|
-
type?:
|
|
445
|
-
default?:
|
|
446
|
-
} | {
|
|
447
|
-
type: any;
|
|
448
|
-
default: any;
|
|
263
|
+
type?: import("vue").PropType<string>;
|
|
264
|
+
default?: string;
|
|
449
265
|
};
|
|
450
266
|
requestMethod: {
|
|
451
|
-
type?:
|
|
452
|
-
default?:
|
|
453
|
-
} | {
|
|
454
|
-
type: any;
|
|
455
|
-
default: any;
|
|
267
|
+
type?: import("vue").PropType<import("../../utils/props").RequestMethod>;
|
|
268
|
+
default?: import("../../utils/props").RequestMethod;
|
|
456
269
|
};
|
|
457
270
|
requestHeaders: {
|
|
458
|
-
type?:
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
271
|
+
type?: import("vue").PropType<{
|
|
272
|
+
[key: string]: any;
|
|
273
|
+
}>;
|
|
274
|
+
default?: {
|
|
275
|
+
[key: string]: any;
|
|
276
|
+
};
|
|
463
277
|
};
|
|
464
278
|
isOpenRequestTimer: {
|
|
465
|
-
type?:
|
|
466
|
-
default?:
|
|
467
|
-
} | {
|
|
468
|
-
type: any;
|
|
469
|
-
default: any;
|
|
279
|
+
type?: import("vue").PropType<boolean>;
|
|
280
|
+
default?: boolean;
|
|
470
281
|
};
|
|
471
282
|
requestInterval: {
|
|
472
|
-
type?:
|
|
473
|
-
default?:
|
|
474
|
-
} | {
|
|
475
|
-
type: any;
|
|
476
|
-
default: any;
|
|
283
|
+
type?: import("vue").PropType<number>;
|
|
284
|
+
default?: number;
|
|
477
285
|
};
|
|
478
286
|
requestParams: {
|
|
479
|
-
type?:
|
|
480
|
-
default?:
|
|
481
|
-
} | {
|
|
482
|
-
type: any;
|
|
483
|
-
default: any;
|
|
287
|
+
type?: import("vue").PropType<import("../../utils/props").RequestParams>;
|
|
288
|
+
default?: import("../../utils/props").RequestParams;
|
|
484
289
|
};
|
|
485
290
|
requestSort: {
|
|
486
|
-
type?:
|
|
487
|
-
default?:
|
|
488
|
-
} | {
|
|
489
|
-
type: any;
|
|
490
|
-
default: any;
|
|
291
|
+
type?: import("vue").PropType<number>;
|
|
292
|
+
default?: number;
|
|
491
293
|
};
|
|
492
294
|
dataType: {
|
|
493
|
-
type?:
|
|
494
|
-
default?:
|
|
495
|
-
} | {
|
|
496
|
-
type: any;
|
|
497
|
-
default: any;
|
|
295
|
+
type?: import("vue").PropType<"indicator" | "static" | "request">;
|
|
296
|
+
default?: "indicator" | "static" | "request";
|
|
498
297
|
};
|
|
499
298
|
}, {
|
|
500
299
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
501
300
|
option: import("vue").ComputedRef<{
|
|
502
301
|
title: {
|
|
503
|
-
text:
|
|
504
|
-
subtext:
|
|
302
|
+
text: string;
|
|
303
|
+
subtext: string;
|
|
505
304
|
left: string;
|
|
506
305
|
};
|
|
507
306
|
toolbox: {
|
|
508
|
-
show:
|
|
509
|
-
left:
|
|
510
|
-
top:
|
|
511
|
-
itemSize:
|
|
512
|
-
itemGap:
|
|
307
|
+
show: boolean;
|
|
308
|
+
left: "left" | "center" | "right";
|
|
309
|
+
top: "top" | "bottom" | "middle";
|
|
310
|
+
itemSize: number;
|
|
311
|
+
itemGap: number;
|
|
513
312
|
feature: {
|
|
514
313
|
myDownload: {
|
|
515
314
|
show: boolean;
|
|
@@ -532,70 +331,70 @@ export declare const EcanComboGraph: import("../../utils/withInstall").SFCWithIn
|
|
|
532
331
|
};
|
|
533
332
|
};
|
|
534
333
|
grid: {
|
|
535
|
-
top:
|
|
536
|
-
bottom:
|
|
537
|
-
left:
|
|
538
|
-
right:
|
|
539
|
-
containLabel:
|
|
334
|
+
top: string;
|
|
335
|
+
bottom: string;
|
|
336
|
+
left: string;
|
|
337
|
+
right: string;
|
|
338
|
+
containLabel: boolean;
|
|
540
339
|
};
|
|
541
|
-
color:
|
|
340
|
+
color: string[];
|
|
542
341
|
legend: {
|
|
543
|
-
show:
|
|
544
|
-
orient:
|
|
545
|
-
top:
|
|
546
|
-
left:
|
|
342
|
+
show: boolean;
|
|
343
|
+
orient: "horizontal" | "vertical";
|
|
344
|
+
top: "top" | "bottom" | "middle";
|
|
345
|
+
left: "left" | "center" | "right";
|
|
547
346
|
textStyle: {
|
|
548
|
-
color:
|
|
347
|
+
color: string;
|
|
549
348
|
};
|
|
550
349
|
};
|
|
551
350
|
tooltip: {
|
|
552
351
|
trigger: string;
|
|
553
|
-
show:
|
|
352
|
+
show: boolean;
|
|
554
353
|
formatter: (params: any) => string;
|
|
555
354
|
textStyle: {
|
|
556
|
-
color:
|
|
355
|
+
color: string;
|
|
557
356
|
};
|
|
558
357
|
};
|
|
559
358
|
xAxis: {
|
|
560
|
-
minInterval:
|
|
359
|
+
minInterval: number;
|
|
561
360
|
type: string;
|
|
562
361
|
data: {
|
|
563
362
|
[x: string]: any;
|
|
564
363
|
}[];
|
|
565
364
|
splitLine: {
|
|
566
|
-
show:
|
|
365
|
+
show: boolean;
|
|
567
366
|
lineStyle: {
|
|
568
|
-
color:
|
|
367
|
+
color: string;
|
|
569
368
|
};
|
|
570
369
|
};
|
|
571
370
|
axisLabel: {
|
|
572
|
-
color:
|
|
371
|
+
color: string;
|
|
573
372
|
};
|
|
574
373
|
axisLine: {
|
|
575
374
|
lineStyle: {
|
|
576
|
-
color:
|
|
375
|
+
color: string;
|
|
577
376
|
};
|
|
578
377
|
};
|
|
579
378
|
axisTick: {
|
|
580
|
-
show:
|
|
379
|
+
show: boolean;
|
|
581
380
|
};
|
|
582
381
|
};
|
|
583
382
|
yAxis: {
|
|
584
383
|
type: string;
|
|
585
|
-
minInterval:
|
|
384
|
+
minInterval: number;
|
|
586
385
|
splitLine: {
|
|
587
|
-
show:
|
|
386
|
+
show: boolean;
|
|
588
387
|
lineStyle: {
|
|
589
|
-
color:
|
|
388
|
+
color: string;
|
|
590
389
|
};
|
|
591
390
|
};
|
|
592
391
|
axisLabel: {
|
|
593
|
-
color:
|
|
392
|
+
color: string;
|
|
594
393
|
formatter(value: string): string;
|
|
595
394
|
};
|
|
596
395
|
axisLine: {
|
|
597
396
|
lineStyle: {
|
|
598
|
-
color:
|
|
397
|
+
color: string;
|
|
599
398
|
};
|
|
600
399
|
};
|
|
601
400
|
}[];
|
|
@@ -609,501 +408,300 @@ export declare const EcanComboGraph: import("../../utils/withInstall").SFCWithIn
|
|
|
609
408
|
hideModal: () => void;
|
|
610
409
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
611
410
|
data: {
|
|
612
|
-
type?:
|
|
613
|
-
default?:
|
|
614
|
-
} | {
|
|
615
|
-
type: any;
|
|
616
|
-
default: any;
|
|
411
|
+
type?: import("vue").PropType<import("../../utils/props").Data>;
|
|
412
|
+
default?: import("../../utils/props").Data;
|
|
617
413
|
};
|
|
618
414
|
titleText: {
|
|
619
|
-
type?:
|
|
620
|
-
default?:
|
|
621
|
-
} | {
|
|
622
|
-
type: any;
|
|
623
|
-
default: any;
|
|
415
|
+
type?: import("vue").PropType<string>;
|
|
416
|
+
default?: string;
|
|
624
417
|
};
|
|
625
418
|
titleSubtext: {
|
|
626
|
-
type?:
|
|
627
|
-
default?:
|
|
628
|
-
} | {
|
|
629
|
-
type: any;
|
|
630
|
-
default: any;
|
|
419
|
+
type?: import("vue").PropType<string>;
|
|
420
|
+
default?: string;
|
|
631
421
|
};
|
|
632
422
|
colors: {
|
|
633
|
-
type?:
|
|
634
|
-
default?:
|
|
635
|
-
} | {
|
|
636
|
-
type: any;
|
|
637
|
-
default: any;
|
|
423
|
+
type?: import("vue").PropType<string[]>;
|
|
424
|
+
default?: string[];
|
|
638
425
|
};
|
|
639
426
|
legendShow: {
|
|
640
|
-
type?:
|
|
641
|
-
default?:
|
|
642
|
-
} | {
|
|
643
|
-
type: any;
|
|
644
|
-
default: any;
|
|
427
|
+
type?: import("vue").PropType<boolean>;
|
|
428
|
+
default?: boolean;
|
|
645
429
|
};
|
|
646
430
|
legendTextStyleColor: {
|
|
647
|
-
type?:
|
|
648
|
-
default?:
|
|
649
|
-
} | {
|
|
650
|
-
type: any;
|
|
651
|
-
default: any;
|
|
431
|
+
type?: import("vue").PropType<string>;
|
|
432
|
+
default?: string;
|
|
652
433
|
};
|
|
653
434
|
legendLeft: {
|
|
654
|
-
type?:
|
|
655
|
-
default?:
|
|
656
|
-
} | {
|
|
657
|
-
type: any;
|
|
658
|
-
default: any;
|
|
435
|
+
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
436
|
+
default?: "left" | "center" | "right";
|
|
659
437
|
};
|
|
660
438
|
legendTop: {
|
|
661
|
-
type?:
|
|
662
|
-
default?:
|
|
663
|
-
} | {
|
|
664
|
-
type: any;
|
|
665
|
-
default: any;
|
|
439
|
+
type?: import("vue").PropType<"top" | "bottom" | "middle">;
|
|
440
|
+
default?: "top" | "bottom" | "middle";
|
|
666
441
|
};
|
|
667
442
|
legendOrient: {
|
|
668
|
-
type?:
|
|
669
|
-
default?:
|
|
670
|
-
} | {
|
|
671
|
-
type: any;
|
|
672
|
-
default: any;
|
|
443
|
+
type?: import("vue").PropType<"horizontal" | "vertical">;
|
|
444
|
+
default?: "horizontal" | "vertical";
|
|
673
445
|
};
|
|
674
446
|
xAxisSplitLineShow: {
|
|
675
|
-
type?:
|
|
676
|
-
default?:
|
|
677
|
-
} | {
|
|
678
|
-
type: any;
|
|
679
|
-
default: any;
|
|
447
|
+
type?: import("vue").PropType<boolean>;
|
|
448
|
+
default?: boolean;
|
|
680
449
|
};
|
|
681
450
|
xAxisMinInterval: {
|
|
682
|
-
type?:
|
|
683
|
-
default?:
|
|
684
|
-
} | {
|
|
685
|
-
type: any;
|
|
686
|
-
default: any;
|
|
451
|
+
type?: import("vue").PropType<number>;
|
|
452
|
+
default?: number;
|
|
687
453
|
};
|
|
688
454
|
xAxisLabelColor: {
|
|
689
|
-
type?:
|
|
690
|
-
default?:
|
|
691
|
-
} | {
|
|
692
|
-
type: any;
|
|
693
|
-
default: any;
|
|
455
|
+
type?: import("vue").PropType<string>;
|
|
456
|
+
default?: string;
|
|
694
457
|
};
|
|
695
458
|
xAxisLineStyleColor: {
|
|
696
|
-
type?:
|
|
697
|
-
default?:
|
|
698
|
-
} | {
|
|
699
|
-
type: any;
|
|
700
|
-
default: any;
|
|
459
|
+
type?: import("vue").PropType<string>;
|
|
460
|
+
default?: string;
|
|
701
461
|
};
|
|
702
462
|
xAxisTickShow: {
|
|
703
|
-
type?:
|
|
704
|
-
default?:
|
|
705
|
-
} | {
|
|
706
|
-
type: any;
|
|
707
|
-
default: any;
|
|
463
|
+
type?: import("vue").PropType<boolean>;
|
|
464
|
+
default?: boolean;
|
|
708
465
|
};
|
|
709
466
|
yAxisSplitLineShow: {
|
|
710
|
-
type?:
|
|
711
|
-
default?:
|
|
712
|
-
} | {
|
|
713
|
-
type: any;
|
|
714
|
-
default: any;
|
|
467
|
+
type?: import("vue").PropType<boolean>;
|
|
468
|
+
default?: boolean;
|
|
715
469
|
};
|
|
716
470
|
xAxisSplitLineStyleColor: {
|
|
717
|
-
type?:
|
|
718
|
-
default?:
|
|
719
|
-
} | {
|
|
720
|
-
type: any;
|
|
721
|
-
default: any;
|
|
471
|
+
type?: import("vue").PropType<string>;
|
|
472
|
+
default?: string;
|
|
722
473
|
};
|
|
723
474
|
yAxisSplitLineStyleColor: {
|
|
724
|
-
type?:
|
|
725
|
-
default?:
|
|
726
|
-
} | {
|
|
727
|
-
type: any;
|
|
728
|
-
default: any;
|
|
475
|
+
type?: import("vue").PropType<string>;
|
|
476
|
+
default?: string;
|
|
729
477
|
};
|
|
730
478
|
yAxisLabelColor: {
|
|
731
|
-
type?:
|
|
732
|
-
default?:
|
|
733
|
-
} | {
|
|
734
|
-
type: any;
|
|
735
|
-
default: any;
|
|
479
|
+
type?: import("vue").PropType<string>;
|
|
480
|
+
default?: string;
|
|
736
481
|
};
|
|
737
482
|
yAxisLineStyleColor: {
|
|
738
|
-
type?:
|
|
739
|
-
default?:
|
|
740
|
-
} | {
|
|
741
|
-
type: any;
|
|
742
|
-
default: any;
|
|
483
|
+
type?: import("vue").PropType<string>;
|
|
484
|
+
default?: string;
|
|
743
485
|
};
|
|
744
486
|
valueTypeDataFieldNames: {
|
|
745
|
-
type?:
|
|
746
|
-
default?:
|
|
747
|
-
} | {
|
|
748
|
-
type: any;
|
|
749
|
-
default: any;
|
|
487
|
+
type?: import("vue").PropType<import("../../utils/props").ValueTypeDataFieldNames>;
|
|
488
|
+
default?: import("../../utils/props").ValueTypeDataFieldNames;
|
|
750
489
|
};
|
|
751
490
|
keyTypeDataFieldNames: {
|
|
752
|
-
type?:
|
|
753
|
-
default?:
|
|
754
|
-
} | {
|
|
755
|
-
type: any;
|
|
756
|
-
default: any;
|
|
491
|
+
type?: import("vue").PropType<import("../../utils/props").KeyTypeDataFieldNames>;
|
|
492
|
+
default?: import("../../utils/props").KeyTypeDataFieldNames;
|
|
757
493
|
};
|
|
758
494
|
tooltipShow: {
|
|
759
|
-
type?:
|
|
760
|
-
default?:
|
|
761
|
-
} | {
|
|
762
|
-
type: any;
|
|
763
|
-
default: any;
|
|
495
|
+
type?: import("vue").PropType<boolean>;
|
|
496
|
+
default?: boolean;
|
|
764
497
|
};
|
|
765
498
|
tooltipTrigger: {
|
|
766
|
-
type?:
|
|
767
|
-
default?:
|
|
768
|
-
} | {
|
|
769
|
-
type: any;
|
|
770
|
-
default: any;
|
|
499
|
+
type?: import("vue").PropType<"none" | "axis" | "item">;
|
|
500
|
+
default?: "none" | "axis" | "item";
|
|
771
501
|
};
|
|
772
502
|
tooltipTextStyleColor: {
|
|
773
|
-
type?:
|
|
774
|
-
default?:
|
|
775
|
-
} | {
|
|
776
|
-
type: any;
|
|
777
|
-
default: any;
|
|
503
|
+
type?: import("vue").PropType<string>;
|
|
504
|
+
default?: string;
|
|
778
505
|
};
|
|
779
506
|
tooltipFormatter: {
|
|
780
|
-
type?:
|
|
781
|
-
default?:
|
|
782
|
-
} | {
|
|
783
|
-
type: any;
|
|
784
|
-
default: any;
|
|
507
|
+
type?: import("vue").PropType<string>;
|
|
508
|
+
default?: string;
|
|
785
509
|
};
|
|
786
510
|
seriesTypes: {
|
|
787
|
-
type?:
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
511
|
+
type?: import("vue").PropType<{
|
|
512
|
+
[key: string]: any;
|
|
513
|
+
}[]>;
|
|
514
|
+
default?: {
|
|
515
|
+
[key: string]: any;
|
|
516
|
+
}[];
|
|
792
517
|
};
|
|
793
518
|
dataFieldConfigType: {
|
|
794
|
-
type?:
|
|
795
|
-
default?:
|
|
796
|
-
} | {
|
|
797
|
-
type: any;
|
|
798
|
-
default: any;
|
|
519
|
+
type?: import("vue").PropType<"value" | "key">;
|
|
520
|
+
default?: "value" | "key";
|
|
799
521
|
};
|
|
800
522
|
yAxis: {
|
|
801
|
-
type?:
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
523
|
+
type?: import("vue").PropType<{
|
|
524
|
+
[key: string]: any;
|
|
525
|
+
}[]>;
|
|
526
|
+
default?: {
|
|
527
|
+
[key: string]: any;
|
|
528
|
+
}[];
|
|
806
529
|
};
|
|
807
530
|
yAxisMinInterval: {
|
|
808
|
-
type?:
|
|
809
|
-
default?:
|
|
810
|
-
} | {
|
|
811
|
-
type: any;
|
|
812
|
-
default: any;
|
|
531
|
+
type?: import("vue").PropType<number>;
|
|
532
|
+
default?: number;
|
|
813
533
|
};
|
|
814
534
|
graphicConfig?: {
|
|
815
|
-
type?:
|
|
816
|
-
default?:
|
|
817
|
-
} | {
|
|
818
|
-
type: any;
|
|
819
|
-
default: any;
|
|
535
|
+
type?: import("vue").PropType<any>;
|
|
536
|
+
default?: any;
|
|
820
537
|
};
|
|
821
538
|
gridContainLabel: {
|
|
822
|
-
type?:
|
|
823
|
-
default?:
|
|
824
|
-
} | {
|
|
825
|
-
type: any;
|
|
826
|
-
default: any;
|
|
539
|
+
type?: import("vue").PropType<boolean>;
|
|
540
|
+
default?: boolean;
|
|
827
541
|
};
|
|
828
542
|
gridTop: {
|
|
829
|
-
type?:
|
|
830
|
-
default?:
|
|
831
|
-
} | {
|
|
832
|
-
type: any;
|
|
833
|
-
default: any;
|
|
543
|
+
type?: import("vue").PropType<string>;
|
|
544
|
+
default?: string;
|
|
834
545
|
};
|
|
835
546
|
gridBottom: {
|
|
836
|
-
type?:
|
|
837
|
-
default?:
|
|
838
|
-
} | {
|
|
839
|
-
type: any;
|
|
840
|
-
default: any;
|
|
547
|
+
type?: import("vue").PropType<string>;
|
|
548
|
+
default?: string;
|
|
841
549
|
};
|
|
842
550
|
gridLeft: {
|
|
843
|
-
type?:
|
|
844
|
-
default?:
|
|
845
|
-
} | {
|
|
846
|
-
type: any;
|
|
847
|
-
default: any;
|
|
551
|
+
type?: import("vue").PropType<string>;
|
|
552
|
+
default?: string;
|
|
848
553
|
};
|
|
849
554
|
gridRight: {
|
|
850
|
-
type?:
|
|
851
|
-
default?:
|
|
852
|
-
} | {
|
|
853
|
-
type: any;
|
|
854
|
-
default: any;
|
|
555
|
+
type?: import("vue").PropType<string>;
|
|
556
|
+
default?: string;
|
|
855
557
|
};
|
|
856
558
|
toolboxShow: {
|
|
857
|
-
type?:
|
|
858
|
-
default?:
|
|
859
|
-
} | {
|
|
860
|
-
type: any;
|
|
861
|
-
default: any;
|
|
559
|
+
type?: import("vue").PropType<boolean>;
|
|
560
|
+
default?: boolean;
|
|
862
561
|
};
|
|
863
562
|
toolboxOrient: {
|
|
864
|
-
type?:
|
|
865
|
-
default?:
|
|
866
|
-
} | {
|
|
867
|
-
type: any;
|
|
868
|
-
default: any;
|
|
563
|
+
type?: import("vue").PropType<"horizontal" | "vertical">;
|
|
564
|
+
default?: "horizontal" | "vertical";
|
|
869
565
|
};
|
|
870
566
|
toolboxItemSize: {
|
|
871
|
-
type?:
|
|
872
|
-
default?:
|
|
873
|
-
} | {
|
|
874
|
-
type: any;
|
|
875
|
-
default: any;
|
|
567
|
+
type?: import("vue").PropType<number>;
|
|
568
|
+
default?: number;
|
|
876
569
|
};
|
|
877
570
|
toolboxItemGap: {
|
|
878
|
-
type?:
|
|
879
|
-
default?:
|
|
880
|
-
} | {
|
|
881
|
-
type: any;
|
|
882
|
-
default: any;
|
|
571
|
+
type?: import("vue").PropType<number>;
|
|
572
|
+
default?: number;
|
|
883
573
|
};
|
|
884
574
|
toolboxLeft: {
|
|
885
|
-
type?:
|
|
886
|
-
default?:
|
|
887
|
-
} | {
|
|
888
|
-
type: any;
|
|
889
|
-
default: any;
|
|
575
|
+
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
576
|
+
default?: "left" | "center" | "right";
|
|
890
577
|
};
|
|
891
578
|
toolboxTop: {
|
|
892
|
-
type?:
|
|
893
|
-
default?:
|
|
894
|
-
} | {
|
|
895
|
-
type: any;
|
|
896
|
-
default: any;
|
|
579
|
+
type?: import("vue").PropType<"top" | "bottom" | "middle">;
|
|
580
|
+
default?: "top" | "bottom" | "middle";
|
|
897
581
|
};
|
|
898
582
|
toolboxIconStyleBorderColor: {
|
|
899
|
-
type?:
|
|
900
|
-
default?:
|
|
901
|
-
} | {
|
|
902
|
-
type: any;
|
|
903
|
-
default: any;
|
|
583
|
+
type?: import("vue").PropType<string>;
|
|
584
|
+
default?: string;
|
|
904
585
|
};
|
|
905
586
|
toolboxDownloadUrl: {
|
|
906
|
-
type?:
|
|
907
|
-
default?:
|
|
908
|
-
} | {
|
|
909
|
-
type: any;
|
|
910
|
-
default: any;
|
|
587
|
+
type?: import("vue").PropType<string>;
|
|
588
|
+
default?: string;
|
|
911
589
|
};
|
|
912
590
|
toolboxInfoText: {
|
|
913
|
-
type?:
|
|
914
|
-
default?:
|
|
915
|
-
} | {
|
|
916
|
-
type: any;
|
|
917
|
-
default: any;
|
|
591
|
+
type?: import("vue").PropType<string>;
|
|
592
|
+
default?: string;
|
|
918
593
|
};
|
|
919
594
|
symbolSize: {
|
|
920
|
-
type?:
|
|
921
|
-
default?:
|
|
922
|
-
} | {
|
|
923
|
-
type: any;
|
|
924
|
-
default: any;
|
|
595
|
+
type?: import("vue").PropType<number>;
|
|
596
|
+
default?: number;
|
|
925
597
|
};
|
|
926
598
|
lineStyleWidth: {
|
|
927
|
-
type?:
|
|
928
|
-
default?:
|
|
929
|
-
} | {
|
|
930
|
-
type: any;
|
|
931
|
-
default: any;
|
|
599
|
+
type?: import("vue").PropType<number>;
|
|
600
|
+
default?: number;
|
|
932
601
|
};
|
|
933
602
|
smooth: {
|
|
934
|
-
type?:
|
|
935
|
-
default?:
|
|
936
|
-
} | {
|
|
937
|
-
type: any;
|
|
938
|
-
default: any;
|
|
603
|
+
type?: import("vue").PropType<boolean>;
|
|
604
|
+
default?: boolean;
|
|
939
605
|
};
|
|
940
606
|
areaStyleOpacity: {
|
|
941
|
-
type?:
|
|
942
|
-
default?:
|
|
943
|
-
} | {
|
|
944
|
-
type: any;
|
|
945
|
-
default: any;
|
|
607
|
+
type?: import("vue").PropType<number>;
|
|
608
|
+
default?: number;
|
|
946
609
|
};
|
|
947
610
|
barWidth: {
|
|
948
|
-
type?:
|
|
949
|
-
default?:
|
|
950
|
-
} | {
|
|
951
|
-
type: any;
|
|
952
|
-
default: any;
|
|
611
|
+
type?: import("vue").PropType<string>;
|
|
612
|
+
default?: string;
|
|
953
613
|
};
|
|
954
614
|
id: {
|
|
955
|
-
type?:
|
|
956
|
-
default?:
|
|
957
|
-
} | {
|
|
958
|
-
type: any;
|
|
959
|
-
default: any;
|
|
615
|
+
type?: import("vue").PropType<string>;
|
|
616
|
+
default?: string;
|
|
960
617
|
};
|
|
961
618
|
name: {
|
|
962
|
-
type?:
|
|
963
|
-
default?:
|
|
964
|
-
} | {
|
|
965
|
-
type: any;
|
|
966
|
-
default: any;
|
|
619
|
+
type?: import("vue").PropType<string>;
|
|
620
|
+
default?: string;
|
|
967
621
|
};
|
|
968
622
|
keyName: {
|
|
969
|
-
type?:
|
|
970
|
-
default?:
|
|
971
|
-
} | {
|
|
972
|
-
type: any;
|
|
973
|
-
default: any;
|
|
623
|
+
type?: import("vue").PropType<string>;
|
|
624
|
+
default?: string;
|
|
974
625
|
};
|
|
975
626
|
type: {
|
|
976
|
-
type?:
|
|
977
|
-
default?:
|
|
978
|
-
} | {
|
|
979
|
-
type: any;
|
|
980
|
-
default: any;
|
|
627
|
+
type?: import("vue").PropType<string>;
|
|
628
|
+
default?: string;
|
|
981
629
|
};
|
|
982
630
|
width: {
|
|
983
|
-
type?:
|
|
984
|
-
default?:
|
|
985
|
-
} | {
|
|
986
|
-
type: any;
|
|
987
|
-
default: any;
|
|
631
|
+
type?: import("vue").PropType<string>;
|
|
632
|
+
default?: string;
|
|
988
633
|
};
|
|
989
634
|
height: {
|
|
990
|
-
type?:
|
|
991
|
-
default?:
|
|
992
|
-
} | {
|
|
993
|
-
type: any;
|
|
994
|
-
default: any;
|
|
635
|
+
type?: import("vue").PropType<string>;
|
|
636
|
+
default?: string;
|
|
995
637
|
};
|
|
996
638
|
position: {
|
|
997
|
-
type?:
|
|
998
|
-
default?:
|
|
999
|
-
} | {
|
|
1000
|
-
type: any;
|
|
1001
|
-
default: any;
|
|
639
|
+
type?: import("vue").PropType<string>;
|
|
640
|
+
default?: string;
|
|
1002
641
|
};
|
|
1003
642
|
top: {
|
|
1004
|
-
type?:
|
|
1005
|
-
default?:
|
|
1006
|
-
} | {
|
|
1007
|
-
type: any;
|
|
1008
|
-
default: any;
|
|
643
|
+
type?: import("vue").PropType<string>;
|
|
644
|
+
default?: string;
|
|
1009
645
|
};
|
|
1010
646
|
left: {
|
|
1011
|
-
type?:
|
|
1012
|
-
default?:
|
|
1013
|
-
} | {
|
|
1014
|
-
type: any;
|
|
1015
|
-
default: any;
|
|
647
|
+
type?: import("vue").PropType<string>;
|
|
648
|
+
default?: string;
|
|
1016
649
|
};
|
|
1017
650
|
zIndex: {
|
|
1018
|
-
type?:
|
|
1019
|
-
default?:
|
|
1020
|
-
} | {
|
|
1021
|
-
type: any;
|
|
1022
|
-
default: any;
|
|
651
|
+
type?: import("vue").PropType<number>;
|
|
652
|
+
default?: number;
|
|
1023
653
|
};
|
|
1024
654
|
rotate: {
|
|
1025
|
-
type?:
|
|
1026
|
-
default?:
|
|
1027
|
-
} | {
|
|
1028
|
-
type: any;
|
|
1029
|
-
default: any;
|
|
655
|
+
type?: import("vue").PropType<string>;
|
|
656
|
+
default?: string;
|
|
1030
657
|
};
|
|
1031
658
|
isShow: {
|
|
1032
|
-
type?:
|
|
1033
|
-
default?:
|
|
1034
|
-
} | {
|
|
1035
|
-
type: any;
|
|
1036
|
-
default: any;
|
|
659
|
+
type?: import("vue").PropType<boolean>;
|
|
660
|
+
default?: boolean;
|
|
1037
661
|
};
|
|
1038
662
|
isRender: {
|
|
1039
|
-
type?:
|
|
1040
|
-
default?:
|
|
1041
|
-
} | {
|
|
1042
|
-
type: any;
|
|
1043
|
-
default: any;
|
|
663
|
+
type?: import("vue").PropType<boolean>;
|
|
664
|
+
default?: boolean;
|
|
1044
665
|
};
|
|
1045
666
|
events: {
|
|
1046
|
-
type?:
|
|
1047
|
-
default?:
|
|
1048
|
-
} | {
|
|
1049
|
-
type: any;
|
|
1050
|
-
default: any;
|
|
667
|
+
type?: import("vue").PropType<import("../../utils/props").Events>;
|
|
668
|
+
default?: import("../../utils/props").Events;
|
|
1051
669
|
};
|
|
1052
670
|
requestUrl: {
|
|
1053
|
-
type?:
|
|
1054
|
-
default?:
|
|
1055
|
-
} | {
|
|
1056
|
-
type: any;
|
|
1057
|
-
default: any;
|
|
671
|
+
type?: import("vue").PropType<string>;
|
|
672
|
+
default?: string;
|
|
1058
673
|
};
|
|
1059
674
|
requestMethod: {
|
|
1060
|
-
type?:
|
|
1061
|
-
default?:
|
|
1062
|
-
} | {
|
|
1063
|
-
type: any;
|
|
1064
|
-
default: any;
|
|
675
|
+
type?: import("vue").PropType<import("../../utils/props").RequestMethod>;
|
|
676
|
+
default?: import("../../utils/props").RequestMethod;
|
|
1065
677
|
};
|
|
1066
678
|
requestHeaders: {
|
|
1067
|
-
type?:
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
679
|
+
type?: import("vue").PropType<{
|
|
680
|
+
[key: string]: any;
|
|
681
|
+
}>;
|
|
682
|
+
default?: {
|
|
683
|
+
[key: string]: any;
|
|
684
|
+
};
|
|
1072
685
|
};
|
|
1073
686
|
isOpenRequestTimer: {
|
|
1074
|
-
type?:
|
|
1075
|
-
default?:
|
|
1076
|
-
} | {
|
|
1077
|
-
type: any;
|
|
1078
|
-
default: any;
|
|
687
|
+
type?: import("vue").PropType<boolean>;
|
|
688
|
+
default?: boolean;
|
|
1079
689
|
};
|
|
1080
690
|
requestInterval: {
|
|
1081
|
-
type?:
|
|
1082
|
-
default?:
|
|
1083
|
-
} | {
|
|
1084
|
-
type: any;
|
|
1085
|
-
default: any;
|
|
691
|
+
type?: import("vue").PropType<number>;
|
|
692
|
+
default?: number;
|
|
1086
693
|
};
|
|
1087
694
|
requestParams: {
|
|
1088
|
-
type?:
|
|
1089
|
-
default?:
|
|
1090
|
-
} | {
|
|
1091
|
-
type: any;
|
|
1092
|
-
default: any;
|
|
695
|
+
type?: import("vue").PropType<import("../../utils/props").RequestParams>;
|
|
696
|
+
default?: import("../../utils/props").RequestParams;
|
|
1093
697
|
};
|
|
1094
698
|
requestSort: {
|
|
1095
|
-
type?:
|
|
1096
|
-
default?:
|
|
1097
|
-
} | {
|
|
1098
|
-
type: any;
|
|
1099
|
-
default: any;
|
|
699
|
+
type?: import("vue").PropType<number>;
|
|
700
|
+
default?: number;
|
|
1100
701
|
};
|
|
1101
702
|
dataType: {
|
|
1102
|
-
type?:
|
|
1103
|
-
default?:
|
|
1104
|
-
} | {
|
|
1105
|
-
type: any;
|
|
1106
|
-
default: any;
|
|
703
|
+
type?: import("vue").PropType<"indicator" | "static" | "request">;
|
|
704
|
+
default?: "indicator" | "static" | "request";
|
|
1107
705
|
};
|
|
1108
706
|
}>>, {}>> & Record<string, any>;
|
|
1109
707
|
export default EcanComboGraph;
|