@ecan-bi/datav 1.0.50 → 1.0.53

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 (125) hide show
  1. package/dist/index.es.js +125 -76
  2. package/dist/index.es.js.map +1 -1
  3. package/dist/index.umd.js +124 -75
  4. package/dist/index.umd.js.map +1 -1
  5. package/dist/style.css +37 -35
  6. package/package.json +1 -1
  7. package/types/_utils/constant.d.ts +9 -0
  8. package/types/_utils/hooks/index.d.ts +15 -0
  9. package/types/_utils/hooks/useDownloadFile.d.ts +2 -0
  10. package/types/_utils/hooks/useEmitEvent.d.ts +7 -0
  11. package/types/_utils/hooks/useHrefParamsToGlobalVariables.d.ts +2 -0
  12. package/types/_utils/hooks/useImagePath.d.ts +2 -0
  13. package/types/_utils/hooks/useIndicatorData.d.ts +4 -0
  14. package/types/_utils/hooks/useOnEvent.d.ts +6 -0
  15. package/types/_utils/hooks/usePageUrl.d.ts +2 -0
  16. package/types/_utils/hooks/usePickComponentStyle.d.ts +9 -0
  17. package/types/_utils/hooks/usePickEchartsData.d.ts +2 -0
  18. package/types/_utils/hooks/useRequestData.d.ts +6 -0
  19. package/types/_utils/hooks/useRequestDiagramData.d.ts +6 -0
  20. package/types/_utils/hooks/useTooltipFormatter.d.ts +4 -0
  21. package/types/_utils/hooks/useTransformChartDataByAttrKey.d.ts +13 -0
  22. package/types/_utils/hooks/useTransformChartDataByAttrValue.d.ts +13 -0
  23. package/types/_utils/hooks/useValueFormatter.d.ts +2 -0
  24. package/types/_utils/hooks/useVariablesInText.d.ts +4 -0
  25. package/types/_utils/props.d.ts +71 -0
  26. package/types/_utils/request.d.ts +2 -0
  27. package/types/_utils/util.d.ts +20 -0
  28. package/types/_utils/withInstall.d.ts +5 -0
  29. package/types/common/echarts/Echarts.d.ts +418 -0
  30. package/types/common/echarts/composables/api.d.ts +7 -0
  31. package/types/common/echarts/composables/autoresize.d.ts +6 -0
  32. package/types/common/echarts/composables/index.d.ts +3 -0
  33. package/types/common/echarts/composables/loading.d.ts +10 -0
  34. package/types/common/echarts/index.d.ts +2 -0
  35. package/types/common/echarts/types.d.ts +20 -0
  36. package/types/common/echarts/utils.d.ts +6 -0
  37. package/types/common/index.d.ts +3 -0
  38. package/types/common/skeleton/Skeleton.vue.d.ts +14 -0
  39. package/types/common/skeleton/index.d.ts +2 -0
  40. package/types/common/spin/Spin.vue.d.ts +18 -0
  41. package/types/common/spin/index.d.ts +2 -0
  42. package/types/components.d.ts +9 -0
  43. package/types/container/border/Border.vue.d.ts +622 -0
  44. package/types/container/border/index.d.ts +622 -0
  45. package/types/container/border/props.d.ts +315 -0
  46. package/types/container/index.d.ts +3 -0
  47. package/types/container/modal/Modal.vue.d.ts +505 -0
  48. package/types/container/modal/index.d.ts +506 -0
  49. package/types/container/modal/props.d.ts +179 -0
  50. package/types/container/tabs/Tabs.vue.d.ts +475 -0
  51. package/types/container/tabs/index.d.ts +476 -0
  52. package/types/container/tabs/props.d.ts +251 -0
  53. package/types/control/button/Button.vue.d.ts +550 -0
  54. package/types/control/button/index.d.ts +550 -0
  55. package/types/control/button/props.d.ts +285 -0
  56. package/types/control/date-picker/DatePicker.vue.d.ts +480 -0
  57. package/types/control/date-picker/index.d.ts +479 -0
  58. package/types/control/date-picker/props.d.ts +245 -0
  59. package/types/control/index.d.ts +5 -0
  60. package/types/control/input/Input.vue.d.ts +438 -0
  61. package/types/control/input/index.d.ts +439 -0
  62. package/types/control/input/props.d.ts +224 -0
  63. package/types/control/range-picker/RangePicker.vue.d.ts +596 -0
  64. package/types/control/range-picker/index.d.ts +595 -0
  65. package/types/control/range-picker/props.d.ts +245 -0
  66. package/types/control/select/Select.vue.d.ts +613 -0
  67. package/types/control/select/index.d.ts +613 -0
  68. package/types/control/select/props.d.ts +321 -0
  69. package/types/graph/bar/Bar.vue.d.ts +2028 -0
  70. package/types/graph/bar/index.d.ts +2028 -0
  71. package/types/graph/bar/props.d.ts +984 -0
  72. package/types/graph/combo-graph/ComboGraph.vue.d.ts +1008 -0
  73. package/types/graph/combo-graph/index.d.ts +1009 -0
  74. package/types/graph/combo-graph/props.d.ts +501 -0
  75. package/types/graph/custom-graph/CustomGraph.vue.d.ts +537 -0
  76. package/types/graph/custom-graph/index.d.ts +537 -0
  77. package/types/graph/custom-graph/props.d.ts +274 -0
  78. package/types/graph/index.d.ts +6 -0
  79. package/types/graph/line/Line.vue.d.ts +973 -0
  80. package/types/graph/line/index.d.ts +974 -0
  81. package/types/graph/line/props.d.ts +481 -0
  82. package/types/graph/pie/Pie.vue.d.ts +1049 -0
  83. package/types/graph/pie/index.d.ts +1050 -0
  84. package/types/graph/pie/props.d.ts +533 -0
  85. package/types/graph/scatter/Scatter.vue.d.ts +949 -0
  86. package/types/graph/scatter/index.d.ts +950 -0
  87. package/types/graph/scatter/props.d.ts +468 -0
  88. package/types/index.d.ts +6 -0
  89. package/types/map/index.d.ts +1 -0
  90. package/types/map/map/Map.vue.d.ts +1699 -0
  91. package/types/map/map/index.d.ts +1700 -0
  92. package/types/map/map/props.d.ts +829 -0
  93. package/types/media/image/Image.vue.d.ts +476 -0
  94. package/types/media/image/index.d.ts +477 -0
  95. package/types/media/image/props.d.ts +244 -0
  96. package/types/media/index.d.ts +1 -0
  97. package/types/setting/index.d.ts +3 -0
  98. package/types/setting/page-config/PageConfig.vue.d.ts +112 -0
  99. package/types/setting/page-config/index.d.ts +113 -0
  100. package/types/setting/page-config/props.d.ts +61 -0
  101. package/types/setting/provider-config/ProviderConfig.vue.d.ts +78 -0
  102. package/types/setting/provider-config/index.d.ts +79 -0
  103. package/types/setting/provider-config/props.d.ts +47 -0
  104. package/types/setting/renderer/Renderer.vue.d.ts +22 -0
  105. package/types/setting/renderer/index.d.ts +23 -0
  106. package/types/setting/renderer/props.d.ts +17 -0
  107. package/types/table/index.d.ts +1 -0
  108. package/types/table/table/Table.vue.d.ts +1724 -0
  109. package/types/table/table/index.d.ts +1724 -0
  110. package/types/table/table/props.d.ts +878 -0
  111. package/types/text/index.d.ts +5 -0
  112. package/types/text/list/List.vue.d.ts +849 -0
  113. package/types/text/list/index.d.ts +849 -0
  114. package/types/text/list/props.d.ts +441 -0
  115. package/types/text/proportion/Proportion.vue.d.ts +782 -0
  116. package/types/text/proportion/index.d.ts +782 -0
  117. package/types/text/proportion/props.d.ts +407 -0
  118. package/types/text/scroll-text/ScrollText.vue.d.ts +4 -0
  119. package/types/text/scroll-text/index.d.ts +4 -0
  120. package/types/text/text/Text.vue.d.ts +736 -0
  121. package/types/text/text/index.d.ts +736 -0
  122. package/types/text/text/props.d.ts +383 -0
  123. package/types/text/time-display/TimeDisplay.vue.d.ts +547 -0
  124. package/types/text/time-display/index.d.ts +548 -0
  125. package/types/text/time-display/props.d.ts +284 -0
