@ecan-bi/datav 1.0.15 → 1.0.18

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