@ecan-bi/datav 1.0.50 → 1.0.51

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 (120) hide show
  1. package/package.json +1 -1
  2. package/types/_utils/constant.d.ts +9 -0
  3. package/types/_utils/hooks/index.d.ts +15 -0
  4. package/types/_utils/hooks/useDownloadFile.d.ts +2 -0
  5. package/types/_utils/hooks/useEmitEvent.d.ts +7 -0
  6. package/types/_utils/hooks/useHrefParamsToGlobalVariables.d.ts +2 -0
  7. package/types/_utils/hooks/useImagePath.d.ts +2 -0
  8. package/types/_utils/hooks/useIndicatorData.d.ts +4 -0
  9. package/types/_utils/hooks/useOnEvent.d.ts +6 -0
  10. package/types/_utils/hooks/usePageUrl.d.ts +2 -0
  11. package/types/_utils/hooks/usePickComponentStyle.d.ts +9 -0
  12. package/types/_utils/hooks/usePickEchartsData.d.ts +2 -0
  13. package/types/_utils/hooks/useRequestData.d.ts +6 -0
  14. package/types/_utils/hooks/useRequestDiagramData.d.ts +6 -0
  15. package/types/_utils/hooks/useTooltipFormatter.d.ts +4 -0
  16. package/types/_utils/hooks/useTransformChartDataByAttrKey.d.ts +13 -0
  17. package/types/_utils/hooks/useTransformChartDataByAttrValue.d.ts +13 -0
  18. package/types/_utils/hooks/useValueFormatter.d.ts +2 -0
  19. package/types/_utils/hooks/useVariablesInText.d.ts +4 -0
  20. package/types/_utils/props.d.ts +71 -0
  21. package/types/_utils/request.d.ts +2 -0
  22. package/types/_utils/util.d.ts +20 -0
  23. package/types/_utils/withInstall.d.ts +5 -0
  24. package/types/common/echarts/Echarts.d.ts +418 -0
  25. package/types/common/echarts/composables/api.d.ts +7 -0
  26. package/types/common/echarts/composables/autoresize.d.ts +6 -0
  27. package/types/common/echarts/composables/index.d.ts +3 -0
  28. package/types/common/echarts/composables/loading.d.ts +10 -0
  29. package/types/common/echarts/index.d.ts +2 -0
  30. package/types/common/echarts/types.d.ts +20 -0
  31. package/types/common/echarts/utils.d.ts +6 -0
  32. package/types/common/index.d.ts +3 -0
  33. package/types/common/skeleton/Skeleton.vue.d.ts +14 -0
  34. package/types/common/skeleton/index.d.ts +2 -0
  35. package/types/common/spin/Spin.vue.d.ts +18 -0
  36. package/types/common/spin/index.d.ts +2 -0
  37. package/types/components.d.ts +9 -0
  38. package/types/container/border/Border.vue.d.ts +623 -0
  39. package/types/container/border/index.d.ts +623 -0
  40. package/types/container/border/props.d.ts +315 -0
  41. package/types/container/index.d.ts +3 -0
  42. package/types/container/modal/Modal.vue.d.ts +505 -0
  43. package/types/container/modal/index.d.ts +506 -0
  44. package/types/container/modal/props.d.ts +179 -0
  45. package/types/container/tabs/Tabs.vue.d.ts +475 -0
  46. package/types/container/tabs/index.d.ts +476 -0
  47. package/types/container/tabs/props.d.ts +251 -0
  48. package/types/control/button/Button.vue.d.ts +514 -0
  49. package/types/control/button/index.d.ts +514 -0
  50. package/types/control/button/props.d.ts +265 -0
  51. package/types/control/date-picker/DatePicker.vue.d.ts +480 -0
  52. package/types/control/date-picker/index.d.ts +479 -0
  53. package/types/control/date-picker/props.d.ts +245 -0
  54. package/types/control/index.d.ts +5 -0
  55. package/types/control/input/Input.vue.d.ts +438 -0
  56. package/types/control/input/index.d.ts +439 -0
  57. package/types/control/input/props.d.ts +224 -0
  58. package/types/control/range-picker/RangePicker.vue.d.ts +596 -0
  59. package/types/control/range-picker/index.d.ts +595 -0
  60. package/types/control/range-picker/props.d.ts +245 -0
  61. package/types/control/select/Select.vue.d.ts +613 -0
  62. package/types/control/select/index.d.ts +613 -0
  63. package/types/control/select/props.d.ts +321 -0
  64. package/types/graph/bar/Bar.vue.d.ts +1963 -0
  65. package/types/graph/bar/index.d.ts +1963 -0
  66. package/types/graph/bar/props.d.ts +954 -0
  67. package/types/graph/combo-graph/ComboGraph.vue.d.ts +1008 -0
  68. package/types/graph/combo-graph/index.d.ts +1009 -0
  69. package/types/graph/combo-graph/props.d.ts +501 -0
  70. package/types/graph/custom-graph/CustomGraph.vue.d.ts +537 -0
  71. package/types/graph/custom-graph/index.d.ts +537 -0
  72. package/types/graph/custom-graph/props.d.ts +274 -0
  73. package/types/graph/index.d.ts +6 -0
  74. package/types/graph/line/Line.vue.d.ts +973 -0
  75. package/types/graph/line/index.d.ts +974 -0
  76. package/types/graph/line/props.d.ts +481 -0
  77. package/types/graph/pie/Pie.vue.d.ts +1049 -0
  78. package/types/graph/pie/index.d.ts +1050 -0
  79. package/types/graph/pie/props.d.ts +533 -0
  80. package/types/graph/scatter/Scatter.vue.d.ts +949 -0
  81. package/types/graph/scatter/index.d.ts +950 -0
  82. package/types/graph/scatter/props.d.ts +468 -0
  83. package/types/index.d.ts +6 -0
  84. package/types/map/index.d.ts +1 -0
  85. package/types/map/map/Map.vue.d.ts +1699 -0
  86. package/types/map/map/index.d.ts +1700 -0
  87. package/types/map/map/props.d.ts +829 -0
  88. package/types/media/image/Image.vue.d.ts +476 -0
  89. package/types/media/image/index.d.ts +477 -0
  90. package/types/media/image/props.d.ts +244 -0
  91. package/types/media/index.d.ts +1 -0
  92. package/types/setting/index.d.ts +3 -0
  93. package/types/setting/page-config/PageConfig.vue.d.ts +112 -0
  94. package/types/setting/page-config/index.d.ts +113 -0
  95. package/types/setting/page-config/props.d.ts +61 -0
  96. package/types/setting/provider-config/ProviderConfig.vue.d.ts +78 -0
  97. package/types/setting/provider-config/index.d.ts +79 -0
  98. package/types/setting/provider-config/props.d.ts +47 -0
  99. package/types/setting/renderer/Renderer.vue.d.ts +22 -0
  100. package/types/setting/renderer/index.d.ts +23 -0
  101. package/types/setting/renderer/props.d.ts +17 -0
  102. package/types/table/index.d.ts +1 -0
  103. package/types/table/table/Table.vue.d.ts +1644 -0
  104. package/types/table/table/index.d.ts +1644 -0
  105. package/types/table/table/props.d.ts +836 -0
  106. package/types/text/index.d.ts +5 -0
  107. package/types/text/list/List.vue.d.ts +849 -0
  108. package/types/text/list/index.d.ts +849 -0
  109. package/types/text/list/props.d.ts +441 -0
  110. package/types/text/proportion/Proportion.vue.d.ts +760 -0
  111. package/types/text/proportion/index.d.ts +760 -0
  112. package/types/text/proportion/props.d.ts +395 -0
  113. package/types/text/scroll-text/ScrollText.vue.d.ts +4 -0
  114. package/types/text/scroll-text/index.d.ts +4 -0
  115. package/types/text/text/Text.vue.d.ts +736 -0
  116. package/types/text/text/index.d.ts +736 -0
  117. package/types/text/text/props.d.ts +383 -0
  118. package/types/text/time-display/TimeDisplay.vue.d.ts +547 -0
  119. package/types/text/time-display/index.d.ts +548 -0
  120. package/types/text/time-display/props.d.ts +284 -0