@@ -0,0 +1,2028 @@
1
+ import { ValueTypeDataFieldNames, KeyTypeDataFieldNames, Events, Data } from '../../_utils/props';
2
+ declare const _sfc_main: import("vue").DefineComponent<{
3
+ data: {
4
+ type?: undefined;
5
+ default?: undefined;
6
+ } | {
7
+ type: any;
8
+ default: string | number | boolean | string[] | Events | {
9
+ [key: string]: any;
10
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
11
+ [key: string]: any;
12
+ chartType: "bar";
13
+ plugin: "1";
14
+ layer: "2";
15
+ };
16
+ };
17
+ titleText: {
18
+ type?: undefined;
19
+ default?: undefined;
20
+ } | {
21
+ type: any;
22
+ default: string | number | boolean | string[] | Events | {
23
+ [key: string]: any;
24
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
25
+ [key: string]: any;
26
+ chartType: "bar";
27
+ plugin: "1";
28
+ layer: "2";
29
+ };
30
+ };
31
+ titleSubtext: {
32
+ type?: undefined;
33
+ default?: undefined;
34
+ } | {
35
+ type: any;
36
+ default: string | number | boolean | string[] | Events | {
37
+ [key: string]: any;
38
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
39
+ [key: string]: any;
40
+ chartType: "bar";
41
+ plugin: "1";
42
+ layer: "2";
43
+ };
44
+ };
45
+ colors: {
46
+ type?: undefined;
47
+ default?: undefined;
48
+ } | {
49
+ type: any;
50
+ default: string | number | boolean | string[] | Events | {
51
+ [key: string]: any;
52
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
53
+ [key: string]: any;
54
+ chartType: "bar";
55
+ plugin: "1";
56
+ layer: "2";
57
+ };
58
+ };
59
+ legendShow: {
60
+ type?: undefined;
61
+ default?: undefined;
62
+ } | {
63
+ type: any;
64
+ default: string | number | boolean | string[] | Events | {
65
+ [key: string]: any;
66
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
67
+ [key: string]: any;
68
+ chartType: "bar";
69
+ plugin: "1";
70
+ layer: "2";
71
+ };
72
+ };
73
+ legendTextStyleColor: {
74
+ type?: undefined;
75
+ default?: undefined;
76
+ } | {
77
+ type: any;
78
+ default: string | number | boolean | string[] | Events | {
79
+ [key: string]: any;
80
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
81
+ [key: string]: any;
82
+ chartType: "bar";
83
+ plugin: "1";
84
+ layer: "2";
85
+ };
86
+ };
87
+ legendLeft: {
88
+ type?: undefined;
89
+ default?: undefined;
90
+ } | {
91
+ type: any;
92
+ default: string | number | boolean | string[] | Events | {
93
+ [key: string]: any;
94
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
95
+ [key: string]: any;
96
+ chartType: "bar";
97
+ plugin: "1";
98
+ layer: "2";
99
+ };
100
+ };
101
+ legendTop: {
102
+ type?: undefined;
103
+ default?: undefined;
104
+ } | {
105
+ type: any;
106
+ default: string | number | boolean | string[] | Events | {
107
+ [key: string]: any;
108
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
109
+ [key: string]: any;
110
+ chartType: "bar";
111
+ plugin: "1";
112
+ layer: "2";
113
+ };
114
+ };
115
+ legendOrient: {
116
+ type?: undefined;
117
+ default?: undefined;
118
+ } | {
119
+ type: any;
120
+ default: string | number | boolean | string[] | Events | {
121
+ [key: string]: any;
122
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
123
+ [key: string]: any;
124
+ chartType: "bar";
125
+ plugin: "1";
126
+ layer: "2";
127
+ };
128
+ };
129
+ xAxisSplitLineShow: {
130
+ type?: undefined;
131
+ default?: undefined;
132
+ } | {
133
+ type: any;
134
+ default: string | number | boolean | string[] | Events | {
135
+ [key: string]: any;
136
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
137
+ [key: string]: any;
138
+ chartType: "bar";
139
+ plugin: "1";
140
+ layer: "2";
141
+ };
142
+ };
143
+ xAxisLabelColor: {
144
+ type?: undefined;
145
+ default?: undefined;
146
+ } | {
147
+ type: any;
148
+ default: string | number | boolean | string[] | Events | {
149
+ [key: string]: any;
150
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
151
+ [key: string]: any;
152
+ chartType: "bar";
153
+ plugin: "1";
154
+ layer: "2";
155
+ };
156
+ };
157
+ xAxisLineStyleColor: {
158
+ type?: undefined;
159
+ default?: undefined;
160
+ } | {
161
+ type: any;
162
+ default: string | number | boolean | string[] | Events | {
163
+ [key: string]: any;
164
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
165
+ [key: string]: any;
166
+ chartType: "bar";
167
+ plugin: "1";
168
+ layer: "2";
169
+ };
170
+ };
171
+ xAxisTickShow: {
172
+ type?: undefined;
173
+ default?: undefined;
174
+ } | {
175
+ type: any;
176
+ default: string | number | boolean | string[] | Events | {
177
+ [key: string]: any;
178
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
179
+ [key: string]: any;
180
+ chartType: "bar";
181
+ plugin: "1";
182
+ layer: "2";
183
+ };
184
+ };
185
+ yAxisSplitLineShow: {
186
+ type?: undefined;
187
+ default?: undefined;
188
+ } | {
189
+ type: any;
190
+ default: string | number | boolean | string[] | Events | {
191
+ [key: string]: any;
192
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
193
+ [key: string]: any;
194
+ chartType: "bar";
195
+ plugin: "1";
196
+ layer: "2";
197
+ };
198
+ };
199
+ xAxisSplitLineStyleColor: {
200
+ type?: undefined;
201
+ default?: undefined;
202
+ } | {
203
+ type: any;
204
+ default: string | number | boolean | string[] | Events | {
205
+ [key: string]: any;
206
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
207
+ [key: string]: any;
208
+ chartType: "bar";
209
+ plugin: "1";
210
+ layer: "2";
211
+ };
212
+ };
213
+ yAxisSplitLineStyleColor: {
214
+ type?: undefined;
215
+ default?: undefined;
216
+ } | {
217
+ type: any;
218
+ default: string | number | boolean | string[] | Events | {
219
+ [key: string]: any;
220
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
221
+ [key: string]: any;
222
+ chartType: "bar";
223
+ plugin: "1";
224
+ layer: "2";
225
+ };
226
+ };
227
+ yAxisLabelColor: {
228
+ type?: undefined;
229
+ default?: undefined;
230
+ } | {
231
+ type: any;
232
+ default: string | number | boolean | string[] | Events | {
233
+ [key: string]: any;
234
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
235
+ [key: string]: any;
236
+ chartType: "bar";
237
+ plugin: "1";
238
+ layer: "2";
239
+ };
240
+ };
241
+ yAxisLineStyleColor: {
242
+ type?: undefined;
243
+ default?: undefined;
244
+ } | {
245
+ type: any;
246
+ default: string | number | boolean | string[] | Events | {
247
+ [key: string]: any;
248
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
249
+ [key: string]: any;
250
+ chartType: "bar";
251
+ plugin: "1";
252
+ layer: "2";
253
+ };
254
+ };
255
+ yAxisLabelFormatter: {
256
+ type?: undefined;
257
+ default?: undefined;
258
+ } | {
259
+ type: any;
260
+ default: string | number | boolean | string[] | Events | {
261
+ [key: string]: any;
262
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
263
+ [key: string]: any;
264
+ chartType: "bar";
265
+ plugin: "1";
266
+ layer: "2";
267
+ };
268
+ };
269
+ valueTypeDataFieldNames: {
270
+ type?: undefined;
271
+ default?: undefined;
272
+ } | {
273
+ type: any;
274
+ default: string | number | boolean | string[] | Events | {
275
+ [key: string]: any;
276
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
277
+ [key: string]: any;
278
+ chartType: "bar";
279
+ plugin: "1";
280
+ layer: "2";
281
+ };
282
+ };
283
+ keyTypeDataFieldNames: {
284
+ type?: undefined;
285
+ default?: undefined;
286
+ } | {
287
+ type: any;
288
+ default: string | number | boolean | string[] | Events | {
289
+ [key: string]: any;
290
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
291
+ [key: string]: any;
292
+ chartType: "bar";
293
+ plugin: "1";
294
+ layer: "2";
295
+ };
296
+ };
297
+ dataFieldConfigType: {
298
+ type?: undefined;
299
+ default?: undefined;
300
+ } | {
301
+ type: any;
302
+ default: string | number | boolean | string[] | Events | {
303
+ [key: string]: any;
304
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
305
+ [key: string]: any;
306
+ chartType: "bar";
307
+ plugin: "1";
308
+ layer: "2";
309
+ };
310
+ };
311
+ tooltipShow: {
312
+ type?: undefined;
313
+ default?: undefined;
314
+ } | {
315
+ type: any;
316
+ default: string | number | boolean | string[] | Events | {
317
+ [key: string]: any;
318
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
319
+ [key: string]: any;
320
+ chartType: "bar";
321
+ plugin: "1";
322
+ layer: "2";
323
+ };
324
+ };
325
+ tooltipTrigger: {
326
+ type?: undefined;
327
+ default?: undefined;
328
+ } | {
329
+ type: any;
330
+ default: string | number | boolean | string[] | Events | {
331
+ [key: string]: any;
332
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
333
+ [key: string]: any;
334
+ chartType: "bar";
335
+ plugin: "1";
336
+ layer: "2";
337
+ };
338
+ };
339
+ tooltipTextStyleColor: {
340
+ type?: undefined;
341
+ default?: undefined;
342
+ } | {
343
+ type: any;
344
+ default: string | number | boolean | string[] | Events | {
345
+ [key: string]: any;
346
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
347
+ [key: string]: any;
348
+ chartType: "bar";
349
+ plugin: "1";
350
+ layer: "2";
351
+ };
352
+ };
353
+ tooltipFormatter: {
354
+ type?: undefined;
355
+ default?: undefined;
356
+ } | {
357
+ type: any;
358
+ default: string | number | boolean | string[] | Events | {
359
+ [key: string]: any;
360
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
361
+ [key: string]: any;
362
+ chartType: "bar";
363
+ plugin: "1";
364
+ layer: "2";
365
+ };
366
+ };
367
+ gridContainLabel: {
368
+ type?: undefined;
369
+ default?: undefined;
370
+ } | {
371
+ type: any;
372
+ default: string | number | boolean | string[] | Events | {
373
+ [key: string]: any;
374
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
375
+ [key: string]: any;
376
+ chartType: "bar";
377
+ plugin: "1";
378
+ layer: "2";
379
+ };
380
+ };
381
+ gridTop: {
382
+ type?: undefined;
383
+ default?: undefined;
384
+ } | {
385
+ type: any;
386
+ default: string | number | boolean | string[] | Events | {
387
+ [key: string]: any;
388
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
389
+ [key: string]: any;
390
+ chartType: "bar";
391
+ plugin: "1";
392
+ layer: "2";
393
+ };
394
+ };
395
+ gridBottom: {
396
+ type?: undefined;
397
+ default?: undefined;
398
+ } | {
399
+ type: any;
400
+ default: string | number | boolean | string[] | Events | {
401
+ [key: string]: any;
402
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
403
+ [key: string]: any;
404
+ chartType: "bar";
405
+ plugin: "1";
406
+ layer: "2";
407
+ };
408
+ };
409
+ gridLeft: {
410
+ type?: undefined;
411
+ default?: undefined;
412
+ } | {
413
+ type: any;
414
+ default: string | number | boolean | string[] | Events | {
415
+ [key: string]: any;
416
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
417
+ [key: string]: any;
418
+ chartType: "bar";
419
+ plugin: "1";
420
+ layer: "2";
421
+ };
422
+ };
423
+ gridRight: {
424
+ type?: undefined;
425
+ default?: undefined;
426
+ } | {
427
+ type: any;
428
+ default: string | number | boolean | string[] | Events | {
429
+ [key: string]: any;
430
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
431
+ [key: string]: any;
432
+ chartType: "bar";
433
+ plugin: "1";
434
+ layer: "2";
435
+ };
436
+ };
437
+ barWidth: {
438
+ type?: undefined;
439
+ default?: undefined;
440
+ } | {
441
+ type: any;
442
+ default: string | number | boolean | string[] | Events | {
443
+ [key: string]: any;
444
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
445
+ [key: string]: any;
446
+ chartType: "bar";
447
+ plugin: "1";
448
+ layer: "2";
449
+ };
450
+ };
451
+ graphicConfig: {
452
+ type?: undefined;
453
+ default?: undefined;
454
+ } | {
455
+ type: any;
456
+ default: string | number | boolean | string[] | Events | {
457
+ [key: string]: any;
458
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
459
+ [key: string]: any;
460
+ chartType: "bar";
461
+ plugin: "1";
462
+ layer: "2";
463
+ };
464
+ };
465
+ toolboxShow: {
466
+ type?: undefined;
467
+ default?: undefined;
468
+ } | {
469
+ type: any;
470
+ default: string | number | boolean | string[] | Events | {
471
+ [key: string]: any;
472
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
473
+ [key: string]: any;
474
+ chartType: "bar";
475
+ plugin: "1";
476
+ layer: "2";
477
+ };
478
+ };
479
+ toolboxOrient: {
480
+ type?: undefined;
481
+ default?: undefined;
482
+ } | {
483
+ type: any;
484
+ default: string | number | boolean | string[] | Events | {
485
+ [key: string]: any;
486
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
487
+ [key: string]: any;
488
+ chartType: "bar";
489
+ plugin: "1";
490
+ layer: "2";
491
+ };
492
+ };
493
+ toolboxItemSize: {
494
+ type?: undefined;
495
+ default?: undefined;
496
+ } | {
497
+ type: any;
498
+ default: string | number | boolean | string[] | Events | {
499
+ [key: string]: any;
500
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
501
+ [key: string]: any;
502
+ chartType: "bar";
503
+ plugin: "1";
504
+ layer: "2";
505
+ };
506
+ };
507
+ toolboxItemGap: {
508
+ type?: undefined;
509
+ default?: undefined;
510
+ } | {
511
+ type: any;
512
+ default: string | number | boolean | string[] | Events | {
513
+ [key: string]: any;
514
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
515
+ [key: string]: any;
516
+ chartType: "bar";
517
+ plugin: "1";
518
+ layer: "2";
519
+ };
520
+ };
521
+ toolboxLeft: {
522
+ type?: undefined;
523
+ default?: undefined;
524
+ } | {
525
+ type: any;
526
+ default: string | number | boolean | string[] | Events | {
527
+ [key: string]: any;
528
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
529
+ [key: string]: any;
530
+ chartType: "bar";
531
+ plugin: "1";
532
+ layer: "2";
533
+ };
534
+ };
535
+ toolboxTop: {
536
+ type?: undefined;
537
+ default?: undefined;
538
+ } | {
539
+ type: any;
540
+ default: string | number | boolean | string[] | Events | {
541
+ [key: string]: any;
542
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
543
+ [key: string]: any;
544
+ chartType: "bar";
545
+ plugin: "1";
546
+ layer: "2";
547
+ };
548
+ };
549
+ toolboxIconStyleBorderColor: {
550
+ type?: undefined;
551
+ default?: undefined;
552
+ } | {
553
+ type: any;
554
+ default: string | number | boolean | string[] | Events | {
555
+ [key: string]: any;
556
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
557
+ [key: string]: any;
558
+ chartType: "bar";
559
+ plugin: "1";
560
+ layer: "2";
561
+ };
562
+ };
563
+ toolboxDownloadUrl: {
564
+ type?: undefined;
565
+ default?: undefined;
566
+ } | {
567
+ type: any;
568
+ default: string | number | boolean | string[] | Events | {
569
+ [key: string]: any;
570
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
571
+ [key: string]: any;
572
+ chartType: "bar";
573
+ plugin: "1";
574
+ layer: "2";
575
+ };
576
+ };
577
+ toolboxInfoText: {
578
+ type?: undefined;
579
+ default?: undefined;
580
+ } | {
581
+ type: any;
582
+ default: string | number | boolean | string[] | Events | {
583
+ [key: string]: any;
584
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
585
+ [key: string]: any;
586
+ chartType: "bar";
587
+ plugin: "1";
588
+ layer: "2";
589
+ };
590
+ };
591
+ isUseHorizontalAxis: {
592
+ type?: undefined;
593
+ default?: undefined;
594
+ } | {
595
+ type: any;
596
+ default: string | number | boolean | string[] | Events | {
597
+ [key: string]: any;
598
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
599
+ [key: string]: any;
600
+ chartType: "bar";
601
+ plugin: "1";
602
+ layer: "2";
603
+ };
604
+ };
605
+ axisInverse: {
606
+ type?: undefined;
607
+ default?: undefined;
608
+ } | {
609
+ type: any;
610
+ default: string | number | boolean | string[] | Events | {
611
+ [key: string]: any;
612
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
613
+ [key: string]: any;
614
+ chartType: "bar";
615
+ plugin: "1";
616
+ layer: "2";
617
+ };
618
+ };
619
+ id: {
620
+ type?: undefined;
621
+ default?: undefined;
622
+ } | {
623
+ type: any;
624
+ default: string | number | boolean | string[] | Events | {
625
+ [key: string]: any;
626
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
627
+ [key: string]: any;
628
+ chartType: "bar";
629
+ plugin: "1";
630
+ layer: "2";
631
+ };
632
+ };
633
+ name: {
634
+ type?: undefined;
635
+ default?: undefined;
636
+ } | {
637
+ type: any;
638
+ default: string | number | boolean | string[] | Events | {
639
+ [key: string]: any;
640
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
641
+ [key: string]: any;
642
+ chartType: "bar";
643
+ plugin: "1";
644
+ layer: "2";
645
+ };
646
+ };
647
+ keyName: {
648
+ type?: undefined;
649
+ default?: undefined;
650
+ } | {
651
+ type: any;
652
+ default: string | number | boolean | string[] | Events | {
653
+ [key: string]: any;
654
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
655
+ [key: string]: any;
656
+ chartType: "bar";
657
+ plugin: "1";
658
+ layer: "2";
659
+ };
660
+ };
661
+ type: {
662
+ type?: undefined;
663
+ default?: undefined;
664
+ } | {
665
+ type: any;
666
+ default: string | number | boolean | string[] | Events | {
667
+ [key: string]: any;
668
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
669
+ [key: string]: any;
670
+ chartType: "bar";
671
+ plugin: "1";
672
+ layer: "2";
673
+ };
674
+ };
675
+ width: {
676
+ type?: undefined;
677
+ default?: undefined;
678
+ } | {
679
+ type: any;
680
+ default: string | number | boolean | string[] | Events | {
681
+ [key: string]: any;
682
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
683
+ [key: string]: any;
684
+ chartType: "bar";
685
+ plugin: "1";
686
+ layer: "2";
687
+ };
688
+ };
689
+ height: {
690
+ type?: undefined;
691
+ default?: undefined;
692
+ } | {
693
+ type: any;
694
+ default: string | number | boolean | string[] | Events | {
695
+ [key: string]: any;
696
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
697
+ [key: string]: any;
698
+ chartType: "bar";
699
+ plugin: "1";
700
+ layer: "2";
701
+ };
702
+ };
703
+ position: {
704
+ type?: undefined;
705
+ default?: undefined;
706
+ } | {
707
+ type: any;
708
+ default: string | number | boolean | string[] | Events | {
709
+ [key: string]: any;
710
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
711
+ [key: string]: any;
712
+ chartType: "bar";
713
+ plugin: "1";
714
+ layer: "2";
715
+ };
716
+ };
717
+ top: {
718
+ type?: undefined;
719
+ default?: undefined;
720
+ } | {
721
+ type: any;
722
+ default: string | number | boolean | string[] | Events | {
723
+ [key: string]: any;
724
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
725
+ [key: string]: any;
726
+ chartType: "bar";
727
+ plugin: "1";
728
+ layer: "2";
729
+ };
730
+ };
731
+ left: {
732
+ type?: undefined;
733
+ default?: undefined;
734
+ } | {
735
+ type: any;
736
+ default: string | number | boolean | string[] | Events | {
737
+ [key: string]: any;
738
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
739
+ [key: string]: any;
740
+ chartType: "bar";
741
+ plugin: "1";
742
+ layer: "2";
743
+ };
744
+ };
745
+ zIndex: {
746
+ type?: undefined;
747
+ default?: undefined;
748
+ } | {
749
+ type: any;
750
+ default: string | number | boolean | string[] | Events | {
751
+ [key: string]: any;
752
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
753
+ [key: string]: any;
754
+ chartType: "bar";
755
+ plugin: "1";
756
+ layer: "2";
757
+ };
758
+ };
759
+ rotate: {
760
+ type?: undefined;
761
+ default?: undefined;
762
+ } | {
763
+ type: any;
764
+ default: string | number | boolean | string[] | Events | {
765
+ [key: string]: any;
766
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
767
+ [key: string]: any;
768
+ chartType: "bar";
769
+ plugin: "1";
770
+ layer: "2";
771
+ };
772
+ };
773
+ isShow: {
774
+ type?: undefined;
775
+ default?: undefined;
776
+ } | {
777
+ type: any;
778
+ default: string | number | boolean | string[] | Events | {
779
+ [key: string]: any;
780
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
781
+ [key: string]: any;
782
+ chartType: "bar";
783
+ plugin: "1";
784
+ layer: "2";
785
+ };
786
+ };
787
+ isRender: {
788
+ type?: undefined;
789
+ default?: undefined;
790
+ } | {
791
+ type: any;
792
+ default: string | number | boolean | string[] | Events | {
793
+ [key: string]: any;
794
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
795
+ [key: string]: any;
796
+ chartType: "bar";
797
+ plugin: "1";
798
+ layer: "2";
799
+ };
800
+ };
801
+ events: {
802
+ type?: undefined;
803
+ default?: undefined;
804
+ } | {
805
+ type: any;
806
+ default: string | number | boolean | string[] | Events | {
807
+ [key: string]: any;
808
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
809
+ [key: string]: any;
810
+ chartType: "bar";
811
+ plugin: "1";
812
+ layer: "2";
813
+ };
814
+ };
815
+ requestUrl: {
816
+ type?: undefined;
817
+ default?: undefined;
818
+ } | {
819
+ type: any;
820
+ default: string | number | boolean | string[] | Events | {
821
+ [key: string]: any;
822
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
823
+ [key: string]: any;
824
+ chartType: "bar";
825
+ plugin: "1";
826
+ layer: "2";
827
+ };
828
+ };
829
+ requestMethod: {
830
+ type?: undefined;
831
+ default?: undefined;
832
+ } | {
833
+ type: any;
834
+ default: string | number | boolean | string[] | Events | {
835
+ [key: string]: any;
836
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
837
+ [key: string]: any;
838
+ chartType: "bar";
839
+ plugin: "1";
840
+ layer: "2";
841
+ };
842
+ };
843
+ requestHeaders: {
844
+ type?: undefined;
845
+ default?: undefined;
846
+ } | {
847
+ type: any;
848
+ default: string | number | boolean | string[] | Events | {
849
+ [key: string]: any;
850
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
851
+ [key: string]: any;
852
+ chartType: "bar";
853
+ plugin: "1";
854
+ layer: "2";
855
+ };
856
+ };
857
+ isOpenRequestTimer: {
858
+ type?: undefined;
859
+ default?: undefined;
860
+ } | {
861
+ type: any;
862
+ default: string | number | boolean | string[] | Events | {
863
+ [key: string]: any;
864
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
865
+ [key: string]: any;
866
+ chartType: "bar";
867
+ plugin: "1";
868
+ layer: "2";
869
+ };
870
+ };
871
+ requestInterval: {
872
+ type?: undefined;
873
+ default?: undefined;
874
+ } | {
875
+ type: any;
876
+ default: string | number | boolean | string[] | Events | {
877
+ [key: string]: any;
878
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
879
+ [key: string]: any;
880
+ chartType: "bar";
881
+ plugin: "1";
882
+ layer: "2";
883
+ };
884
+ };
885
+ requestParams: {
886
+ type?: undefined;
887
+ default?: undefined;
888
+ } | {
889
+ type: any;
890
+ default: string | number | boolean | string[] | Events | {
891
+ [key: string]: any;
892
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
893
+ [key: string]: any;
894
+ chartType: "bar";
895
+ plugin: "1";
896
+ layer: "2";
897
+ };
898
+ };
899
+ requestSort: {
900
+ type?: undefined;
901
+ default?: undefined;
902
+ } | {
903
+ type: any;
904
+ default: string | number | boolean | string[] | Events | {
905
+ [key: string]: any;
906
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
907
+ [key: string]: any;
908
+ chartType: "bar";
909
+ plugin: "1";
910
+ layer: "2";
911
+ };
912
+ };
913
+ dataType: {
914
+ type?: undefined;
915
+ default?: undefined;
916
+ } | {
917
+ type: any;
918
+ default: string | number | boolean | string[] | Events | {
919
+ [key: string]: any;
920
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
921
+ [key: string]: any;
922
+ chartType: "bar";
923
+ plugin: "1";
924
+ layer: "2";
925
+ };
926
+ };
927
+ }, {
928
+ option: import("vue").ComputedRef<{
929
+ toolbox: {
930
+ show: string | number | boolean | {
931
+ [key: string]: any;
932
+ };
933
+ left: string | number | boolean | {
934
+ [key: string]: any;
935
+ };
936
+ top: string | number | boolean | {
937
+ [key: string]: any;
938
+ };
939
+ itemSize: string | number | boolean | {
940
+ [key: string]: any;
941
+ };
942
+ itemGap: string | number | boolean | {
943
+ [key: string]: any;
944
+ };
945
+ feature: {
946
+ myDownload: {
947
+ show: boolean;
948
+ title: string;
949
+ icon: string;
950
+ onclick(): void;
951
+ };
952
+ myDataZoom: {
953
+ show: boolean;
954
+ title: string;
955
+ icon: string;
956
+ onclick(): void;
957
+ };
958
+ myInfo: {
959
+ show: boolean;
960
+ title: string;
961
+ icon: string;
962
+ onclick(): void;
963
+ };
964
+ };
965
+ };
966
+ title: {
967
+ text: string | number | boolean | {
968
+ [key: string]: any;
969
+ };
970
+ subtext: string | number | boolean | {
971
+ [key: string]: any;
972
+ };
973
+ left: string;
974
+ };
975
+ grid: {
976
+ top: string | number | boolean | {
977
+ [key: string]: any;
978
+ };
979
+ bottom: string | number | boolean | {
980
+ [key: string]: any;
981
+ };
982
+ left: string | number | boolean | {
983
+ [key: string]: any;
984
+ };
985
+ right: string | number | boolean | {
986
+ [key: string]: any;
987
+ };
988
+ containLabel: string | number | boolean | {
989
+ [key: string]: any;
990
+ };
991
+ };
992
+ color: string | number | boolean | {
993
+ [key: string]: any;
994
+ };
995
+ tooltip: {
996
+ trigger: string;
997
+ show: string | number | boolean | {
998
+ [key: string]: any;
999
+ };
1000
+ formatter: string;
1001
+ textStyle: {
1002
+ color: string | number | boolean | {
1003
+ [key: string]: any;
1004
+ };
1005
+ };
1006
+ };
1007
+ legend: {
1008
+ show: string | number | boolean | {
1009
+ [key: string]: any;
1010
+ };
1011
+ orient: string | number | boolean | {
1012
+ [key: string]: any;
1013
+ };
1014
+ top: string | number | boolean | {
1015
+ [key: string]: any;
1016
+ };
1017
+ left: string | number | boolean | {
1018
+ [key: string]: any;
1019
+ };
1020
+ textStyle: {
1021
+ color: string | number | boolean | {
1022
+ [key: string]: any;
1023
+ };
1024
+ };
1025
+ };
1026
+ xAxis: {
1027
+ type: string;
1028
+ data: {
1029
+ [x: string]: any;
1030
+ }[];
1031
+ inverse: string | number | boolean | {
1032
+ [key: string]: any;
1033
+ };
1034
+ splitLine: {
1035
+ show: string | number | boolean | {
1036
+ [key: string]: any;
1037
+ };
1038
+ lineStyle: {
1039
+ color: string | number | boolean | {
1040
+ [key: string]: any;
1041
+ };
1042
+ };
1043
+ };
1044
+ axisLabel: {
1045
+ color: string | number | boolean | {
1046
+ [key: string]: any;
1047
+ };
1048
+ };
1049
+ axisLine: {
1050
+ lineStyle: {
1051
+ color: string | number | boolean | {
1052
+ [key: string]: any;
1053
+ };
1054
+ };
1055
+ };
1056
+ axisTick: {
1057
+ show: string | number | boolean | {
1058
+ [key: string]: any;
1059
+ };
1060
+ };
1061
+ };
1062
+ yAxis: {
1063
+ type: string;
1064
+ data: {
1065
+ [x: string]: any;
1066
+ }[];
1067
+ inverse: string | number | boolean | {
1068
+ [key: string]: any;
1069
+ };
1070
+ splitLine: {
1071
+ show: string | number | boolean | {
1072
+ [key: string]: any;
1073
+ };
1074
+ lineStyle: {
1075
+ color: string | number | boolean | {
1076
+ [key: string]: any;
1077
+ };
1078
+ };
1079
+ };
1080
+ axisLabel: {
1081
+ color: string | number | boolean | {
1082
+ [key: string]: any;
1083
+ };
1084
+ formatter(value: string): string;
1085
+ };
1086
+ axisLine: {
1087
+ lineStyle: {
1088
+ color: string | number | boolean | {
1089
+ [key: string]: any;
1090
+ };
1091
+ };
1092
+ };
1093
+ };
1094
+ series: any[];
1095
+ }>;
1096
+ style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
1097
+ refreshData: () => void;
1098
+ click: () => void;
1099
+ loading: import("vue").Ref<boolean>;
1100
+ visible: import("vue").Ref<boolean>;
1101
+ hideModal: () => void;
1102
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1103
+ data: {
1104
+ type?: undefined;
1105
+ default?: undefined;
1106
+ } | {
1107
+ type: any;
1108
+ default: string | number | boolean | string[] | Events | {
1109
+ [key: string]: any;
1110
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1111
+ [key: string]: any;
1112
+ chartType: "bar";
1113
+ plugin: "1";
1114
+ layer: "2";
1115
+ };
1116
+ };
1117
+ titleText: {
1118
+ type?: undefined;
1119
+ default?: undefined;
1120
+ } | {
1121
+ type: any;
1122
+ default: string | number | boolean | string[] | Events | {
1123
+ [key: string]: any;
1124
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1125
+ [key: string]: any;
1126
+ chartType: "bar";
1127
+ plugin: "1";
1128
+ layer: "2";
1129
+ };
1130
+ };
1131
+ titleSubtext: {
1132
+ type?: undefined;
1133
+ default?: undefined;
1134
+ } | {
1135
+ type: any;
1136
+ default: string | number | boolean | string[] | Events | {
1137
+ [key: string]: any;
1138
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1139
+ [key: string]: any;
1140
+ chartType: "bar";
1141
+ plugin: "1";
1142
+ layer: "2";
1143
+ };
1144
+ };
1145
+ colors: {
1146
+ type?: undefined;
1147
+ default?: undefined;
1148
+ } | {
1149
+ type: any;
1150
+ default: string | number | boolean | string[] | Events | {
1151
+ [key: string]: any;
1152
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1153
+ [key: string]: any;
1154
+ chartType: "bar";
1155
+ plugin: "1";
1156
+ layer: "2";
1157
+ };
1158
+ };
1159
+ legendShow: {
1160
+ type?: undefined;
1161
+ default?: undefined;
1162
+ } | {
1163
+ type: any;
1164
+ default: string | number | boolean | string[] | Events | {
1165
+ [key: string]: any;
1166
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1167
+ [key: string]: any;
1168
+ chartType: "bar";
1169
+ plugin: "1";
1170
+ layer: "2";
1171
+ };
1172
+ };
1173
+ legendTextStyleColor: {
1174
+ type?: undefined;
1175
+ default?: undefined;
1176
+ } | {
1177
+ type: any;
1178
+ default: string | number | boolean | string[] | Events | {
1179
+ [key: string]: any;
1180
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1181
+ [key: string]: any;
1182
+ chartType: "bar";
1183
+ plugin: "1";
1184
+ layer: "2";
1185
+ };
1186
+ };
1187
+ legendLeft: {
1188
+ type?: undefined;
1189
+ default?: undefined;
1190
+ } | {
1191
+ type: any;
1192
+ default: string | number | boolean | string[] | Events | {
1193
+ [key: string]: any;
1194
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1195
+ [key: string]: any;
1196
+ chartType: "bar";
1197
+ plugin: "1";
1198
+ layer: "2";
1199
+ };
1200
+ };
1201
+ legendTop: {
1202
+ type?: undefined;
1203
+ default?: undefined;
1204
+ } | {
1205
+ type: any;
1206
+ default: string | number | boolean | string[] | Events | {
1207
+ [key: string]: any;
1208
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1209
+ [key: string]: any;
1210
+ chartType: "bar";
1211
+ plugin: "1";
1212
+ layer: "2";
1213
+ };
1214
+ };
1215
+ legendOrient: {
1216
+ type?: undefined;
1217
+ default?: undefined;
1218
+ } | {
1219
+ type: any;
1220
+ default: string | number | boolean | string[] | Events | {
1221
+ [key: string]: any;
1222
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1223
+ [key: string]: any;
1224
+ chartType: "bar";
1225
+ plugin: "1";
1226
+ layer: "2";
1227
+ };
1228
+ };
1229
+ xAxisSplitLineShow: {
1230
+ type?: undefined;
1231
+ default?: undefined;
1232
+ } | {
1233
+ type: any;
1234
+ default: string | number | boolean | string[] | Events | {
1235
+ [key: string]: any;
1236
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1237
+ [key: string]: any;
1238
+ chartType: "bar";
1239
+ plugin: "1";
1240
+ layer: "2";
1241
+ };
1242
+ };
1243
+ xAxisLabelColor: {
1244
+ type?: undefined;
1245
+ default?: undefined;
1246
+ } | {
1247
+ type: any;
1248
+ default: string | number | boolean | string[] | Events | {
1249
+ [key: string]: any;
1250
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1251
+ [key: string]: any;
1252
+ chartType: "bar";
1253
+ plugin: "1";
1254
+ layer: "2";
1255
+ };
1256
+ };
1257
+ xAxisLineStyleColor: {
1258
+ type?: undefined;
1259
+ default?: undefined;
1260
+ } | {
1261
+ type: any;
1262
+ default: string | number | boolean | string[] | Events | {
1263
+ [key: string]: any;
1264
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1265
+ [key: string]: any;
1266
+ chartType: "bar";
1267
+ plugin: "1";
1268
+ layer: "2";
1269
+ };
1270
+ };
1271
+ xAxisTickShow: {
1272
+ type?: undefined;
1273
+ default?: undefined;
1274
+ } | {
1275
+ type: any;
1276
+ default: string | number | boolean | string[] | Events | {
1277
+ [key: string]: any;
1278
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1279
+ [key: string]: any;
1280
+ chartType: "bar";
1281
+ plugin: "1";
1282
+ layer: "2";
1283
+ };
1284
+ };
1285
+ yAxisSplitLineShow: {
1286
+ type?: undefined;
1287
+ default?: undefined;
1288
+ } | {
1289
+ type: any;
1290
+ default: string | number | boolean | string[] | Events | {
1291
+ [key: string]: any;
1292
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1293
+ [key: string]: any;
1294
+ chartType: "bar";
1295
+ plugin: "1";
1296
+ layer: "2";
1297
+ };
1298
+ };
1299
+ xAxisSplitLineStyleColor: {
1300
+ type?: undefined;
1301
+ default?: undefined;
1302
+ } | {
1303
+ type: any;
1304
+ default: string | number | boolean | string[] | Events | {
1305
+ [key: string]: any;
1306
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1307
+ [key: string]: any;
1308
+ chartType: "bar";
1309
+ plugin: "1";
1310
+ layer: "2";
1311
+ };
1312
+ };
1313
+ yAxisSplitLineStyleColor: {
1314
+ type?: undefined;
1315
+ default?: undefined;
1316
+ } | {
1317
+ type: any;
1318
+ default: string | number | boolean | string[] | Events | {
1319
+ [key: string]: any;
1320
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1321
+ [key: string]: any;
1322
+ chartType: "bar";
1323
+ plugin: "1";
1324
+ layer: "2";
1325
+ };
1326
+ };
1327
+ yAxisLabelColor: {
1328
+ type?: undefined;
1329
+ default?: undefined;
1330
+ } | {
1331
+ type: any;
1332
+ default: string | number | boolean | string[] | Events | {
1333
+ [key: string]: any;
1334
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1335
+ [key: string]: any;
1336
+ chartType: "bar";
1337
+ plugin: "1";
1338
+ layer: "2";
1339
+ };
1340
+ };
1341
+ yAxisLineStyleColor: {
1342
+ type?: undefined;
1343
+ default?: undefined;
1344
+ } | {
1345
+ type: any;
1346
+ default: string | number | boolean | string[] | Events | {
1347
+ [key: string]: any;
1348
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1349
+ [key: string]: any;
1350
+ chartType: "bar";
1351
+ plugin: "1";
1352
+ layer: "2";
1353
+ };
1354
+ };
1355
+ yAxisLabelFormatter: {
1356
+ type?: undefined;
1357
+ default?: undefined;
1358
+ } | {
1359
+ type: any;
1360
+ default: string | number | boolean | string[] | Events | {
1361
+ [key: string]: any;
1362
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1363
+ [key: string]: any;
1364
+ chartType: "bar";
1365
+ plugin: "1";
1366
+ layer: "2";
1367
+ };
1368
+ };
1369
+ valueTypeDataFieldNames: {
1370
+ type?: undefined;
1371
+ default?: undefined;
1372
+ } | {
1373
+ type: any;
1374
+ default: string | number | boolean | string[] | Events | {
1375
+ [key: string]: any;
1376
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1377
+ [key: string]: any;
1378
+ chartType: "bar";
1379
+ plugin: "1";
1380
+ layer: "2";
1381
+ };
1382
+ };
1383
+ keyTypeDataFieldNames: {
1384
+ type?: undefined;
1385
+ default?: undefined;
1386
+ } | {
1387
+ type: any;
1388
+ default: string | number | boolean | string[] | Events | {
1389
+ [key: string]: any;
1390
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1391
+ [key: string]: any;
1392
+ chartType: "bar";
1393
+ plugin: "1";
1394
+ layer: "2";
1395
+ };
1396
+ };
1397
+ dataFieldConfigType: {
1398
+ type?: undefined;
1399
+ default?: undefined;
1400
+ } | {
1401
+ type: any;
1402
+ default: string | number | boolean | string[] | Events | {
1403
+ [key: string]: any;
1404
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1405
+ [key: string]: any;
1406
+ chartType: "bar";
1407
+ plugin: "1";
1408
+ layer: "2";
1409
+ };
1410
+ };
1411
+ tooltipShow: {
1412
+ type?: undefined;
1413
+ default?: undefined;
1414
+ } | {
1415
+ type: any;
1416
+ default: string | number | boolean | string[] | Events | {
1417
+ [key: string]: any;
1418
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1419
+ [key: string]: any;
1420
+ chartType: "bar";
1421
+ plugin: "1";
1422
+ layer: "2";
1423
+ };
1424
+ };
1425
+ tooltipTrigger: {
1426
+ type?: undefined;
1427
+ default?: undefined;
1428
+ } | {
1429
+ type: any;
1430
+ default: string | number | boolean | string[] | Events | {
1431
+ [key: string]: any;
1432
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1433
+ [key: string]: any;
1434
+ chartType: "bar";
1435
+ plugin: "1";
1436
+ layer: "2";
1437
+ };
1438
+ };
1439
+ tooltipTextStyleColor: {
1440
+ type?: undefined;
1441
+ default?: undefined;
1442
+ } | {
1443
+ type: any;
1444
+ default: string | number | boolean | string[] | Events | {
1445
+ [key: string]: any;
1446
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1447
+ [key: string]: any;
1448
+ chartType: "bar";
1449
+ plugin: "1";
1450
+ layer: "2";
1451
+ };
1452
+ };
1453
+ tooltipFormatter: {
1454
+ type?: undefined;
1455
+ default?: undefined;
1456
+ } | {
1457
+ type: any;
1458
+ default: string | number | boolean | string[] | Events | {
1459
+ [key: string]: any;
1460
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1461
+ [key: string]: any;
1462
+ chartType: "bar";
1463
+ plugin: "1";
1464
+ layer: "2";
1465
+ };
1466
+ };
1467
+ gridContainLabel: {
1468
+ type?: undefined;
1469
+ default?: undefined;
1470
+ } | {
1471
+ type: any;
1472
+ default: string | number | boolean | string[] | Events | {
1473
+ [key: string]: any;
1474
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1475
+ [key: string]: any;
1476
+ chartType: "bar";
1477
+ plugin: "1";
1478
+ layer: "2";
1479
+ };
1480
+ };
1481
+ gridTop: {
1482
+ type?: undefined;
1483
+ default?: undefined;
1484
+ } | {
1485
+ type: any;
1486
+ default: string | number | boolean | string[] | Events | {
1487
+ [key: string]: any;
1488
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1489
+ [key: string]: any;
1490
+ chartType: "bar";
1491
+ plugin: "1";
1492
+ layer: "2";
1493
+ };
1494
+ };
1495
+ gridBottom: {
1496
+ type?: undefined;
1497
+ default?: undefined;
1498
+ } | {
1499
+ type: any;
1500
+ default: string | number | boolean | string[] | Events | {
1501
+ [key: string]: any;
1502
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1503
+ [key: string]: any;
1504
+ chartType: "bar";
1505
+ plugin: "1";
1506
+ layer: "2";
1507
+ };
1508
+ };
1509
+ gridLeft: {
1510
+ type?: undefined;
1511
+ default?: undefined;
1512
+ } | {
1513
+ type: any;
1514
+ default: string | number | boolean | string[] | Events | {
1515
+ [key: string]: any;
1516
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1517
+ [key: string]: any;
1518
+ chartType: "bar";
1519
+ plugin: "1";
1520
+ layer: "2";
1521
+ };
1522
+ };
1523
+ gridRight: {
1524
+ type?: undefined;
1525
+ default?: undefined;
1526
+ } | {
1527
+ type: any;
1528
+ default: string | number | boolean | string[] | Events | {
1529
+ [key: string]: any;
1530
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1531
+ [key: string]: any;
1532
+ chartType: "bar";
1533
+ plugin: "1";
1534
+ layer: "2";
1535
+ };
1536
+ };
1537
+ barWidth: {
1538
+ type?: undefined;
1539
+ default?: undefined;
1540
+ } | {
1541
+ type: any;
1542
+ default: string | number | boolean | string[] | Events | {
1543
+ [key: string]: any;
1544
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1545
+ [key: string]: any;
1546
+ chartType: "bar";
1547
+ plugin: "1";
1548
+ layer: "2";
1549
+ };
1550
+ };
1551
+ graphicConfig: {
1552
+ type?: undefined;
1553
+ default?: undefined;
1554
+ } | {
1555
+ type: any;
1556
+ default: string | number | boolean | string[] | Events | {
1557
+ [key: string]: any;
1558
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1559
+ [key: string]: any;
1560
+ chartType: "bar";
1561
+ plugin: "1";
1562
+ layer: "2";
1563
+ };
1564
+ };
1565
+ toolboxShow: {
1566
+ type?: undefined;
1567
+ default?: undefined;
1568
+ } | {
1569
+ type: any;
1570
+ default: string | number | boolean | string[] | Events | {
1571
+ [key: string]: any;
1572
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1573
+ [key: string]: any;
1574
+ chartType: "bar";
1575
+ plugin: "1";
1576
+ layer: "2";
1577
+ };
1578
+ };
1579
+ toolboxOrient: {
1580
+ type?: undefined;
1581
+ default?: undefined;
1582
+ } | {
1583
+ type: any;
1584
+ default: string | number | boolean | string[] | Events | {
1585
+ [key: string]: any;
1586
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1587
+ [key: string]: any;
1588
+ chartType: "bar";
1589
+ plugin: "1";
1590
+ layer: "2";
1591
+ };
1592
+ };
1593
+ toolboxItemSize: {
1594
+ type?: undefined;
1595
+ default?: undefined;
1596
+ } | {
1597
+ type: any;
1598
+ default: string | number | boolean | string[] | Events | {
1599
+ [key: string]: any;
1600
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1601
+ [key: string]: any;
1602
+ chartType: "bar";
1603
+ plugin: "1";
1604
+ layer: "2";
1605
+ };
1606
+ };
1607
+ toolboxItemGap: {
1608
+ type?: undefined;
1609
+ default?: undefined;
1610
+ } | {
1611
+ type: any;
1612
+ default: string | number | boolean | string[] | Events | {
1613
+ [key: string]: any;
1614
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1615
+ [key: string]: any;
1616
+ chartType: "bar";
1617
+ plugin: "1";
1618
+ layer: "2";
1619
+ };
1620
+ };
1621
+ toolboxLeft: {
1622
+ type?: undefined;
1623
+ default?: undefined;
1624
+ } | {
1625
+ type: any;
1626
+ default: string | number | boolean | string[] | Events | {
1627
+ [key: string]: any;
1628
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1629
+ [key: string]: any;
1630
+ chartType: "bar";
1631
+ plugin: "1";
1632
+ layer: "2";
1633
+ };
1634
+ };
1635
+ toolboxTop: {
1636
+ type?: undefined;
1637
+ default?: undefined;
1638
+ } | {
1639
+ type: any;
1640
+ default: string | number | boolean | string[] | Events | {
1641
+ [key: string]: any;
1642
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1643
+ [key: string]: any;
1644
+ chartType: "bar";
1645
+ plugin: "1";
1646
+ layer: "2";
1647
+ };
1648
+ };
1649
+ toolboxIconStyleBorderColor: {
1650
+ type?: undefined;
1651
+ default?: undefined;
1652
+ } | {
1653
+ type: any;
1654
+ default: string | number | boolean | string[] | Events | {
1655
+ [key: string]: any;
1656
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1657
+ [key: string]: any;
1658
+ chartType: "bar";
1659
+ plugin: "1";
1660
+ layer: "2";
1661
+ };
1662
+ };
1663
+ toolboxDownloadUrl: {
1664
+ type?: undefined;
1665
+ default?: undefined;
1666
+ } | {
1667
+ type: any;
1668
+ default: string | number | boolean | string[] | Events | {
1669
+ [key: string]: any;
1670
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1671
+ [key: string]: any;
1672
+ chartType: "bar";
1673
+ plugin: "1";
1674
+ layer: "2";
1675
+ };
1676
+ };
1677
+ toolboxInfoText: {
1678
+ type?: undefined;
1679
+ default?: undefined;
1680
+ } | {
1681
+ type: any;
1682
+ default: string | number | boolean | string[] | Events | {
1683
+ [key: string]: any;
1684
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1685
+ [key: string]: any;
1686
+ chartType: "bar";
1687
+ plugin: "1";
1688
+ layer: "2";
1689
+ };
1690
+ };
1691
+ isUseHorizontalAxis: {
1692
+ type?: undefined;
1693
+ default?: undefined;
1694
+ } | {
1695
+ type: any;
1696
+ default: string | number | boolean | string[] | Events | {
1697
+ [key: string]: any;
1698
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1699
+ [key: string]: any;
1700
+ chartType: "bar";
1701
+ plugin: "1";
1702
+ layer: "2";
1703
+ };
1704
+ };
1705
+ axisInverse: {
1706
+ type?: undefined;
1707
+ default?: undefined;
1708
+ } | {
1709
+ type: any;
1710
+ default: string | number | boolean | string[] | Events | {
1711
+ [key: string]: any;
1712
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1713
+ [key: string]: any;
1714
+ chartType: "bar";
1715
+ plugin: "1";
1716
+ layer: "2";
1717
+ };
1718
+ };
1719
+ id: {
1720
+ type?: undefined;
1721
+ default?: undefined;
1722
+ } | {
1723
+ type: any;
1724
+ default: string | number | boolean | string[] | Events | {
1725
+ [key: string]: any;
1726
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1727
+ [key: string]: any;
1728
+ chartType: "bar";
1729
+ plugin: "1";
1730
+ layer: "2";
1731
+ };
1732
+ };
1733
+ name: {
1734
+ type?: undefined;
1735
+ default?: undefined;
1736
+ } | {
1737
+ type: any;
1738
+ default: string | number | boolean | string[] | Events | {
1739
+ [key: string]: any;
1740
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1741
+ [key: string]: any;
1742
+ chartType: "bar";
1743
+ plugin: "1";
1744
+ layer: "2";
1745
+ };
1746
+ };
1747
+ keyName: {
1748
+ type?: undefined;
1749
+ default?: undefined;
1750
+ } | {
1751
+ type: any;
1752
+ default: string | number | boolean | string[] | Events | {
1753
+ [key: string]: any;
1754
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1755
+ [key: string]: any;
1756
+ chartType: "bar";
1757
+ plugin: "1";
1758
+ layer: "2";
1759
+ };
1760
+ };
1761
+ type: {
1762
+ type?: undefined;
1763
+ default?: undefined;
1764
+ } | {
1765
+ type: any;
1766
+ default: string | number | boolean | string[] | Events | {
1767
+ [key: string]: any;
1768
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1769
+ [key: string]: any;
1770
+ chartType: "bar";
1771
+ plugin: "1";
1772
+ layer: "2";
1773
+ };
1774
+ };
1775
+ width: {
1776
+ type?: undefined;
1777
+ default?: undefined;
1778
+ } | {
1779
+ type: any;
1780
+ default: string | number | boolean | string[] | Events | {
1781
+ [key: string]: any;
1782
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1783
+ [key: string]: any;
1784
+ chartType: "bar";
1785
+ plugin: "1";
1786
+ layer: "2";
1787
+ };
1788
+ };
1789
+ height: {
1790
+ type?: undefined;
1791
+ default?: undefined;
1792
+ } | {
1793
+ type: any;
1794
+ default: string | number | boolean | string[] | Events | {
1795
+ [key: string]: any;
1796
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1797
+ [key: string]: any;
1798
+ chartType: "bar";
1799
+ plugin: "1";
1800
+ layer: "2";
1801
+ };
1802
+ };
1803
+ position: {
1804
+ type?: undefined;
1805
+ default?: undefined;
1806
+ } | {
1807
+ type: any;
1808
+ default: string | number | boolean | string[] | Events | {
1809
+ [key: string]: any;
1810
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1811
+ [key: string]: any;
1812
+ chartType: "bar";
1813
+ plugin: "1";
1814
+ layer: "2";
1815
+ };
1816
+ };
1817
+ top: {
1818
+ type?: undefined;
1819
+ default?: undefined;
1820
+ } | {
1821
+ type: any;
1822
+ default: string | number | boolean | string[] | Events | {
1823
+ [key: string]: any;
1824
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1825
+ [key: string]: any;
1826
+ chartType: "bar";
1827
+ plugin: "1";
1828
+ layer: "2";
1829
+ };
1830
+ };
1831
+ left: {
1832
+ type?: undefined;
1833
+ default?: undefined;
1834
+ } | {
1835
+ type: any;
1836
+ default: string | number | boolean | string[] | Events | {
1837
+ [key: string]: any;
1838
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1839
+ [key: string]: any;
1840
+ chartType: "bar";
1841
+ plugin: "1";
1842
+ layer: "2";
1843
+ };
1844
+ };
1845
+ zIndex: {
1846
+ type?: undefined;
1847
+ default?: undefined;
1848
+ } | {
1849
+ type: any;
1850
+ default: string | number | boolean | string[] | Events | {
1851
+ [key: string]: any;
1852
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1853
+ [key: string]: any;
1854
+ chartType: "bar";
1855
+ plugin: "1";
1856
+ layer: "2";
1857
+ };
1858
+ };
1859
+ rotate: {
1860
+ type?: undefined;
1861
+ default?: undefined;
1862
+ } | {
1863
+ type: any;
1864
+ default: string | number | boolean | string[] | Events | {
1865
+ [key: string]: any;
1866
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1867
+ [key: string]: any;
1868
+ chartType: "bar";
1869
+ plugin: "1";
1870
+ layer: "2";
1871
+ };
1872
+ };
1873
+ isShow: {
1874
+ type?: undefined;
1875
+ default?: undefined;
1876
+ } | {
1877
+ type: any;
1878
+ default: string | number | boolean | string[] | Events | {
1879
+ [key: string]: any;
1880
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1881
+ [key: string]: any;
1882
+ chartType: "bar";
1883
+ plugin: "1";
1884
+ layer: "2";
1885
+ };
1886
+ };
1887
+ isRender: {
1888
+ type?: undefined;
1889
+ default?: undefined;
1890
+ } | {
1891
+ type: any;
1892
+ default: string | number | boolean | string[] | Events | {
1893
+ [key: string]: any;
1894
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1895
+ [key: string]: any;
1896
+ chartType: "bar";
1897
+ plugin: "1";
1898
+ layer: "2";
1899
+ };
1900
+ };
1901
+ events: {
1902
+ type?: undefined;
1903
+ default?: undefined;
1904
+ } | {
1905
+ type: any;
1906
+ default: string | number | boolean | string[] | Events | {
1907
+ [key: string]: any;
1908
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1909
+ [key: string]: any;
1910
+ chartType: "bar";
1911
+ plugin: "1";
1912
+ layer: "2";
1913
+ };
1914
+ };
1915
+ requestUrl: {
1916
+ type?: undefined;
1917
+ default?: undefined;
1918
+ } | {
1919
+ type: any;
1920
+ default: string | number | boolean | string[] | Events | {
1921
+ [key: string]: any;
1922
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1923
+ [key: string]: any;
1924
+ chartType: "bar";
1925
+ plugin: "1";
1926
+ layer: "2";
1927
+ };
1928
+ };
1929
+ requestMethod: {
1930
+ type?: undefined;
1931
+ default?: undefined;
1932
+ } | {
1933
+ type: any;
1934
+ default: string | number | boolean | string[] | Events | {
1935
+ [key: string]: any;
1936
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1937
+ [key: string]: any;
1938
+ chartType: "bar";
1939
+ plugin: "1";
1940
+ layer: "2";
1941
+ };
1942
+ };
1943
+ requestHeaders: {
1944
+ type?: undefined;
1945
+ default?: undefined;
1946
+ } | {
1947
+ type: any;
1948
+ default: string | number | boolean | string[] | Events | {
1949
+ [key: string]: any;
1950
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1951
+ [key: string]: any;
1952
+ chartType: "bar";
1953
+ plugin: "1";
1954
+ layer: "2";
1955
+ };
1956
+ };
1957
+ isOpenRequestTimer: {
1958
+ type?: undefined;
1959
+ default?: undefined;
1960
+ } | {
1961
+ type: any;
1962
+ default: string | number | boolean | string[] | Events | {
1963
+ [key: string]: any;
1964
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1965
+ [key: string]: any;
1966
+ chartType: "bar";
1967
+ plugin: "1";
1968
+ layer: "2";
1969
+ };
1970
+ };
1971
+ requestInterval: {
1972
+ type?: undefined;
1973
+ default?: undefined;
1974
+ } | {
1975
+ type: any;
1976
+ default: string | number | boolean | string[] | Events | {
1977
+ [key: string]: any;
1978
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1979
+ [key: string]: any;
1980
+ chartType: "bar";
1981
+ plugin: "1";
1982
+ layer: "2";
1983
+ };
1984
+ };
1985
+ requestParams: {
1986
+ type?: undefined;
1987
+ default?: undefined;
1988
+ } | {
1989
+ type: any;
1990
+ default: string | number | boolean | string[] | Events | {
1991
+ [key: string]: any;
1992
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
1993
+ [key: string]: any;
1994
+ chartType: "bar";
1995
+ plugin: "1";
1996
+ layer: "2";
1997
+ };
1998
+ };
1999
+ requestSort: {
2000
+ type?: undefined;
2001
+ default?: undefined;
2002
+ } | {
2003
+ type: any;
2004
+ default: string | number | boolean | string[] | Events | {
2005
+ [key: string]: any;
2006
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
2007
+ [key: string]: any;
2008
+ chartType: "bar";
2009
+ plugin: "1";
2010
+ layer: "2";
2011
+ };
2012
+ };
2013
+ dataType: {
2014
+ type?: undefined;
2015
+ default?: undefined;
2016
+ } | {
2017
+ type: any;
2018
+ default: string | number | boolean | string[] | Events | {
2019
+ [key: string]: any;
2020
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
2021
+ [key: string]: any;
2022
+ chartType: "bar";
2023
+ plugin: "1";
2024
+ layer: "2";
2025
+ };
2026
+ };
2027
+ }>>, {}>;
2028
+ export default _sfc_main;