@ecan-bi/datav 1.0.16 → 1.0.19

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.
Files changed (64) hide show
  1. package/dist/_utils/constant.d.ts +8 -0
  2. package/dist/_utils/hooks/index.d.ts +3 -1
  3. package/dist/_utils/hooks/useImagePath.d.ts +2 -0
  4. package/dist/_utils/hooks/useRequestParams.d.ts +5 -0
  5. package/dist/_utils/hooks/useTransformChartDataByAttrKey.d.ts +13 -0
  6. package/dist/_utils/hooks/useTransformChartDataByAttrValue.d.ts +13 -0
  7. package/dist/_utils/props.d.ts +13 -0
  8. package/dist/_utils/request.d.ts +2 -0
  9. package/dist/common/Skeleton/Skeleton.vue.d.ts +20 -0
  10. package/dist/common/Skeleton/index.d.ts +2 -0
  11. package/dist/common/echarts/ECharts.d.ts +2 -2
  12. package/dist/common/index.d.ts +2 -0
  13. package/dist/common/spin/Spin.vue.d.ts +17 -0
  14. package/dist/common/spin/index.d.ts +2 -0
  15. package/dist/container/border/props.d.ts +9 -0
  16. package/dist/container/card/index.d.ts +3 -0
  17. package/dist/container/card/props.d.ts +244 -0
  18. package/dist/container/index.d.ts +0 -1
  19. package/dist/container/modal/Modal.vue.d.ts +1 -0
  20. package/dist/control/button/Button.vue.d.ts +13 -0
  21. package/dist/control/button/props.d.ts +9 -0
  22. package/dist/control/date-picker/DatePicker.vue.d.ts +14 -1
  23. package/dist/control/date-picker/props.d.ts +9 -0
  24. package/dist/control/index.d.ts +1 -0
  25. package/dist/control/input/Input.vue.d.ts +13 -0
  26. package/dist/control/input/props.d.ts +9 -0
  27. package/dist/control/range-picker/RangePicker.vue.d.ts +194 -22
  28. package/dist/control/range-picker/props.d.ts +40 -0
  29. package/dist/control/select/Select.vue.d.ts +129 -26
  30. package/dist/control/select/props.d.ts +121 -23
  31. package/dist/{container → control}/tabs/Tabs.vue.d.ts +23 -1
  32. package/dist/{container → control}/tabs/index.d.ts +0 -0
  33. package/dist/{container → control}/tabs/props.d.ts +16 -0
  34. package/dist/graph/bar/Bar.vue.d.ts +88 -224
  35. package/dist/graph/bar/props.d.ts +76 -227
  36. package/dist/graph/combo-graph/ComboGraph.vue.d.ts +740 -0
  37. package/dist/graph/combo-graph/index.d.ts +3 -0
  38. package/dist/graph/combo-graph/props.d.ts +465 -0
  39. package/dist/graph/custom-graph/CustomGraph.vue.d.ts +15 -0
  40. package/dist/graph/custom-graph/props.d.ts +11 -0
  41. package/dist/graph/index.d.ts +1 -0
  42. package/dist/graph/line/Line.vue.d.ts +87 -219
  43. package/dist/graph/line/props.d.ts +76 -222
  44. package/dist/graph/pie/Pie.vue.d.ts +82 -259
  45. package/dist/graph/pie/props.d.ts +74 -262
  46. package/dist/graph/scatter/Scatter.vue.d.ts +17 -0
  47. package/dist/graph/scatter/props.d.ts +13 -0
  48. package/dist/index.esm.js +3 -2
  49. package/dist/index.esm.js.map +1 -0
  50. package/dist/index.umd.js +3 -2
  51. package/dist/index.umd.js.map +1 -0
  52. package/dist/media/image/Image.vue.d.ts +14 -0
  53. package/dist/media/image/props.d.ts +9 -0
  54. package/dist/setting/event-config/index.d.ts +2 -0
  55. package/dist/table/table/Table.vue.d.ts +19 -1
  56. package/dist/table/table/props.d.ts +13 -0
  57. package/dist/text/list/List.vue.d.ts +21 -0
  58. package/dist/text/list/props.d.ts +18 -0
  59. package/dist/text/text/Text.vue.d.ts +16 -0
  60. package/dist/text/text/props.d.ts +12 -0
  61. package/dist/text/time-display/TimeDisplay.vue.d.ts +13 -0
  62. package/dist/text/time-display/props.d.ts +9 -0
  63. package/package.json +1 -1
  64. package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +0 -17
