@ecan-bi/datav 1.0.15 → 1.0.16
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/_utils/constant.d.ts +1 -1
- package/dist/_utils/hooks/index.d.ts +1 -1
- package/dist/_utils/hooks/usePickEchartsData.d.ts +1 -1
- package/dist/_utils/hooks/useRequestData.d.ts +5 -13
- package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +12 -3
- package/dist/_utils/props.d.ts +1 -1
- package/dist/_utils/util.d.ts +14 -0
- package/dist/common/echarts/ECharts.d.ts +1 -0
- package/dist/container/border/props.d.ts +67 -57
- package/dist/container/index.d.ts +1 -0
- package/dist/container/modal/Modal.vue.d.ts +47 -31
- package/dist/container/modal/props.d.ts +29 -18
- package/dist/container/tabs/Tabs.vue.d.ts +271 -0
- package/dist/container/tabs/index.d.ts +3 -0
- package/dist/container/tabs/props.d.ts +219 -0
- package/dist/control/button/Button.vue.d.ts +53 -53
- package/dist/control/button/props.d.ts +49 -49
- package/dist/control/date-picker/DatePicker.vue.d.ts +61 -61
- package/dist/control/date-picker/props.d.ts +7 -7
- package/dist/control/input/Input.vue.d.ts +59 -59
- package/dist/control/input/props.d.ts +53 -53
- package/dist/control/range-picker/RangePicker.vue.d.ts +55 -55
- package/dist/control/range-picker/props.d.ts +51 -51
- package/dist/control/select/Select.vue.d.ts +65 -61
- package/dist/control/select/props.d.ts +53 -53
- package/dist/graph/bar/Bar.vue.d.ts +304 -57
- package/dist/graph/bar/props.d.ts +277 -49
- package/dist/graph/custom-graph/CustomGraph.vue.d.ts +57 -57
- package/dist/graph/custom-graph/props.d.ts +53 -53
- package/dist/graph/line/Line.vue.d.ts +286 -109
- package/dist/graph/line/props.d.ts +235 -49
- package/dist/graph/pie/Pie.vue.d.ts +332 -114
- package/dist/graph/pie/props.d.ts +279 -57
- package/dist/graph/scatter/Scatter.vue.d.ts +157 -209
- package/dist/graph/scatter/props.d.ts +148 -123
- package/dist/index.esm.js +2 -2
- package/dist/index.umd.js +2 -2
- package/dist/media/image/Image.vue.d.ts +55 -55
- package/dist/media/image/props.d.ts +51 -51
- package/dist/table/table/Table.vue.d.ts +208 -67
- package/dist/table/table/props.d.ts +160 -62
- package/dist/text/index.d.ts +2 -0
- package/dist/text/list/List.vue.d.ts +471 -0
- package/dist/text/list/index.d.ts +3 -0
- package/dist/text/list/props.d.ts +367 -0
- package/dist/text/text/Text.vue.d.ts +132 -43
- package/dist/text/text/props.d.ts +122 -38
- package/dist/text/time-display/TimeDisplay.vue.d.ts +385 -0
- package/dist/text/time-display/index.d.ts +3 -0
- package/dist/text/time-display/props.d.ts +275 -0
- package/package.json +1 -1
- package/dist/_utils/hooks/useRequestParams.d.ts +0 -5
- package/dist/_utils/request.d.ts +0 -2
|
@@ -1,381 +1,563 @@
|
|
|
1
|
+
import { Events } from 'src/_utils/props';
|
|
1
2
|
declare const _default: import("vue").DefineComponent<{
|
|
2
3
|
data: {
|
|
3
4
|
type?: undefined;
|
|
4
5
|
default?: undefined;
|
|
5
6
|
} | {
|
|
6
7
|
type: any;
|
|
7
|
-
default: string | number | boolean | string[] | import("
|
|
8
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
9
|
+
name: string;
|
|
10
|
+
value: string;
|
|
11
|
+
type: string;
|
|
12
|
+
} | Events | {
|
|
8
13
|
[key: string]: any;
|
|
9
|
-
} | import("
|
|
14
|
+
} | import("src/_utils/props").RequestParams;
|
|
10
15
|
};
|
|
11
16
|
titleText: {
|
|
12
17
|
type?: undefined;
|
|
13
18
|
default?: undefined;
|
|
14
19
|
} | {
|
|
15
20
|
type: any;
|
|
16
|
-
default: string | number | boolean | string[] | import("
|
|
21
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
22
|
+
name: string;
|
|
23
|
+
value: string;
|
|
24
|
+
type: string;
|
|
25
|
+
} | Events | {
|
|
17
26
|
[key: string]: any;
|
|
18
|
-
} | import("
|
|
27
|
+
} | import("src/_utils/props").RequestParams;
|
|
19
28
|
};
|
|
20
29
|
titleSubtext: {
|
|
21
30
|
type?: undefined;
|
|
22
31
|
default?: undefined;
|
|
23
32
|
} | {
|
|
24
33
|
type: any;
|
|
25
|
-
default: string | number | boolean | string[] | import("
|
|
34
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
35
|
+
name: string;
|
|
36
|
+
value: string;
|
|
37
|
+
type: string;
|
|
38
|
+
} | Events | {
|
|
26
39
|
[key: string]: any;
|
|
27
|
-
} | import("
|
|
40
|
+
} | import("src/_utils/props").RequestParams;
|
|
28
41
|
};
|
|
29
42
|
titleLeft: {
|
|
30
43
|
type?: undefined;
|
|
31
44
|
default?: undefined;
|
|
32
45
|
} | {
|
|
33
46
|
type: any;
|
|
34
|
-
default: string | number | boolean | string[] | import("
|
|
47
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
48
|
+
name: string;
|
|
49
|
+
value: string;
|
|
50
|
+
type: string;
|
|
51
|
+
} | Events | {
|
|
35
52
|
[key: string]: any;
|
|
36
|
-
} | import("
|
|
53
|
+
} | import("src/_utils/props").RequestParams;
|
|
37
54
|
};
|
|
38
55
|
colors: {
|
|
39
56
|
type?: undefined;
|
|
40
57
|
default?: undefined;
|
|
41
58
|
} | {
|
|
42
59
|
type: any;
|
|
43
|
-
default: string | number | boolean | string[] | import("
|
|
60
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
61
|
+
name: string;
|
|
62
|
+
value: string;
|
|
63
|
+
type: string;
|
|
64
|
+
} | Events | {
|
|
44
65
|
[key: string]: any;
|
|
45
|
-
} | import("
|
|
66
|
+
} | import("src/_utils/props").RequestParams;
|
|
46
67
|
};
|
|
47
68
|
legendShow: {
|
|
48
69
|
type?: undefined;
|
|
49
70
|
default?: undefined;
|
|
50
71
|
} | {
|
|
51
72
|
type: any;
|
|
52
|
-
default: string | number | boolean | string[] | import("
|
|
73
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
74
|
+
name: string;
|
|
75
|
+
value: string;
|
|
76
|
+
type: string;
|
|
77
|
+
} | Events | {
|
|
53
78
|
[key: string]: any;
|
|
54
|
-
} | import("
|
|
79
|
+
} | import("src/_utils/props").RequestParams;
|
|
55
80
|
};
|
|
56
81
|
legendLeft: {
|
|
57
82
|
type?: undefined;
|
|
58
83
|
default?: undefined;
|
|
59
84
|
} | {
|
|
60
85
|
type: any;
|
|
61
|
-
default: string | number | boolean | string[] | import("
|
|
86
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
87
|
+
name: string;
|
|
88
|
+
value: string;
|
|
89
|
+
type: string;
|
|
90
|
+
} | Events | {
|
|
62
91
|
[key: string]: any;
|
|
63
|
-
} | import("
|
|
92
|
+
} | import("src/_utils/props").RequestParams;
|
|
64
93
|
};
|
|
65
94
|
legendTop: {
|
|
66
95
|
type?: undefined;
|
|
67
96
|
default?: undefined;
|
|
68
97
|
} | {
|
|
69
98
|
type: any;
|
|
70
|
-
default: string | number | boolean | string[] | import("
|
|
99
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
100
|
+
name: string;
|
|
101
|
+
value: string;
|
|
102
|
+
type: string;
|
|
103
|
+
} | Events | {
|
|
71
104
|
[key: string]: any;
|
|
72
|
-
} | import("
|
|
105
|
+
} | import("src/_utils/props").RequestParams;
|
|
73
106
|
};
|
|
74
107
|
legendOrient: {
|
|
75
108
|
type?: undefined;
|
|
76
109
|
default?: undefined;
|
|
77
110
|
} | {
|
|
78
111
|
type: any;
|
|
79
|
-
default: string | number | boolean | string[] | import("
|
|
112
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
113
|
+
name: string;
|
|
114
|
+
value: string;
|
|
115
|
+
type: string;
|
|
116
|
+
} | Events | {
|
|
80
117
|
[key: string]: any;
|
|
81
|
-
} | import("
|
|
118
|
+
} | import("src/_utils/props").RequestParams;
|
|
82
119
|
};
|
|
83
120
|
symbolSize: {
|
|
84
121
|
type?: undefined;
|
|
85
122
|
default?: undefined;
|
|
86
123
|
} | {
|
|
87
124
|
type: any;
|
|
88
|
-
default: string | number | boolean | string[] | import("
|
|
125
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
126
|
+
name: string;
|
|
127
|
+
value: string;
|
|
128
|
+
type: string;
|
|
129
|
+
} | Events | {
|
|
89
130
|
[key: string]: any;
|
|
90
|
-
} | import("
|
|
131
|
+
} | import("src/_utils/props").RequestParams;
|
|
91
132
|
};
|
|
92
133
|
lineStyleWidth: {
|
|
93
134
|
type?: undefined;
|
|
94
135
|
default?: undefined;
|
|
95
136
|
} | {
|
|
96
137
|
type: any;
|
|
97
|
-
default: string | number | boolean | string[] | import("
|
|
138
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
139
|
+
name: string;
|
|
140
|
+
value: string;
|
|
141
|
+
type: string;
|
|
142
|
+
} | Events | {
|
|
98
143
|
[key: string]: any;
|
|
99
|
-
} | import("
|
|
144
|
+
} | import("src/_utils/props").RequestParams;
|
|
100
145
|
};
|
|
101
146
|
smooth: {
|
|
102
147
|
type?: undefined;
|
|
103
148
|
default?: undefined;
|
|
104
149
|
} | {
|
|
105
150
|
type: any;
|
|
106
|
-
default: string | number | boolean | string[] | import("
|
|
151
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
152
|
+
name: string;
|
|
153
|
+
value: string;
|
|
154
|
+
type: string;
|
|
155
|
+
} | Events | {
|
|
107
156
|
[key: string]: any;
|
|
108
|
-
} | import("
|
|
157
|
+
} | import("src/_utils/props").RequestParams;
|
|
109
158
|
};
|
|
110
159
|
xAxisSplitLineShow: {
|
|
111
160
|
type?: undefined;
|
|
112
161
|
default?: undefined;
|
|
113
162
|
} | {
|
|
114
163
|
type: any;
|
|
115
|
-
default: string | number | boolean | string[] | import("
|
|
164
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
165
|
+
name: string;
|
|
166
|
+
value: string;
|
|
167
|
+
type: string;
|
|
168
|
+
} | Events | {
|
|
116
169
|
[key: string]: any;
|
|
117
|
-
} | import("
|
|
170
|
+
} | import("src/_utils/props").RequestParams;
|
|
118
171
|
};
|
|
119
172
|
xAxisLabelColor: {
|
|
120
173
|
type?: undefined;
|
|
121
174
|
default?: undefined;
|
|
122
175
|
} | {
|
|
123
176
|
type: any;
|
|
124
|
-
default: string | number | boolean | string[] | import("
|
|
177
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
178
|
+
name: string;
|
|
179
|
+
value: string;
|
|
180
|
+
type: string;
|
|
181
|
+
} | Events | {
|
|
125
182
|
[key: string]: any;
|
|
126
|
-
} | import("
|
|
183
|
+
} | import("src/_utils/props").RequestParams;
|
|
127
184
|
};
|
|
128
185
|
xAxisLineStyleColor: {
|
|
129
186
|
type?: undefined;
|
|
130
187
|
default?: undefined;
|
|
131
188
|
} | {
|
|
132
189
|
type: any;
|
|
133
|
-
default: string | number | boolean | string[] | import("
|
|
190
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
191
|
+
name: string;
|
|
192
|
+
value: string;
|
|
193
|
+
type: string;
|
|
194
|
+
} | Events | {
|
|
134
195
|
[key: string]: any;
|
|
135
|
-
} | import("
|
|
196
|
+
} | import("src/_utils/props").RequestParams;
|
|
136
197
|
};
|
|
137
198
|
xAxisSplitLineStyleColor: {
|
|
138
199
|
type?: undefined;
|
|
139
200
|
default?: undefined;
|
|
140
201
|
} | {
|
|
141
202
|
type: any;
|
|
142
|
-
default: string | number | boolean | string[] | import("
|
|
203
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
204
|
+
name: string;
|
|
205
|
+
value: string;
|
|
206
|
+
type: string;
|
|
207
|
+
} | Events | {
|
|
143
208
|
[key: string]: any;
|
|
144
|
-
} | import("
|
|
209
|
+
} | import("src/_utils/props").RequestParams;
|
|
145
210
|
};
|
|
146
211
|
xAxisTickShow: {
|
|
147
212
|
type?: undefined;
|
|
148
213
|
default?: undefined;
|
|
149
214
|
} | {
|
|
150
215
|
type: any;
|
|
151
|
-
default: string | number | boolean | string[] | import("
|
|
216
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
217
|
+
name: string;
|
|
218
|
+
value: string;
|
|
219
|
+
type: string;
|
|
220
|
+
} | Events | {
|
|
152
221
|
[key: string]: any;
|
|
153
|
-
} | import("
|
|
222
|
+
} | import("src/_utils/props").RequestParams;
|
|
154
223
|
};
|
|
155
224
|
yAxisSplitLineShow: {
|
|
156
225
|
type?: undefined;
|
|
157
226
|
default?: undefined;
|
|
158
227
|
} | {
|
|
159
228
|
type: any;
|
|
160
|
-
default: string | number | boolean | string[] | import("
|
|
229
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
230
|
+
name: string;
|
|
231
|
+
value: string;
|
|
232
|
+
type: string;
|
|
233
|
+
} | Events | {
|
|
161
234
|
[key: string]: any;
|
|
162
|
-
} | import("
|
|
235
|
+
} | import("src/_utils/props").RequestParams;
|
|
163
236
|
};
|
|
164
237
|
yAxisSplitLineStyleColor: {
|
|
165
238
|
type?: undefined;
|
|
166
239
|
default?: undefined;
|
|
167
240
|
} | {
|
|
168
241
|
type: any;
|
|
169
|
-
default: string | number | boolean | string[] | import("
|
|
242
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
243
|
+
name: string;
|
|
244
|
+
value: string;
|
|
245
|
+
type: string;
|
|
246
|
+
} | Events | {
|
|
170
247
|
[key: string]: any;
|
|
171
|
-
} | import("
|
|
248
|
+
} | import("src/_utils/props").RequestParams;
|
|
172
249
|
};
|
|
173
250
|
yAxisLabelColor: {
|
|
174
251
|
type?: undefined;
|
|
175
252
|
default?: undefined;
|
|
176
253
|
} | {
|
|
177
254
|
type: any;
|
|
178
|
-
default: string | number | boolean | string[] | import("
|
|
255
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
256
|
+
name: string;
|
|
257
|
+
value: string;
|
|
258
|
+
type: string;
|
|
259
|
+
} | Events | {
|
|
179
260
|
[key: string]: any;
|
|
180
|
-
} | import("
|
|
261
|
+
} | import("src/_utils/props").RequestParams;
|
|
181
262
|
};
|
|
182
263
|
yAxisLineStyleColor: {
|
|
183
264
|
type?: undefined;
|
|
184
265
|
default?: undefined;
|
|
185
266
|
} | {
|
|
186
267
|
type: any;
|
|
187
|
-
default: string | number | boolean | string[] | import("
|
|
268
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
269
|
+
name: string;
|
|
270
|
+
value: string;
|
|
271
|
+
type: string;
|
|
272
|
+
} | Events | {
|
|
188
273
|
[key: string]: any;
|
|
189
|
-
} | import("
|
|
274
|
+
} | import("src/_utils/props").RequestParams;
|
|
275
|
+
};
|
|
276
|
+
dataFieldNames: {
|
|
277
|
+
type?: undefined;
|
|
278
|
+
default?: undefined;
|
|
279
|
+
} | {
|
|
280
|
+
type: any;
|
|
281
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
282
|
+
name: string;
|
|
283
|
+
value: string;
|
|
284
|
+
type: string;
|
|
285
|
+
} | Events | {
|
|
286
|
+
[key: string]: any;
|
|
287
|
+
} | import("src/_utils/props").RequestParams;
|
|
190
288
|
};
|
|
191
289
|
id: {
|
|
192
290
|
type?: undefined;
|
|
193
291
|
default?: undefined;
|
|
194
292
|
} | {
|
|
195
293
|
type: any;
|
|
196
|
-
default: string | number | boolean | string[] | import("
|
|
294
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
295
|
+
name: string;
|
|
296
|
+
value: string;
|
|
297
|
+
type: string;
|
|
298
|
+
} | Events | {
|
|
197
299
|
[key: string]: any;
|
|
198
|
-
} | import("
|
|
300
|
+
} | import("src/_utils/props").RequestParams;
|
|
199
301
|
};
|
|
200
302
|
name: {
|
|
201
303
|
type?: undefined;
|
|
202
304
|
default?: undefined;
|
|
203
305
|
} | {
|
|
204
306
|
type: any;
|
|
205
|
-
default: string | number | boolean | string[] | import("
|
|
307
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
308
|
+
name: string;
|
|
309
|
+
value: string;
|
|
310
|
+
type: string;
|
|
311
|
+
} | Events | {
|
|
206
312
|
[key: string]: any;
|
|
207
|
-
} | import("
|
|
313
|
+
} | import("src/_utils/props").RequestParams;
|
|
208
314
|
};
|
|
209
315
|
keyName: {
|
|
210
316
|
type?: undefined;
|
|
211
317
|
default?: undefined;
|
|
212
318
|
} | {
|
|
213
319
|
type: any;
|
|
214
|
-
default: string | number | boolean | string[] | import("
|
|
320
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
321
|
+
name: string;
|
|
322
|
+
value: string;
|
|
323
|
+
type: string;
|
|
324
|
+
} | Events | {
|
|
215
325
|
[key: string]: any;
|
|
216
|
-
} | import("
|
|
326
|
+
} | import("src/_utils/props").RequestParams;
|
|
217
327
|
};
|
|
218
328
|
type: {
|
|
219
329
|
type?: undefined;
|
|
220
330
|
default?: undefined;
|
|
221
331
|
} | {
|
|
222
332
|
type: any;
|
|
223
|
-
default: string | number | boolean | string[] | import("
|
|
333
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
334
|
+
name: string;
|
|
335
|
+
value: string;
|
|
336
|
+
type: string;
|
|
337
|
+
} | Events | {
|
|
224
338
|
[key: string]: any;
|
|
225
|
-
} | import("
|
|
339
|
+
} | import("src/_utils/props").RequestParams;
|
|
226
340
|
};
|
|
227
341
|
width: {
|
|
228
342
|
type?: undefined;
|
|
229
343
|
default?: undefined;
|
|
230
344
|
} | {
|
|
231
345
|
type: any;
|
|
232
|
-
default: string | number | boolean | string[] | import("
|
|
346
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
347
|
+
name: string;
|
|
348
|
+
value: string;
|
|
349
|
+
type: string;
|
|
350
|
+
} | Events | {
|
|
233
351
|
[key: string]: any;
|
|
234
|
-
} | import("
|
|
352
|
+
} | import("src/_utils/props").RequestParams;
|
|
235
353
|
};
|
|
236
354
|
height: {
|
|
237
355
|
type?: undefined;
|
|
238
356
|
default?: undefined;
|
|
239
357
|
} | {
|
|
240
358
|
type: any;
|
|
241
|
-
default: string | number | boolean | string[] | import("
|
|
359
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
360
|
+
name: string;
|
|
361
|
+
value: string;
|
|
362
|
+
type: string;
|
|
363
|
+
} | Events | {
|
|
242
364
|
[key: string]: any;
|
|
243
|
-
} | import("
|
|
365
|
+
} | import("src/_utils/props").RequestParams;
|
|
244
366
|
};
|
|
245
367
|
position: {
|
|
246
368
|
type?: undefined;
|
|
247
369
|
default?: undefined;
|
|
248
370
|
} | {
|
|
249
371
|
type: any;
|
|
250
|
-
default: string | number | boolean | string[] | import("
|
|
372
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
373
|
+
name: string;
|
|
374
|
+
value: string;
|
|
375
|
+
type: string;
|
|
376
|
+
} | Events | {
|
|
251
377
|
[key: string]: any;
|
|
252
|
-
} | import("
|
|
378
|
+
} | import("src/_utils/props").RequestParams;
|
|
253
379
|
};
|
|
254
380
|
top: {
|
|
255
381
|
type?: undefined;
|
|
256
382
|
default?: undefined;
|
|
257
383
|
} | {
|
|
258
384
|
type: any;
|
|
259
|
-
default: string | number | boolean | string[] | import("
|
|
385
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
386
|
+
name: string;
|
|
387
|
+
value: string;
|
|
388
|
+
type: string;
|
|
389
|
+
} | Events | {
|
|
260
390
|
[key: string]: any;
|
|
261
|
-
} | import("
|
|
391
|
+
} | import("src/_utils/props").RequestParams;
|
|
262
392
|
};
|
|
263
393
|
left: {
|
|
264
394
|
type?: undefined;
|
|
265
395
|
default?: undefined;
|
|
266
396
|
} | {
|
|
267
397
|
type: any;
|
|
268
|
-
default: string | number | boolean | string[] | import("
|
|
398
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
399
|
+
name: string;
|
|
400
|
+
value: string;
|
|
401
|
+
type: string;
|
|
402
|
+
} | Events | {
|
|
269
403
|
[key: string]: any;
|
|
270
|
-
} | import("
|
|
404
|
+
} | import("src/_utils/props").RequestParams;
|
|
271
405
|
};
|
|
272
406
|
zIndex: {
|
|
273
407
|
type?: undefined;
|
|
274
408
|
default?: undefined;
|
|
275
409
|
} | {
|
|
276
410
|
type: any;
|
|
277
|
-
default: string | number | boolean | string[] | import("
|
|
411
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
412
|
+
name: string;
|
|
413
|
+
value: string;
|
|
414
|
+
type: string;
|
|
415
|
+
} | Events | {
|
|
278
416
|
[key: string]: any;
|
|
279
|
-
} | import("
|
|
417
|
+
} | import("src/_utils/props").RequestParams;
|
|
280
418
|
};
|
|
281
419
|
rotate: {
|
|
282
420
|
type?: undefined;
|
|
283
421
|
default?: undefined;
|
|
284
422
|
} | {
|
|
285
423
|
type: any;
|
|
286
|
-
default: string | number | boolean | string[] | import("
|
|
424
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
425
|
+
name: string;
|
|
426
|
+
value: string;
|
|
427
|
+
type: string;
|
|
428
|
+
} | Events | {
|
|
287
429
|
[key: string]: any;
|
|
288
|
-
} | import("
|
|
430
|
+
} | import("src/_utils/props").RequestParams;
|
|
289
431
|
};
|
|
290
432
|
isShow: {
|
|
291
433
|
type?: undefined;
|
|
292
434
|
default?: undefined;
|
|
293
435
|
} | {
|
|
294
436
|
type: any;
|
|
295
|
-
default: string | number | boolean | string[] | import("
|
|
437
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
438
|
+
name: string;
|
|
439
|
+
value: string;
|
|
440
|
+
type: string;
|
|
441
|
+
} | Events | {
|
|
296
442
|
[key: string]: any;
|
|
297
|
-
} | import("
|
|
443
|
+
} | import("src/_utils/props").RequestParams;
|
|
298
444
|
};
|
|
299
445
|
isRender: {
|
|
300
446
|
type?: undefined;
|
|
301
447
|
default?: undefined;
|
|
302
448
|
} | {
|
|
303
449
|
type: any;
|
|
304
|
-
default: string | number | boolean | string[] | import("
|
|
450
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
451
|
+
name: string;
|
|
452
|
+
value: string;
|
|
453
|
+
type: string;
|
|
454
|
+
} | Events | {
|
|
305
455
|
[key: string]: any;
|
|
306
|
-
} | import("
|
|
456
|
+
} | import("src/_utils/props").RequestParams;
|
|
307
457
|
};
|
|
308
458
|
isRequestData: {
|
|
309
459
|
type?: undefined;
|
|
310
460
|
default?: undefined;
|
|
311
461
|
} | {
|
|
312
462
|
type: any;
|
|
313
|
-
default: string | number | boolean | string[] | import("
|
|
463
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
464
|
+
name: string;
|
|
465
|
+
value: string;
|
|
466
|
+
type: string;
|
|
467
|
+
} | Events | {
|
|
314
468
|
[key: string]: any;
|
|
315
|
-
} | import("
|
|
469
|
+
} | import("src/_utils/props").RequestParams;
|
|
316
470
|
};
|
|
317
|
-
|
|
471
|
+
events: {
|
|
318
472
|
type?: undefined;
|
|
319
473
|
default?: undefined;
|
|
320
474
|
} | {
|
|
321
475
|
type: any;
|
|
322
|
-
default: string | number | boolean | string[] | import("
|
|
476
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
477
|
+
name: string;
|
|
478
|
+
value: string;
|
|
479
|
+
type: string;
|
|
480
|
+
} | Events | {
|
|
323
481
|
[key: string]: any;
|
|
324
|
-
} | import("
|
|
482
|
+
} | import("src/_utils/props").RequestParams;
|
|
325
483
|
};
|
|
326
|
-
|
|
484
|
+
requestUrl: {
|
|
327
485
|
type?: undefined;
|
|
328
486
|
default?: undefined;
|
|
329
487
|
} | {
|
|
330
488
|
type: any;
|
|
331
|
-
default: string | number | boolean | string[] | import("
|
|
489
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
490
|
+
name: string;
|
|
491
|
+
value: string;
|
|
492
|
+
type: string;
|
|
493
|
+
} | Events | {
|
|
332
494
|
[key: string]: any;
|
|
333
|
-
} | import("
|
|
495
|
+
} | import("src/_utils/props").RequestParams;
|
|
334
496
|
};
|
|
335
|
-
|
|
497
|
+
requestMethod: {
|
|
336
498
|
type?: undefined;
|
|
337
499
|
default?: undefined;
|
|
338
500
|
} | {
|
|
339
501
|
type: any;
|
|
340
|
-
default: string | number | boolean | string[] | import("
|
|
502
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
503
|
+
name: string;
|
|
504
|
+
value: string;
|
|
505
|
+
type: string;
|
|
506
|
+
} | Events | {
|
|
341
507
|
[key: string]: any;
|
|
342
|
-
} | import("
|
|
508
|
+
} | import("src/_utils/props").RequestParams;
|
|
343
509
|
};
|
|
344
|
-
|
|
510
|
+
requestHeaders: {
|
|
345
511
|
type?: undefined;
|
|
346
512
|
default?: undefined;
|
|
347
513
|
} | {
|
|
348
514
|
type: any;
|
|
349
|
-
default: string | number | boolean | string[] | import("
|
|
515
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
516
|
+
name: string;
|
|
517
|
+
value: string;
|
|
518
|
+
type: string;
|
|
519
|
+
} | Events | {
|
|
350
520
|
[key: string]: any;
|
|
351
|
-
} | import("
|
|
521
|
+
} | import("src/_utils/props").RequestParams;
|
|
352
522
|
};
|
|
353
|
-
|
|
523
|
+
isOpenRequestTimer: {
|
|
354
524
|
type?: undefined;
|
|
355
525
|
default?: undefined;
|
|
356
526
|
} | {
|
|
357
527
|
type: any;
|
|
358
|
-
default: string | number | boolean | string[] | import("
|
|
528
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
529
|
+
name: string;
|
|
530
|
+
value: string;
|
|
531
|
+
type: string;
|
|
532
|
+
} | Events | {
|
|
359
533
|
[key: string]: any;
|
|
360
|
-
} | import("
|
|
534
|
+
} | import("src/_utils/props").RequestParams;
|
|
361
535
|
};
|
|
362
|
-
|
|
536
|
+
requestInterval: {
|
|
363
537
|
type?: undefined;
|
|
364
538
|
default?: undefined;
|
|
365
539
|
} | {
|
|
366
540
|
type: any;
|
|
367
|
-
default: string | number | boolean | string[] | import("
|
|
541
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
542
|
+
name: string;
|
|
543
|
+
value: string;
|
|
544
|
+
type: string;
|
|
545
|
+
} | Events | {
|
|
368
546
|
[key: string]: any;
|
|
369
|
-
} | import("
|
|
547
|
+
} | import("src/_utils/props").RequestParams;
|
|
370
548
|
};
|
|
371
|
-
|
|
549
|
+
requestParams: {
|
|
372
550
|
type?: undefined;
|
|
373
551
|
default?: undefined;
|
|
374
552
|
} | {
|
|
375
553
|
type: any;
|
|
376
|
-
default: string | number | boolean | string[] | import("
|
|
554
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
555
|
+
name: string;
|
|
556
|
+
value: string;
|
|
557
|
+
type: string;
|
|
558
|
+
} | Events | {
|
|
377
559
|
[key: string]: any;
|
|
378
|
-
} | import("
|
|
560
|
+
} | import("src/_utils/props").RequestParams;
|
|
379
561
|
};
|
|
380
562
|
}, {
|
|
381
563
|
option: import("vue").ComputedRef<{
|
|
@@ -393,6 +575,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
393
575
|
};
|
|
394
576
|
xAxis: {
|
|
395
577
|
type: string;
|
|
578
|
+
data: {
|
|
579
|
+
[x: string]: any;
|
|
580
|
+
}[];
|
|
396
581
|
splitLine: {
|
|
397
582
|
show: string | number | boolean | {
|
|
398
583
|
[key: string]: any;
|
|
@@ -464,23 +649,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
464
649
|
};
|
|
465
650
|
};
|
|
466
651
|
series: {
|
|
467
|
-
|
|
468
|
-
type: string;
|
|
469
|
-
data: any;
|
|
470
|
-
symbolSize: string | number | boolean | {
|
|
471
|
-
[key: string]: any;
|
|
472
|
-
};
|
|
473
|
-
smooth: string | number | boolean | {
|
|
474
|
-
[key: string]: any;
|
|
475
|
-
};
|
|
476
|
-
lineStyle: {
|
|
477
|
-
width: string | number | boolean | {
|
|
478
|
-
[key: string]: any;
|
|
479
|
-
};
|
|
480
|
-
};
|
|
652
|
+
[x: string]: any;
|
|
481
653
|
}[];
|
|
482
654
|
}>;
|
|
483
655
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
656
|
+
click: () => void;
|
|
484
657
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
485
658
|
data?: unknown;
|
|
486
659
|
titleText?: unknown;
|
|
@@ -503,6 +676,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
503
676
|
yAxisSplitLineStyleColor?: unknown;
|
|
504
677
|
yAxisLabelColor?: unknown;
|
|
505
678
|
yAxisLineStyleColor?: unknown;
|
|
679
|
+
dataFieldNames?: unknown;
|
|
506
680
|
id?: unknown;
|
|
507
681
|
name?: unknown;
|
|
508
682
|
keyName?: unknown;
|
|
@@ -517,13 +691,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
517
691
|
isShow?: unknown;
|
|
518
692
|
isRender?: unknown;
|
|
519
693
|
isRequestData?: unknown;
|
|
694
|
+
events?: unknown;
|
|
520
695
|
requestUrl?: unknown;
|
|
521
696
|
requestMethod?: unknown;
|
|
522
697
|
requestHeaders?: unknown;
|
|
523
698
|
isOpenRequestTimer?: unknown;
|
|
524
699
|
requestInterval?: unknown;
|
|
525
700
|
requestParams?: unknown;
|
|
526
|
-
events?: unknown;
|
|
527
701
|
} & {} & {
|
|
528
702
|
type?: string | number | boolean | {
|
|
529
703
|
[key: string]: any;
|
|
@@ -591,6 +765,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
591
765
|
yAxisLineStyleColor?: string | number | boolean | {
|
|
592
766
|
[key: string]: any;
|
|
593
767
|
};
|
|
768
|
+
dataFieldNames?: string | number | boolean | {
|
|
769
|
+
[key: string]: any;
|
|
770
|
+
};
|
|
594
771
|
id?: string | number | boolean | {
|
|
595
772
|
[key: string]: any;
|
|
596
773
|
};
|
|
@@ -630,6 +807,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
630
807
|
isRequestData?: string | number | boolean | {
|
|
631
808
|
[key: string]: any;
|
|
632
809
|
};
|
|
810
|
+
events?: string | number | boolean | {
|
|
811
|
+
[key: string]: any;
|
|
812
|
+
};
|
|
633
813
|
requestUrl?: string | number | boolean | {
|
|
634
814
|
[key: string]: any;
|
|
635
815
|
};
|
|
@@ -648,8 +828,5 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
648
828
|
requestParams?: string | number | boolean | {
|
|
649
829
|
[key: string]: any;
|
|
650
830
|
};
|
|
651
|
-
events?: string | number | boolean | {
|
|
652
|
-
[key: string]: any;
|
|
653
|
-
};
|
|
654
831
|
}>, {}>;
|
|
655
832
|
export default _default;
|