@@ -0,0 +1,1963 @@
1
+ import { ValueTypeDataFieldNames, KeyTypeDataFieldNames, Events } 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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').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 | import('../../_utils/props').Data | {
585
+ [key: string]: any;
586
+ chartType: "bar";
587
+ plugin: "1";
588
+ layer: "2";
589
+ };
590
+ };
591
+ id: {
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 | import('../../_utils/props').Data | {
599
+ [key: string]: any;
600
+ chartType: "bar";
601
+ plugin: "1";
602
+ layer: "2";
603
+ };
604
+ };
605
+ name: {
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 | import('../../_utils/props').Data | {
613
+ [key: string]: any;
614
+ chartType: "bar";
615
+ plugin: "1";
616
+ layer: "2";
617
+ };
618
+ };
619
+ keyName: {
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 | import('../../_utils/props').Data | {
627
+ [key: string]: any;
628
+ chartType: "bar";
629
+ plugin: "1";
630
+ layer: "2";
631
+ };
632
+ };
633
+ type: {
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 | import('../../_utils/props').Data | {
641
+ [key: string]: any;
642
+ chartType: "bar";
643
+ plugin: "1";
644
+ layer: "2";
645
+ };
646
+ };
647
+ width: {
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 | import('../../_utils/props').Data | {
655
+ [key: string]: any;
656
+ chartType: "bar";
657
+ plugin: "1";
658
+ layer: "2";
659
+ };
660
+ };
661
+ height: {
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 | import('../../_utils/props').Data | {
669
+ [key: string]: any;
670
+ chartType: "bar";
671
+ plugin: "1";
672
+ layer: "2";
673
+ };
674
+ };
675
+ position: {
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 | import('../../_utils/props').Data | {
683
+ [key: string]: any;
684
+ chartType: "bar";
685
+ plugin: "1";
686
+ layer: "2";
687
+ };
688
+ };
689
+ top: {
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 | import('../../_utils/props').Data | {
697
+ [key: string]: any;
698
+ chartType: "bar";
699
+ plugin: "1";
700
+ layer: "2";
701
+ };
702
+ };
703
+ left: {
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 | import('../../_utils/props').Data | {
711
+ [key: string]: any;
712
+ chartType: "bar";
713
+ plugin: "1";
714
+ layer: "2";
715
+ };
716
+ };
717
+ zIndex: {
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 | import('../../_utils/props').Data | {
725
+ [key: string]: any;
726
+ chartType: "bar";
727
+ plugin: "1";
728
+ layer: "2";
729
+ };
730
+ };
731
+ rotate: {
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 | import('../../_utils/props').Data | {
739
+ [key: string]: any;
740
+ chartType: "bar";
741
+ plugin: "1";
742
+ layer: "2";
743
+ };
744
+ };
745
+ isShow: {
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 | import('../../_utils/props').Data | {
753
+ [key: string]: any;
754
+ chartType: "bar";
755
+ plugin: "1";
756
+ layer: "2";
757
+ };
758
+ };
759
+ isRender: {
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 | import('../../_utils/props').Data | {
767
+ [key: string]: any;
768
+ chartType: "bar";
769
+ plugin: "1";
770
+ layer: "2";
771
+ };
772
+ };
773
+ events: {
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 | import('../../_utils/props').Data | {
781
+ [key: string]: any;
782
+ chartType: "bar";
783
+ plugin: "1";
784
+ layer: "2";
785
+ };
786
+ };
787
+ requestUrl: {
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 | import('../../_utils/props').Data | {
795
+ [key: string]: any;
796
+ chartType: "bar";
797
+ plugin: "1";
798
+ layer: "2";
799
+ };
800
+ };
801
+ requestMethod: {
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 | import('../../_utils/props').Data | {
809
+ [key: string]: any;
810
+ chartType: "bar";
811
+ plugin: "1";
812
+ layer: "2";
813
+ };
814
+ };
815
+ requestHeaders: {
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 | import('../../_utils/props').Data | {
823
+ [key: string]: any;
824
+ chartType: "bar";
825
+ plugin: "1";
826
+ layer: "2";
827
+ };
828
+ };
829
+ isOpenRequestTimer: {
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 | import('../../_utils/props').Data | {
837
+ [key: string]: any;
838
+ chartType: "bar";
839
+ plugin: "1";
840
+ layer: "2";
841
+ };
842
+ };
843
+ requestInterval: {
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 | import('../../_utils/props').Data | {
851
+ [key: string]: any;
852
+ chartType: "bar";
853
+ plugin: "1";
854
+ layer: "2";
855
+ };
856
+ };
857
+ requestParams: {
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 | import('../../_utils/props').Data | {
865
+ [key: string]: any;
866
+ chartType: "bar";
867
+ plugin: "1";
868
+ layer: "2";
869
+ };
870
+ };
871
+ requestSort: {
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 | import('../../_utils/props').Data | {
879
+ [key: string]: any;
880
+ chartType: "bar";
881
+ plugin: "1";
882
+ layer: "2";
883
+ };
884
+ };
885
+ dataType: {
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 | import('../../_utils/props').Data | {
893
+ [key: string]: any;
894
+ chartType: "bar";
895
+ plugin: "1";
896
+ layer: "2";
897
+ };
898
+ };
899
+ }, {
900
+ option: import("vue").ComputedRef<{
901
+ toolbox: {
902
+ show: string | number | boolean | {
903
+ [key: string]: any;
904
+ };
905
+ left: string | number | boolean | {
906
+ [key: string]: any;
907
+ };
908
+ top: string | number | boolean | {
909
+ [key: string]: any;
910
+ };
911
+ itemSize: string | number | boolean | {
912
+ [key: string]: any;
913
+ };
914
+ itemGap: string | number | boolean | {
915
+ [key: string]: any;
916
+ };
917
+ feature: {
918
+ myDownload: {
919
+ show: boolean;
920
+ title: string;
921
+ icon: string;
922
+ onclick(): void;
923
+ };
924
+ myDataZoom: {
925
+ show: boolean;
926
+ title: string;
927
+ icon: string;
928
+ onclick(): void;
929
+ };
930
+ myInfo: {
931
+ show: boolean;
932
+ title: string;
933
+ icon: string;
934
+ onclick(): void;
935
+ };
936
+ };
937
+ };
938
+ title: {
939
+ text: string | number | boolean | {
940
+ [key: string]: any;
941
+ };
942
+ subtext: string | number | boolean | {
943
+ [key: string]: any;
944
+ };
945
+ left: string;
946
+ };
947
+ grid: {
948
+ top: string | number | boolean | {
949
+ [key: string]: any;
950
+ };
951
+ bottom: string | number | boolean | {
952
+ [key: string]: any;
953
+ };
954
+ left: string | number | boolean | {
955
+ [key: string]: any;
956
+ };
957
+ right: string | number | boolean | {
958
+ [key: string]: any;
959
+ };
960
+ containLabel: string | number | boolean | {
961
+ [key: string]: any;
962
+ };
963
+ };
964
+ color: string | number | boolean | {
965
+ [key: string]: any;
966
+ };
967
+ tooltip: {
968
+ trigger: string;
969
+ show: string | number | boolean | {
970
+ [key: string]: any;
971
+ };
972
+ formatter: string;
973
+ textStyle: {
974
+ color: string | number | boolean | {
975
+ [key: string]: any;
976
+ };
977
+ };
978
+ };
979
+ legend: {
980
+ show: string | number | boolean | {
981
+ [key: string]: any;
982
+ };
983
+ orient: string | number | boolean | {
984
+ [key: string]: any;
985
+ };
986
+ top: string | number | boolean | {
987
+ [key: string]: any;
988
+ };
989
+ left: string | number | boolean | {
990
+ [key: string]: any;
991
+ };
992
+ textStyle: {
993
+ color: string | number | boolean | {
994
+ [key: string]: any;
995
+ };
996
+ };
997
+ };
998
+ xAxis: {
999
+ type: string;
1000
+ data: {
1001
+ [x: string]: any;
1002
+ }[];
1003
+ splitLine: {
1004
+ show: string | number | boolean | {
1005
+ [key: string]: any;
1006
+ };
1007
+ lineStyle: {
1008
+ color: string | number | boolean | {
1009
+ [key: string]: any;
1010
+ };
1011
+ };
1012
+ };
1013
+ axisLabel: {
1014
+ color: string | number | boolean | {
1015
+ [key: string]: any;
1016
+ };
1017
+ };
1018
+ axisLine: {
1019
+ lineStyle: {
1020
+ color: string | number | boolean | {
1021
+ [key: string]: any;
1022
+ };
1023
+ };
1024
+ };
1025
+ axisTick: {
1026
+ show: string | number | boolean | {
1027
+ [key: string]: any;
1028
+ };
1029
+ };
1030
+ };
1031
+ yAxis: {
1032
+ type: string;
1033
+ splitLine: {
1034
+ show: string | number | boolean | {
1035
+ [key: string]: any;
1036
+ };
1037
+ lineStyle: {
1038
+ color: string | number | boolean | {
1039
+ [key: string]: any;
1040
+ };
1041
+ };
1042
+ };
1043
+ axisLabel: {
1044
+ color: string | number | boolean | {
1045
+ [key: string]: any;
1046
+ };
1047
+ formatter(value: string): string;
1048
+ };
1049
+ axisLine: {
1050
+ lineStyle: {
1051
+ color: string | number | boolean | {
1052
+ [key: string]: any;
1053
+ };
1054
+ };
1055
+ };
1056
+ };
1057
+ series: any[];
1058
+ }>;
1059
+ style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
1060
+ refreshData: () => void;
1061
+ click: () => void;
1062
+ loading: import("vue").Ref<boolean>;
1063
+ visible: import("vue").Ref<boolean>;
1064
+ hideModal: () => void;
1065
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1066
+ data: {
1067
+ type?: undefined;
1068
+ default?: undefined;
1069
+ } | {
1070
+ type: any;
1071
+ default: string | number | boolean | string[] | Events | {
1072
+ [key: string]: any;
1073
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1074
+ [key: string]: any;
1075
+ chartType: "bar";
1076
+ plugin: "1";
1077
+ layer: "2";
1078
+ };
1079
+ };
1080
+ titleText: {
1081
+ type?: undefined;
1082
+ default?: undefined;
1083
+ } | {
1084
+ type: any;
1085
+ default: string | number | boolean | string[] | Events | {
1086
+ [key: string]: any;
1087
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1088
+ [key: string]: any;
1089
+ chartType: "bar";
1090
+ plugin: "1";
1091
+ layer: "2";
1092
+ };
1093
+ };
1094
+ titleSubtext: {
1095
+ type?: undefined;
1096
+ default?: undefined;
1097
+ } | {
1098
+ type: any;
1099
+ default: string | number | boolean | string[] | Events | {
1100
+ [key: string]: any;
1101
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1102
+ [key: string]: any;
1103
+ chartType: "bar";
1104
+ plugin: "1";
1105
+ layer: "2";
1106
+ };
1107
+ };
1108
+ colors: {
1109
+ type?: undefined;
1110
+ default?: undefined;
1111
+ } | {
1112
+ type: any;
1113
+ default: string | number | boolean | string[] | Events | {
1114
+ [key: string]: any;
1115
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1116
+ [key: string]: any;
1117
+ chartType: "bar";
1118
+ plugin: "1";
1119
+ layer: "2";
1120
+ };
1121
+ };
1122
+ legendShow: {
1123
+ type?: undefined;
1124
+ default?: undefined;
1125
+ } | {
1126
+ type: any;
1127
+ default: string | number | boolean | string[] | Events | {
1128
+ [key: string]: any;
1129
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1130
+ [key: string]: any;
1131
+ chartType: "bar";
1132
+ plugin: "1";
1133
+ layer: "2";
1134
+ };
1135
+ };
1136
+ legendTextStyleColor: {
1137
+ type?: undefined;
1138
+ default?: undefined;
1139
+ } | {
1140
+ type: any;
1141
+ default: string | number | boolean | string[] | Events | {
1142
+ [key: string]: any;
1143
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1144
+ [key: string]: any;
1145
+ chartType: "bar";
1146
+ plugin: "1";
1147
+ layer: "2";
1148
+ };
1149
+ };
1150
+ legendLeft: {
1151
+ type?: undefined;
1152
+ default?: undefined;
1153
+ } | {
1154
+ type: any;
1155
+ default: string | number | boolean | string[] | Events | {
1156
+ [key: string]: any;
1157
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1158
+ [key: string]: any;
1159
+ chartType: "bar";
1160
+ plugin: "1";
1161
+ layer: "2";
1162
+ };
1163
+ };
1164
+ legendTop: {
1165
+ type?: undefined;
1166
+ default?: undefined;
1167
+ } | {
1168
+ type: any;
1169
+ default: string | number | boolean | string[] | Events | {
1170
+ [key: string]: any;
1171
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1172
+ [key: string]: any;
1173
+ chartType: "bar";
1174
+ plugin: "1";
1175
+ layer: "2";
1176
+ };
1177
+ };
1178
+ legendOrient: {
1179
+ type?: undefined;
1180
+ default?: undefined;
1181
+ } | {
1182
+ type: any;
1183
+ default: string | number | boolean | string[] | Events | {
1184
+ [key: string]: any;
1185
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1186
+ [key: string]: any;
1187
+ chartType: "bar";
1188
+ plugin: "1";
1189
+ layer: "2";
1190
+ };
1191
+ };
1192
+ xAxisSplitLineShow: {
1193
+ type?: undefined;
1194
+ default?: undefined;
1195
+ } | {
1196
+ type: any;
1197
+ default: string | number | boolean | string[] | Events | {
1198
+ [key: string]: any;
1199
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1200
+ [key: string]: any;
1201
+ chartType: "bar";
1202
+ plugin: "1";
1203
+ layer: "2";
1204
+ };
1205
+ };
1206
+ xAxisLabelColor: {
1207
+ type?: undefined;
1208
+ default?: undefined;
1209
+ } | {
1210
+ type: any;
1211
+ default: string | number | boolean | string[] | Events | {
1212
+ [key: string]: any;
1213
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1214
+ [key: string]: any;
1215
+ chartType: "bar";
1216
+ plugin: "1";
1217
+ layer: "2";
1218
+ };
1219
+ };
1220
+ xAxisLineStyleColor: {
1221
+ type?: undefined;
1222
+ default?: undefined;
1223
+ } | {
1224
+ type: any;
1225
+ default: string | number | boolean | string[] | Events | {
1226
+ [key: string]: any;
1227
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1228
+ [key: string]: any;
1229
+ chartType: "bar";
1230
+ plugin: "1";
1231
+ layer: "2";
1232
+ };
1233
+ };
1234
+ xAxisTickShow: {
1235
+ type?: undefined;
1236
+ default?: undefined;
1237
+ } | {
1238
+ type: any;
1239
+ default: string | number | boolean | string[] | Events | {
1240
+ [key: string]: any;
1241
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1242
+ [key: string]: any;
1243
+ chartType: "bar";
1244
+ plugin: "1";
1245
+ layer: "2";
1246
+ };
1247
+ };
1248
+ yAxisSplitLineShow: {
1249
+ type?: undefined;
1250
+ default?: undefined;
1251
+ } | {
1252
+ type: any;
1253
+ default: string | number | boolean | string[] | Events | {
1254
+ [key: string]: any;
1255
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1256
+ [key: string]: any;
1257
+ chartType: "bar";
1258
+ plugin: "1";
1259
+ layer: "2";
1260
+ };
1261
+ };
1262
+ xAxisSplitLineStyleColor: {
1263
+ type?: undefined;
1264
+ default?: undefined;
1265
+ } | {
1266
+ type: any;
1267
+ default: string | number | boolean | string[] | Events | {
1268
+ [key: string]: any;
1269
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1270
+ [key: string]: any;
1271
+ chartType: "bar";
1272
+ plugin: "1";
1273
+ layer: "2";
1274
+ };
1275
+ };
1276
+ yAxisSplitLineStyleColor: {
1277
+ type?: undefined;
1278
+ default?: undefined;
1279
+ } | {
1280
+ type: any;
1281
+ default: string | number | boolean | string[] | Events | {
1282
+ [key: string]: any;
1283
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1284
+ [key: string]: any;
1285
+ chartType: "bar";
1286
+ plugin: "1";
1287
+ layer: "2";
1288
+ };
1289
+ };
1290
+ yAxisLabelColor: {
1291
+ type?: undefined;
1292
+ default?: undefined;
1293
+ } | {
1294
+ type: any;
1295
+ default: string | number | boolean | string[] | Events | {
1296
+ [key: string]: any;
1297
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1298
+ [key: string]: any;
1299
+ chartType: "bar";
1300
+ plugin: "1";
1301
+ layer: "2";
1302
+ };
1303
+ };
1304
+ yAxisLineStyleColor: {
1305
+ type?: undefined;
1306
+ default?: undefined;
1307
+ } | {
1308
+ type: any;
1309
+ default: string | number | boolean | string[] | Events | {
1310
+ [key: string]: any;
1311
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1312
+ [key: string]: any;
1313
+ chartType: "bar";
1314
+ plugin: "1";
1315
+ layer: "2";
1316
+ };
1317
+ };
1318
+ yAxisLabelFormatter: {
1319
+ type?: undefined;
1320
+ default?: undefined;
1321
+ } | {
1322
+ type: any;
1323
+ default: string | number | boolean | string[] | Events | {
1324
+ [key: string]: any;
1325
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1326
+ [key: string]: any;
1327
+ chartType: "bar";
1328
+ plugin: "1";
1329
+ layer: "2";
1330
+ };
1331
+ };
1332
+ valueTypeDataFieldNames: {
1333
+ type?: undefined;
1334
+ default?: undefined;
1335
+ } | {
1336
+ type: any;
1337
+ default: string | number | boolean | string[] | Events | {
1338
+ [key: string]: any;
1339
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1340
+ [key: string]: any;
1341
+ chartType: "bar";
1342
+ plugin: "1";
1343
+ layer: "2";
1344
+ };
1345
+ };
1346
+ keyTypeDataFieldNames: {
1347
+ type?: undefined;
1348
+ default?: undefined;
1349
+ } | {
1350
+ type: any;
1351
+ default: string | number | boolean | string[] | Events | {
1352
+ [key: string]: any;
1353
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1354
+ [key: string]: any;
1355
+ chartType: "bar";
1356
+ plugin: "1";
1357
+ layer: "2";
1358
+ };
1359
+ };
1360
+ dataFieldConfigType: {
1361
+ type?: undefined;
1362
+ default?: undefined;
1363
+ } | {
1364
+ type: any;
1365
+ default: string | number | boolean | string[] | Events | {
1366
+ [key: string]: any;
1367
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1368
+ [key: string]: any;
1369
+ chartType: "bar";
1370
+ plugin: "1";
1371
+ layer: "2";
1372
+ };
1373
+ };
1374
+ tooltipShow: {
1375
+ type?: undefined;
1376
+ default?: undefined;
1377
+ } | {
1378
+ type: any;
1379
+ default: string | number | boolean | string[] | Events | {
1380
+ [key: string]: any;
1381
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1382
+ [key: string]: any;
1383
+ chartType: "bar";
1384
+ plugin: "1";
1385
+ layer: "2";
1386
+ };
1387
+ };
1388
+ tooltipTrigger: {
1389
+ type?: undefined;
1390
+ default?: undefined;
1391
+ } | {
1392
+ type: any;
1393
+ default: string | number | boolean | string[] | Events | {
1394
+ [key: string]: any;
1395
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1396
+ [key: string]: any;
1397
+ chartType: "bar";
1398
+ plugin: "1";
1399
+ layer: "2";
1400
+ };
1401
+ };
1402
+ tooltipTextStyleColor: {
1403
+ type?: undefined;
1404
+ default?: undefined;
1405
+ } | {
1406
+ type: any;
1407
+ default: string | number | boolean | string[] | Events | {
1408
+ [key: string]: any;
1409
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1410
+ [key: string]: any;
1411
+ chartType: "bar";
1412
+ plugin: "1";
1413
+ layer: "2";
1414
+ };
1415
+ };
1416
+ tooltipFormatter: {
1417
+ type?: undefined;
1418
+ default?: undefined;
1419
+ } | {
1420
+ type: any;
1421
+ default: string | number | boolean | string[] | Events | {
1422
+ [key: string]: any;
1423
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1424
+ [key: string]: any;
1425
+ chartType: "bar";
1426
+ plugin: "1";
1427
+ layer: "2";
1428
+ };
1429
+ };
1430
+ gridContainLabel: {
1431
+ type?: undefined;
1432
+ default?: undefined;
1433
+ } | {
1434
+ type: any;
1435
+ default: string | number | boolean | string[] | Events | {
1436
+ [key: string]: any;
1437
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1438
+ [key: string]: any;
1439
+ chartType: "bar";
1440
+ plugin: "1";
1441
+ layer: "2";
1442
+ };
1443
+ };
1444
+ gridTop: {
1445
+ type?: undefined;
1446
+ default?: undefined;
1447
+ } | {
1448
+ type: any;
1449
+ default: string | number | boolean | string[] | Events | {
1450
+ [key: string]: any;
1451
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1452
+ [key: string]: any;
1453
+ chartType: "bar";
1454
+ plugin: "1";
1455
+ layer: "2";
1456
+ };
1457
+ };
1458
+ gridBottom: {
1459
+ type?: undefined;
1460
+ default?: undefined;
1461
+ } | {
1462
+ type: any;
1463
+ default: string | number | boolean | string[] | Events | {
1464
+ [key: string]: any;
1465
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1466
+ [key: string]: any;
1467
+ chartType: "bar";
1468
+ plugin: "1";
1469
+ layer: "2";
1470
+ };
1471
+ };
1472
+ gridLeft: {
1473
+ type?: undefined;
1474
+ default?: undefined;
1475
+ } | {
1476
+ type: any;
1477
+ default: string | number | boolean | string[] | Events | {
1478
+ [key: string]: any;
1479
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1480
+ [key: string]: any;
1481
+ chartType: "bar";
1482
+ plugin: "1";
1483
+ layer: "2";
1484
+ };
1485
+ };
1486
+ gridRight: {
1487
+ type?: undefined;
1488
+ default?: undefined;
1489
+ } | {
1490
+ type: any;
1491
+ default: string | number | boolean | string[] | Events | {
1492
+ [key: string]: any;
1493
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1494
+ [key: string]: any;
1495
+ chartType: "bar";
1496
+ plugin: "1";
1497
+ layer: "2";
1498
+ };
1499
+ };
1500
+ barWidth: {
1501
+ type?: undefined;
1502
+ default?: undefined;
1503
+ } | {
1504
+ type: any;
1505
+ default: string | number | boolean | string[] | Events | {
1506
+ [key: string]: any;
1507
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1508
+ [key: string]: any;
1509
+ chartType: "bar";
1510
+ plugin: "1";
1511
+ layer: "2";
1512
+ };
1513
+ };
1514
+ graphicConfig: {
1515
+ type?: undefined;
1516
+ default?: undefined;
1517
+ } | {
1518
+ type: any;
1519
+ default: string | number | boolean | string[] | Events | {
1520
+ [key: string]: any;
1521
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1522
+ [key: string]: any;
1523
+ chartType: "bar";
1524
+ plugin: "1";
1525
+ layer: "2";
1526
+ };
1527
+ };
1528
+ toolboxShow: {
1529
+ type?: undefined;
1530
+ default?: undefined;
1531
+ } | {
1532
+ type: any;
1533
+ default: string | number | boolean | string[] | Events | {
1534
+ [key: string]: any;
1535
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1536
+ [key: string]: any;
1537
+ chartType: "bar";
1538
+ plugin: "1";
1539
+ layer: "2";
1540
+ };
1541
+ };
1542
+ toolboxOrient: {
1543
+ type?: undefined;
1544
+ default?: undefined;
1545
+ } | {
1546
+ type: any;
1547
+ default: string | number | boolean | string[] | Events | {
1548
+ [key: string]: any;
1549
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1550
+ [key: string]: any;
1551
+ chartType: "bar";
1552
+ plugin: "1";
1553
+ layer: "2";
1554
+ };
1555
+ };
1556
+ toolboxItemSize: {
1557
+ type?: undefined;
1558
+ default?: undefined;
1559
+ } | {
1560
+ type: any;
1561
+ default: string | number | boolean | string[] | Events | {
1562
+ [key: string]: any;
1563
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1564
+ [key: string]: any;
1565
+ chartType: "bar";
1566
+ plugin: "1";
1567
+ layer: "2";
1568
+ };
1569
+ };
1570
+ toolboxItemGap: {
1571
+ type?: undefined;
1572
+ default?: undefined;
1573
+ } | {
1574
+ type: any;
1575
+ default: string | number | boolean | string[] | Events | {
1576
+ [key: string]: any;
1577
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1578
+ [key: string]: any;
1579
+ chartType: "bar";
1580
+ plugin: "1";
1581
+ layer: "2";
1582
+ };
1583
+ };
1584
+ toolboxLeft: {
1585
+ type?: undefined;
1586
+ default?: undefined;
1587
+ } | {
1588
+ type: any;
1589
+ default: string | number | boolean | string[] | Events | {
1590
+ [key: string]: any;
1591
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1592
+ [key: string]: any;
1593
+ chartType: "bar";
1594
+ plugin: "1";
1595
+ layer: "2";
1596
+ };
1597
+ };
1598
+ toolboxTop: {
1599
+ type?: undefined;
1600
+ default?: undefined;
1601
+ } | {
1602
+ type: any;
1603
+ default: string | number | boolean | string[] | Events | {
1604
+ [key: string]: any;
1605
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1606
+ [key: string]: any;
1607
+ chartType: "bar";
1608
+ plugin: "1";
1609
+ layer: "2";
1610
+ };
1611
+ };
1612
+ toolboxIconStyleBorderColor: {
1613
+ type?: undefined;
1614
+ default?: undefined;
1615
+ } | {
1616
+ type: any;
1617
+ default: string | number | boolean | string[] | Events | {
1618
+ [key: string]: any;
1619
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1620
+ [key: string]: any;
1621
+ chartType: "bar";
1622
+ plugin: "1";
1623
+ layer: "2";
1624
+ };
1625
+ };
1626
+ toolboxDownloadUrl: {
1627
+ type?: undefined;
1628
+ default?: undefined;
1629
+ } | {
1630
+ type: any;
1631
+ default: string | number | boolean | string[] | Events | {
1632
+ [key: string]: any;
1633
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1634
+ [key: string]: any;
1635
+ chartType: "bar";
1636
+ plugin: "1";
1637
+ layer: "2";
1638
+ };
1639
+ };
1640
+ toolboxInfoText: {
1641
+ type?: undefined;
1642
+ default?: undefined;
1643
+ } | {
1644
+ type: any;
1645
+ default: string | number | boolean | string[] | Events | {
1646
+ [key: string]: any;
1647
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1648
+ [key: string]: any;
1649
+ chartType: "bar";
1650
+ plugin: "1";
1651
+ layer: "2";
1652
+ };
1653
+ };
1654
+ id: {
1655
+ type?: undefined;
1656
+ default?: undefined;
1657
+ } | {
1658
+ type: any;
1659
+ default: string | number | boolean | string[] | Events | {
1660
+ [key: string]: any;
1661
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1662
+ [key: string]: any;
1663
+ chartType: "bar";
1664
+ plugin: "1";
1665
+ layer: "2";
1666
+ };
1667
+ };
1668
+ name: {
1669
+ type?: undefined;
1670
+ default?: undefined;
1671
+ } | {
1672
+ type: any;
1673
+ default: string | number | boolean | string[] | Events | {
1674
+ [key: string]: any;
1675
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1676
+ [key: string]: any;
1677
+ chartType: "bar";
1678
+ plugin: "1";
1679
+ layer: "2";
1680
+ };
1681
+ };
1682
+ keyName: {
1683
+ type?: undefined;
1684
+ default?: undefined;
1685
+ } | {
1686
+ type: any;
1687
+ default: string | number | boolean | string[] | Events | {
1688
+ [key: string]: any;
1689
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1690
+ [key: string]: any;
1691
+ chartType: "bar";
1692
+ plugin: "1";
1693
+ layer: "2";
1694
+ };
1695
+ };
1696
+ type: {
1697
+ type?: undefined;
1698
+ default?: undefined;
1699
+ } | {
1700
+ type: any;
1701
+ default: string | number | boolean | string[] | Events | {
1702
+ [key: string]: any;
1703
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1704
+ [key: string]: any;
1705
+ chartType: "bar";
1706
+ plugin: "1";
1707
+ layer: "2";
1708
+ };
1709
+ };
1710
+ width: {
1711
+ type?: undefined;
1712
+ default?: undefined;
1713
+ } | {
1714
+ type: any;
1715
+ default: string | number | boolean | string[] | Events | {
1716
+ [key: string]: any;
1717
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1718
+ [key: string]: any;
1719
+ chartType: "bar";
1720
+ plugin: "1";
1721
+ layer: "2";
1722
+ };
1723
+ };
1724
+ height: {
1725
+ type?: undefined;
1726
+ default?: undefined;
1727
+ } | {
1728
+ type: any;
1729
+ default: string | number | boolean | string[] | Events | {
1730
+ [key: string]: any;
1731
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1732
+ [key: string]: any;
1733
+ chartType: "bar";
1734
+ plugin: "1";
1735
+ layer: "2";
1736
+ };
1737
+ };
1738
+ position: {
1739
+ type?: undefined;
1740
+ default?: undefined;
1741
+ } | {
1742
+ type: any;
1743
+ default: string | number | boolean | string[] | Events | {
1744
+ [key: string]: any;
1745
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1746
+ [key: string]: any;
1747
+ chartType: "bar";
1748
+ plugin: "1";
1749
+ layer: "2";
1750
+ };
1751
+ };
1752
+ top: {
1753
+ type?: undefined;
1754
+ default?: undefined;
1755
+ } | {
1756
+ type: any;
1757
+ default: string | number | boolean | string[] | Events | {
1758
+ [key: string]: any;
1759
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1760
+ [key: string]: any;
1761
+ chartType: "bar";
1762
+ plugin: "1";
1763
+ layer: "2";
1764
+ };
1765
+ };
1766
+ left: {
1767
+ type?: undefined;
1768
+ default?: undefined;
1769
+ } | {
1770
+ type: any;
1771
+ default: string | number | boolean | string[] | Events | {
1772
+ [key: string]: any;
1773
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1774
+ [key: string]: any;
1775
+ chartType: "bar";
1776
+ plugin: "1";
1777
+ layer: "2";
1778
+ };
1779
+ };
1780
+ zIndex: {
1781
+ type?: undefined;
1782
+ default?: undefined;
1783
+ } | {
1784
+ type: any;
1785
+ default: string | number | boolean | string[] | Events | {
1786
+ [key: string]: any;
1787
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1788
+ [key: string]: any;
1789
+ chartType: "bar";
1790
+ plugin: "1";
1791
+ layer: "2";
1792
+ };
1793
+ };
1794
+ rotate: {
1795
+ type?: undefined;
1796
+ default?: undefined;
1797
+ } | {
1798
+ type: any;
1799
+ default: string | number | boolean | string[] | Events | {
1800
+ [key: string]: any;
1801
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1802
+ [key: string]: any;
1803
+ chartType: "bar";
1804
+ plugin: "1";
1805
+ layer: "2";
1806
+ };
1807
+ };
1808
+ isShow: {
1809
+ type?: undefined;
1810
+ default?: undefined;
1811
+ } | {
1812
+ type: any;
1813
+ default: string | number | boolean | string[] | Events | {
1814
+ [key: string]: any;
1815
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1816
+ [key: string]: any;
1817
+ chartType: "bar";
1818
+ plugin: "1";
1819
+ layer: "2";
1820
+ };
1821
+ };
1822
+ isRender: {
1823
+ type?: undefined;
1824
+ default?: undefined;
1825
+ } | {
1826
+ type: any;
1827
+ default: string | number | boolean | string[] | Events | {
1828
+ [key: string]: any;
1829
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1830
+ [key: string]: any;
1831
+ chartType: "bar";
1832
+ plugin: "1";
1833
+ layer: "2";
1834
+ };
1835
+ };
1836
+ events: {
1837
+ type?: undefined;
1838
+ default?: undefined;
1839
+ } | {
1840
+ type: any;
1841
+ default: string | number | boolean | string[] | Events | {
1842
+ [key: string]: any;
1843
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1844
+ [key: string]: any;
1845
+ chartType: "bar";
1846
+ plugin: "1";
1847
+ layer: "2";
1848
+ };
1849
+ };
1850
+ requestUrl: {
1851
+ type?: undefined;
1852
+ default?: undefined;
1853
+ } | {
1854
+ type: any;
1855
+ default: string | number | boolean | string[] | Events | {
1856
+ [key: string]: any;
1857
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1858
+ [key: string]: any;
1859
+ chartType: "bar";
1860
+ plugin: "1";
1861
+ layer: "2";
1862
+ };
1863
+ };
1864
+ requestMethod: {
1865
+ type?: undefined;
1866
+ default?: undefined;
1867
+ } | {
1868
+ type: any;
1869
+ default: string | number | boolean | string[] | Events | {
1870
+ [key: string]: any;
1871
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1872
+ [key: string]: any;
1873
+ chartType: "bar";
1874
+ plugin: "1";
1875
+ layer: "2";
1876
+ };
1877
+ };
1878
+ requestHeaders: {
1879
+ type?: undefined;
1880
+ default?: undefined;
1881
+ } | {
1882
+ type: any;
1883
+ default: string | number | boolean | string[] | Events | {
1884
+ [key: string]: any;
1885
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1886
+ [key: string]: any;
1887
+ chartType: "bar";
1888
+ plugin: "1";
1889
+ layer: "2";
1890
+ };
1891
+ };
1892
+ isOpenRequestTimer: {
1893
+ type?: undefined;
1894
+ default?: undefined;
1895
+ } | {
1896
+ type: any;
1897
+ default: string | number | boolean | string[] | Events | {
1898
+ [key: string]: any;
1899
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1900
+ [key: string]: any;
1901
+ chartType: "bar";
1902
+ plugin: "1";
1903
+ layer: "2";
1904
+ };
1905
+ };
1906
+ requestInterval: {
1907
+ type?: undefined;
1908
+ default?: undefined;
1909
+ } | {
1910
+ type: any;
1911
+ default: string | number | boolean | string[] | Events | {
1912
+ [key: string]: any;
1913
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1914
+ [key: string]: any;
1915
+ chartType: "bar";
1916
+ plugin: "1";
1917
+ layer: "2";
1918
+ };
1919
+ };
1920
+ requestParams: {
1921
+ type?: undefined;
1922
+ default?: undefined;
1923
+ } | {
1924
+ type: any;
1925
+ default: string | number | boolean | string[] | Events | {
1926
+ [key: string]: any;
1927
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1928
+ [key: string]: any;
1929
+ chartType: "bar";
1930
+ plugin: "1";
1931
+ layer: "2";
1932
+ };
1933
+ };
1934
+ requestSort: {
1935
+ type?: undefined;
1936
+ default?: undefined;
1937
+ } | {
1938
+ type: any;
1939
+ default: string | number | boolean | string[] | Events | {
1940
+ [key: string]: any;
1941
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1942
+ [key: string]: any;
1943
+ chartType: "bar";
1944
+ plugin: "1";
1945
+ layer: "2";
1946
+ };
1947
+ };
1948
+ dataType: {
1949
+ type?: undefined;
1950
+ default?: undefined;
1951
+ } | {
1952
+ type: any;
1953
+ default: string | number | boolean | string[] | Events | {
1954
+ [key: string]: any;
1955
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | import('../../_utils/props').Data | {
1956
+ [key: string]: any;
1957
+ chartType: "bar";
1958
+ plugin: "1";
1959
+ layer: "2";
1960
+ };
1961
+ };
1962
+ }>>, {}>;
1963
+ export default _sfc_main;