@@ -0,0 +1,740 @@
1
+ import { Events, KeyTypeDataFieldNames, ValueTypeDataFieldNames } from 'src/_utils/props';
2
+ declare const _default: import("vue").DefineComponent<{
3
+ data: {
4
+ type?: undefined;
5
+ default?: undefined;
6
+ } | {
7
+ type: any;
8
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
9
+ [key: string]: any;
10
+ } | import("src/_utils/props").RequestParams;
11
+ };
12
+ titleText: {
13
+ type?: undefined;
14
+ default?: undefined;
15
+ } | {
16
+ type: any;
17
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
18
+ [key: string]: any;
19
+ } | import("src/_utils/props").RequestParams;
20
+ };
21
+ titleSubtext: {
22
+ type?: undefined;
23
+ default?: undefined;
24
+ } | {
25
+ type: any;
26
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
27
+ [key: string]: any;
28
+ } | import("src/_utils/props").RequestParams;
29
+ };
30
+ colors: {
31
+ type?: undefined;
32
+ default?: undefined;
33
+ } | {
34
+ type: any;
35
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
36
+ [key: string]: any;
37
+ } | import("src/_utils/props").RequestParams;
38
+ };
39
+ legendShow: {
40
+ type?: undefined;
41
+ default?: undefined;
42
+ } | {
43
+ type: any;
44
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
45
+ [key: string]: any;
46
+ } | import("src/_utils/props").RequestParams;
47
+ };
48
+ legendTextStyleColor: {
49
+ type?: undefined;
50
+ default?: undefined;
51
+ } | {
52
+ type: any;
53
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
54
+ [key: string]: any;
55
+ } | import("src/_utils/props").RequestParams;
56
+ };
57
+ legendLeft: {
58
+ type?: undefined;
59
+ default?: undefined;
60
+ } | {
61
+ type: any;
62
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
63
+ [key: string]: any;
64
+ } | import("src/_utils/props").RequestParams;
65
+ };
66
+ legendTop: {
67
+ type?: undefined;
68
+ default?: undefined;
69
+ } | {
70
+ type: any;
71
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
72
+ [key: string]: any;
73
+ } | import("src/_utils/props").RequestParams;
74
+ };
75
+ legendOrient: {
76
+ type?: undefined;
77
+ default?: undefined;
78
+ } | {
79
+ type: any;
80
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
81
+ [key: string]: any;
82
+ } | import("src/_utils/props").RequestParams;
83
+ };
84
+ xAxisSplitLineShow: {
85
+ type?: undefined;
86
+ default?: undefined;
87
+ } | {
88
+ type: any;
89
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
90
+ [key: string]: any;
91
+ } | import("src/_utils/props").RequestParams;
92
+ };
93
+ xAxisLabelColor: {
94
+ type?: undefined;
95
+ default?: undefined;
96
+ } | {
97
+ type: any;
98
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
99
+ [key: string]: any;
100
+ } | import("src/_utils/props").RequestParams;
101
+ };
102
+ xAxisLineStyleColor: {
103
+ type?: undefined;
104
+ default?: undefined;
105
+ } | {
106
+ type: any;
107
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
108
+ [key: string]: any;
109
+ } | import("src/_utils/props").RequestParams;
110
+ };
111
+ xAxisTickShow: {
112
+ type?: undefined;
113
+ default?: undefined;
114
+ } | {
115
+ type: any;
116
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
117
+ [key: string]: any;
118
+ } | import("src/_utils/props").RequestParams;
119
+ };
120
+ yAxisSplitLineShow: {
121
+ type?: undefined;
122
+ default?: undefined;
123
+ } | {
124
+ type: any;
125
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
126
+ [key: string]: any;
127
+ } | import("src/_utils/props").RequestParams;
128
+ };
129
+ xAxisSplitLineStyleColor: {
130
+ type?: undefined;
131
+ default?: undefined;
132
+ } | {
133
+ type: any;
134
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
135
+ [key: string]: any;
136
+ } | import("src/_utils/props").RequestParams;
137
+ };
138
+ yAxisSplitLineStyleColor: {
139
+ type?: undefined;
140
+ default?: undefined;
141
+ } | {
142
+ type: any;
143
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
144
+ [key: string]: any;
145
+ } | import("src/_utils/props").RequestParams;
146
+ };
147
+ yAxisLabelColor: {
148
+ type?: undefined;
149
+ default?: undefined;
150
+ } | {
151
+ type: any;
152
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
153
+ [key: string]: any;
154
+ } | import("src/_utils/props").RequestParams;
155
+ };
156
+ yAxisLineStyleColor: {
157
+ type?: undefined;
158
+ default?: undefined;
159
+ } | {
160
+ type: any;
161
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
162
+ [key: string]: any;
163
+ } | import("src/_utils/props").RequestParams;
164
+ };
165
+ valueTypeDataFieldNames: {
166
+ type?: undefined;
167
+ default?: undefined;
168
+ } | {
169
+ type: any;
170
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
171
+ [key: string]: any;
172
+ } | import("src/_utils/props").RequestParams;
173
+ };
174
+ keyTypeDataFieldNames: {
175
+ type?: undefined;
176
+ default?: undefined;
177
+ } | {
178
+ type: any;
179
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
180
+ [key: string]: any;
181
+ } | import("src/_utils/props").RequestParams;
182
+ };
183
+ tooltipShow: {
184
+ type?: undefined;
185
+ default?: undefined;
186
+ } | {
187
+ type: any;
188
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
189
+ [key: string]: any;
190
+ } | import("src/_utils/props").RequestParams;
191
+ };
192
+ tooltipTrigger: {
193
+ type?: undefined;
194
+ default?: undefined;
195
+ } | {
196
+ type: any;
197
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
198
+ [key: string]: any;
199
+ } | import("src/_utils/props").RequestParams;
200
+ };
201
+ tooltipTextStyleColor: {
202
+ type?: undefined;
203
+ default?: undefined;
204
+ } | {
205
+ type: any;
206
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
207
+ [key: string]: any;
208
+ } | import("src/_utils/props").RequestParams;
209
+ };
210
+ tooltipFormatter: {
211
+ type?: undefined;
212
+ default?: undefined;
213
+ } | {
214
+ type: any;
215
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
216
+ [key: string]: any;
217
+ } | import("src/_utils/props").RequestParams;
218
+ };
219
+ seriesTypes: {
220
+ type?: undefined;
221
+ default?: undefined;
222
+ } | {
223
+ type: any;
224
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
225
+ [key: string]: any;
226
+ } | import("src/_utils/props").RequestParams;
227
+ };
228
+ dataFieldConfigType: {
229
+ type?: undefined;
230
+ default?: undefined;
231
+ } | {
232
+ type: any;
233
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
234
+ [key: string]: any;
235
+ } | import("src/_utils/props").RequestParams;
236
+ };
237
+ id: {
238
+ type?: undefined;
239
+ default?: undefined;
240
+ } | {
241
+ type: any;
242
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
243
+ [key: string]: any;
244
+ } | import("src/_utils/props").RequestParams;
245
+ };
246
+ name: {
247
+ type?: undefined;
248
+ default?: undefined;
249
+ } | {
250
+ type: any;
251
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
252
+ [key: string]: any;
253
+ } | import("src/_utils/props").RequestParams;
254
+ };
255
+ keyName: {
256
+ type?: undefined;
257
+ default?: undefined;
258
+ } | {
259
+ type: any;
260
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
261
+ [key: string]: any;
262
+ } | import("src/_utils/props").RequestParams;
263
+ };
264
+ type: {
265
+ type?: undefined;
266
+ default?: undefined;
267
+ } | {
268
+ type: any;
269
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
270
+ [key: string]: any;
271
+ } | import("src/_utils/props").RequestParams;
272
+ };
273
+ width: {
274
+ type?: undefined;
275
+ default?: undefined;
276
+ } | {
277
+ type: any;
278
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
279
+ [key: string]: any;
280
+ } | import("src/_utils/props").RequestParams;
281
+ };
282
+ height: {
283
+ type?: undefined;
284
+ default?: undefined;
285
+ } | {
286
+ type: any;
287
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
288
+ [key: string]: any;
289
+ } | import("src/_utils/props").RequestParams;
290
+ };
291
+ position: {
292
+ type?: undefined;
293
+ default?: undefined;
294
+ } | {
295
+ type: any;
296
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
297
+ [key: string]: any;
298
+ } | import("src/_utils/props").RequestParams;
299
+ };
300
+ top: {
301
+ type?: undefined;
302
+ default?: undefined;
303
+ } | {
304
+ type: any;
305
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
306
+ [key: string]: any;
307
+ } | import("src/_utils/props").RequestParams;
308
+ };
309
+ left: {
310
+ type?: undefined;
311
+ default?: undefined;
312
+ } | {
313
+ type: any;
314
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
315
+ [key: string]: any;
316
+ } | import("src/_utils/props").RequestParams;
317
+ };
318
+ zIndex: {
319
+ type?: undefined;
320
+ default?: undefined;
321
+ } | {
322
+ type: any;
323
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
324
+ [key: string]: any;
325
+ } | import("src/_utils/props").RequestParams;
326
+ };
327
+ rotate: {
328
+ type?: undefined;
329
+ default?: undefined;
330
+ } | {
331
+ type: any;
332
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
333
+ [key: string]: any;
334
+ } | import("src/_utils/props").RequestParams;
335
+ };
336
+ isShow: {
337
+ type?: undefined;
338
+ default?: undefined;
339
+ } | {
340
+ type: any;
341
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
342
+ [key: string]: any;
343
+ } | import("src/_utils/props").RequestParams;
344
+ };
345
+ isRender: {
346
+ type?: undefined;
347
+ default?: undefined;
348
+ } | {
349
+ type: any;
350
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
351
+ [key: string]: any;
352
+ } | import("src/_utils/props").RequestParams;
353
+ };
354
+ isRequestData: {
355
+ type?: undefined;
356
+ default?: undefined;
357
+ } | {
358
+ type: any;
359
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
360
+ [key: string]: any;
361
+ } | import("src/_utils/props").RequestParams;
362
+ };
363
+ events: {
364
+ type?: undefined;
365
+ default?: undefined;
366
+ } | {
367
+ type: any;
368
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
369
+ [key: string]: any;
370
+ } | import("src/_utils/props").RequestParams;
371
+ };
372
+ requestUrl: {
373
+ type?: undefined;
374
+ default?: undefined;
375
+ } | {
376
+ type: any;
377
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
378
+ [key: string]: any;
379
+ } | import("src/_utils/props").RequestParams;
380
+ };
381
+ requestMethod: {
382
+ type?: undefined;
383
+ default?: undefined;
384
+ } | {
385
+ type: any;
386
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
387
+ [key: string]: any;
388
+ } | import("src/_utils/props").RequestParams;
389
+ };
390
+ requestHeaders: {
391
+ type?: undefined;
392
+ default?: undefined;
393
+ } | {
394
+ type: any;
395
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
396
+ [key: string]: any;
397
+ } | import("src/_utils/props").RequestParams;
398
+ };
399
+ isOpenRequestTimer: {
400
+ type?: undefined;
401
+ default?: undefined;
402
+ } | {
403
+ type: any;
404
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
405
+ [key: string]: any;
406
+ } | import("src/_utils/props").RequestParams;
407
+ };
408
+ requestInterval: {
409
+ type?: undefined;
410
+ default?: undefined;
411
+ } | {
412
+ type: any;
413
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
414
+ [key: string]: any;
415
+ } | import("src/_utils/props").RequestParams;
416
+ };
417
+ requestParams: {
418
+ type?: undefined;
419
+ default?: undefined;
420
+ } | {
421
+ type: any;
422
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
423
+ [key: string]: any;
424
+ } | import("src/_utils/props").RequestParams;
425
+ };
426
+ requestSort: {
427
+ type?: undefined;
428
+ default?: undefined;
429
+ } | {
430
+ type: any;
431
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
432
+ [key: string]: any;
433
+ } | import("src/_utils/props").RequestParams;
434
+ };
435
+ }, {
436
+ style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
437
+ option: import("vue").ComputedRef<{
438
+ title: {
439
+ text: string | number | boolean | {
440
+ [key: string]: any;
441
+ };
442
+ subtext: string | number | boolean | {
443
+ [key: string]: any;
444
+ };
445
+ left: string;
446
+ };
447
+ color: string | number | boolean | {
448
+ [key: string]: any;
449
+ };
450
+ tooltip: {
451
+ trigger: string;
452
+ show: string | number | boolean | {
453
+ [key: string]: any;
454
+ };
455
+ formatter: string;
456
+ textStyle: {
457
+ color: string | number | boolean | {
458
+ [key: string]: any;
459
+ };
460
+ };
461
+ };
462
+ legend: {
463
+ show: string | number | boolean | {
464
+ [key: string]: any;
465
+ };
466
+ orient: string | number | boolean | {
467
+ [key: string]: any;
468
+ };
469
+ top: string | number | boolean | {
470
+ [key: string]: any;
471
+ };
472
+ left: string | number | boolean | {
473
+ [key: string]: any;
474
+ };
475
+ textStyle: {
476
+ color: string | number | boolean | {
477
+ [key: string]: any;
478
+ };
479
+ };
480
+ };
481
+ xAxis: {
482
+ type: string;
483
+ data: {
484
+ [x: string]: any;
485
+ }[];
486
+ splitLine: {
487
+ show: string | number | boolean | {
488
+ [key: string]: any;
489
+ };
490
+ lineStyle: {
491
+ color: string | number | boolean | {
492
+ [key: string]: any;
493
+ };
494
+ };
495
+ };
496
+ axisLabel: {
497
+ color: string | number | boolean | {
498
+ [key: string]: any;
499
+ };
500
+ };
501
+ axisLine: {
502
+ lineStyle: {
503
+ color: string | number | boolean | {
504
+ [key: string]: any;
505
+ };
506
+ };
507
+ };
508
+ axisTick: {
509
+ show: string | number | boolean | {
510
+ [key: string]: any;
511
+ };
512
+ };
513
+ };
514
+ yAxis: {
515
+ type: string;
516
+ splitLine: {
517
+ show: string | number | boolean | {
518
+ [key: string]: any;
519
+ };
520
+ lineStyle: {
521
+ color: string | number | boolean | {
522
+ [key: string]: any;
523
+ };
524
+ };
525
+ };
526
+ axisLabel: {
527
+ color: string | number | boolean | {
528
+ [key: string]: any;
529
+ };
530
+ };
531
+ axisLine: {
532
+ lineStyle: {
533
+ color: string | number | boolean | {
534
+ [key: string]: any;
535
+ };
536
+ };
537
+ };
538
+ };
539
+ series: {
540
+ [x: string]: any;
541
+ }[];
542
+ }>;
543
+ click: () => void;
544
+ loading: import("vue").Ref<boolean>;
545
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
546
+ data?: unknown;
547
+ titleText?: unknown;
548
+ titleSubtext?: unknown;
549
+ colors?: unknown;
550
+ legendShow?: unknown;
551
+ legendTextStyleColor?: unknown;
552
+ legendLeft?: unknown;
553
+ legendTop?: unknown;
554
+ legendOrient?: unknown;
555
+ xAxisSplitLineShow?: unknown;
556
+ xAxisLabelColor?: unknown;
557
+ xAxisLineStyleColor?: unknown;
558
+ xAxisTickShow?: unknown;
559
+ yAxisSplitLineShow?: unknown;
560
+ xAxisSplitLineStyleColor?: unknown;
561
+ yAxisSplitLineStyleColor?: unknown;
562
+ yAxisLabelColor?: unknown;
563
+ yAxisLineStyleColor?: unknown;
564
+ valueTypeDataFieldNames?: unknown;
565
+ keyTypeDataFieldNames?: unknown;
566
+ tooltipShow?: unknown;
567
+ tooltipTrigger?: unknown;
568
+ tooltipTextStyleColor?: unknown;
569
+ tooltipFormatter?: unknown;
570
+ seriesTypes?: unknown;
571
+ dataFieldConfigType?: unknown;
572
+ id?: unknown;
573
+ name?: unknown;
574
+ keyName?: unknown;
575
+ type?: unknown;
576
+ width?: unknown;
577
+ height?: unknown;
578
+ position?: unknown;
579
+ top?: unknown;
580
+ left?: unknown;
581
+ zIndex?: unknown;
582
+ rotate?: unknown;
583
+ isShow?: unknown;
584
+ isRender?: unknown;
585
+ isRequestData?: unknown;
586
+ events?: unknown;
587
+ requestUrl?: unknown;
588
+ requestMethod?: unknown;
589
+ requestHeaders?: unknown;
590
+ isOpenRequestTimer?: unknown;
591
+ requestInterval?: unknown;
592
+ requestParams?: unknown;
593
+ requestSort?: unknown;
594
+ } & {} & {
595
+ type?: string | number | boolean | {
596
+ [key: string]: any;
597
+ };
598
+ data?: string | number | boolean | {
599
+ [key: string]: any;
600
+ };
601
+ titleText?: string | number | boolean | {
602
+ [key: string]: any;
603
+ };
604
+ titleSubtext?: string | number | boolean | {
605
+ [key: string]: any;
606
+ };
607
+ colors?: string | number | boolean | {
608
+ [key: string]: any;
609
+ };
610
+ legendShow?: string | number | boolean | {
611
+ [key: string]: any;
612
+ };
613
+ legendTextStyleColor?: string | number | boolean | {
614
+ [key: string]: any;
615
+ };
616
+ legendLeft?: string | number | boolean | {
617
+ [key: string]: any;
618
+ };
619
+ legendTop?: string | number | boolean | {
620
+ [key: string]: any;
621
+ };
622
+ legendOrient?: string | number | boolean | {
623
+ [key: string]: any;
624
+ };
625
+ xAxisSplitLineShow?: string | number | boolean | {
626
+ [key: string]: any;
627
+ };
628
+ xAxisLabelColor?: string | number | boolean | {
629
+ [key: string]: any;
630
+ };
631
+ xAxisLineStyleColor?: string | number | boolean | {
632
+ [key: string]: any;
633
+ };
634
+ xAxisTickShow?: string | number | boolean | {
635
+ [key: string]: any;
636
+ };
637
+ yAxisSplitLineShow?: string | number | boolean | {
638
+ [key: string]: any;
639
+ };
640
+ xAxisSplitLineStyleColor?: string | number | boolean | {
641
+ [key: string]: any;
642
+ };
643
+ yAxisSplitLineStyleColor?: string | number | boolean | {
644
+ [key: string]: any;
645
+ };
646
+ yAxisLabelColor?: string | number | boolean | {
647
+ [key: string]: any;
648
+ };
649
+ yAxisLineStyleColor?: string | number | boolean | {
650
+ [key: string]: any;
651
+ };
652
+ valueTypeDataFieldNames?: string | number | boolean | {
653
+ [key: string]: any;
654
+ };
655
+ keyTypeDataFieldNames?: string | number | boolean | {
656
+ [key: string]: any;
657
+ };
658
+ tooltipShow?: string | number | boolean | {
659
+ [key: string]: any;
660
+ };
661
+ tooltipTrigger?: string | number | boolean | {
662
+ [key: string]: any;
663
+ };
664
+ tooltipTextStyleColor?: string | number | boolean | {
665
+ [key: string]: any;
666
+ };
667
+ tooltipFormatter?: string | number | boolean | {
668
+ [key: string]: any;
669
+ };
670
+ seriesTypes?: string | number | boolean | {
671
+ [key: string]: any;
672
+ };
673
+ dataFieldConfigType?: string | number | boolean | {
674
+ [key: string]: any;
675
+ };
676
+ id?: string | number | boolean | {
677
+ [key: string]: any;
678
+ };
679
+ name?: string | number | boolean | {
680
+ [key: string]: any;
681
+ };
682
+ keyName?: string | number | boolean | {
683
+ [key: string]: any;
684
+ };
685
+ width?: string | number | boolean | {
686
+ [key: string]: any;
687
+ };
688
+ height?: string | number | boolean | {
689
+ [key: string]: any;
690
+ };
691
+ position?: string | number | boolean | {
692
+ [key: string]: any;
693
+ };
694
+ top?: string | number | boolean | {
695
+ [key: string]: any;
696
+ };
697
+ left?: string | number | boolean | {
698
+ [key: string]: any;
699
+ };
700
+ zIndex?: string | number | boolean | {
701
+ [key: string]: any;
702
+ };
703
+ rotate?: string | number | boolean | {
704
+ [key: string]: any;
705
+ };
706
+ isShow?: string | number | boolean | {
707
+ [key: string]: any;
708
+ };
709
+ isRender?: string | number | boolean | {
710
+ [key: string]: any;
711
+ };
712
+ isRequestData?: string | number | boolean | {
713
+ [key: string]: any;
714
+ };
715
+ events?: string | number | boolean | {
716
+ [key: string]: any;
717
+ };
718
+ requestUrl?: string | number | boolean | {
719
+ [key: string]: any;
720
+ };
721
+ requestMethod?: string | number | boolean | {
722
+ [key: string]: any;
723
+ };
724
+ requestHeaders?: string | number | boolean | {
725
+ [key: string]: any;
726
+ };
727
+ isOpenRequestTimer?: string | number | boolean | {
728
+ [key: string]: any;
729
+ };
730
+ requestInterval?: string | number | boolean | {
731
+ [key: string]: any;
732
+ };
733
+ requestParams?: string | number | boolean | {
734
+ [key: string]: any;
735
+ };
736
+ requestSort?: string | number | boolean | {
737
+ [key: string]: any;
738
+ };
739
+ }>, {}>;
740
+ export default _default;