@ecan-bi/datav 1.0.7 → 1.0.8

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