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