@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
+ 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
+ id: {
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
+ name: {
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
+ keyName: {
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
+ type: {
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
+ width: {
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
+ height: {
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
+ position: {
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
+ top: {
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
+ left: {
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
+ zIndex: {
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
+ rotate: {
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
+ isShow: {
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
+ isRender: {
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
+ events: {
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
+ requestUrl: {
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
+ requestMethod: {
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
+ requestHeaders: {
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
+ isOpenRequestTimer: {
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
+ requestInterval: {
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
+ requestParams: {
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
+ requestSort: {
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
+ dataType: {
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
+ }, {
899
+ option: import("vue").ComputedRef<{
900
+ toolbox: {
901
+ show: string | number | boolean | {
902
+ [key: string]: any;
903
+ };
904
+ left: string | number | boolean | {
905
+ [key: string]: any;
906
+ };
907
+ top: string | number | boolean | {
908
+ [key: string]: any;
909
+ };
910
+ itemSize: string | number | boolean | {
911
+ [key: string]: any;
912
+ };
913
+ itemGap: string | number | boolean | {
914
+ [key: string]: any;
915
+ };
916
+ feature: {
917
+ myDownload: {
918
+ show: boolean;
919
+ title: string;
920
+ icon: string;
921
+ onclick(): void;
922
+ };
923
+ myDataZoom: {
924
+ show: boolean;
925
+ title: string;
926
+ icon: string;
927
+ onclick(): void;
928
+ };
929
+ myInfo: {
930
+ show: boolean;
931
+ title: string;
932
+ icon: string;
933
+ onclick(): void;
934
+ };
935
+ };
936
+ };
937
+ title: {
938
+ text: string | number | boolean | {
939
+ [key: string]: any;
940
+ };
941
+ subtext: string | number | boolean | {
942
+ [key: string]: any;
943
+ };
944
+ left: string;
945
+ };
946
+ grid: {
947
+ top: string | number | boolean | {
948
+ [key: string]: any;
949
+ };
950
+ bottom: string | number | boolean | {
951
+ [key: string]: any;
952
+ };
953
+ left: string | number | boolean | {
954
+ [key: string]: any;
955
+ };
956
+ right: string | number | boolean | {
957
+ [key: string]: any;
958
+ };
959
+ containLabel: string | number | boolean | {
960
+ [key: string]: any;
961
+ };
962
+ };
963
+ color: string | number | boolean | {
964
+ [key: string]: any;
965
+ };
966
+ tooltip: {
967
+ trigger: string;
968
+ show: string | number | boolean | {
969
+ [key: string]: any;
970
+ };
971
+ formatter: string;
972
+ textStyle: {
973
+ color: string | number | boolean | {
974
+ [key: string]: any;
975
+ };
976
+ };
977
+ };
978
+ legend: {
979
+ show: string | number | boolean | {
980
+ [key: string]: any;
981
+ };
982
+ orient: string | number | boolean | {
983
+ [key: string]: any;
984
+ };
985
+ top: string | number | boolean | {
986
+ [key: string]: any;
987
+ };
988
+ left: string | number | boolean | {
989
+ [key: string]: any;
990
+ };
991
+ textStyle: {
992
+ color: string | number | boolean | {
993
+ [key: string]: any;
994
+ };
995
+ };
996
+ };
997
+ xAxis: {
998
+ type: string;
999
+ data: {
1000
+ [x: string]: any;
1001
+ }[];
1002
+ splitLine: {
1003
+ show: string | number | boolean | {
1004
+ [key: string]: any;
1005
+ };
1006
+ lineStyle: {
1007
+ color: string | number | boolean | {
1008
+ [key: string]: any;
1009
+ };
1010
+ };
1011
+ };
1012
+ axisLabel: {
1013
+ color: string | number | boolean | {
1014
+ [key: string]: any;
1015
+ };
1016
+ };
1017
+ axisLine: {
1018
+ lineStyle: {
1019
+ color: string | number | boolean | {
1020
+ [key: string]: any;
1021
+ };
1022
+ };
1023
+ };
1024
+ axisTick: {
1025
+ show: string | number | boolean | {
1026
+ [key: string]: any;
1027
+ };
1028
+ };
1029
+ };
1030
+ yAxis: {
1031
+ type: string;
1032
+ splitLine: {
1033
+ show: string | number | boolean | {
1034
+ [key: string]: any;
1035
+ };
1036
+ lineStyle: {
1037
+ color: string | number | boolean | {
1038
+ [key: string]: any;
1039
+ };
1040
+ };
1041
+ };
1042
+ axisLabel: {
1043
+ color: string | number | boolean | {
1044
+ [key: string]: any;
1045
+ };
1046
+ formatter(value: string): string;
1047
+ };
1048
+ axisLine: {
1049
+ lineStyle: {
1050
+ color: string | number | boolean | {
1051
+ [key: string]: any;
1052
+ };
1053
+ };
1054
+ };
1055
+ };
1056
+ series: any[];
1057
+ }>;
1058
+ style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
1059
+ refreshData: () => void;
1060
+ click: () => void;
1061
+ loading: import("vue").Ref<boolean>;
1062
+ visible: import("vue").Ref<boolean>;
1063
+ hideModal: () => void;
1064
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1065
+ data: {
1066
+ type?: undefined;
1067
+ default?: undefined;
1068
+ } | {
1069
+ type: any;
1070
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1071
+ [key: string]: any;
1072
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1073
+ [key: string]: any;
1074
+ chartType: "bar";
1075
+ plugin: "1";
1076
+ layer: "2";
1077
+ };
1078
+ };
1079
+ titleText: {
1080
+ type?: undefined;
1081
+ default?: undefined;
1082
+ } | {
1083
+ type: any;
1084
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1085
+ [key: string]: any;
1086
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1087
+ [key: string]: any;
1088
+ chartType: "bar";
1089
+ plugin: "1";
1090
+ layer: "2";
1091
+ };
1092
+ };
1093
+ titleSubtext: {
1094
+ type?: undefined;
1095
+ default?: undefined;
1096
+ } | {
1097
+ type: any;
1098
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1099
+ [key: string]: any;
1100
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1101
+ [key: string]: any;
1102
+ chartType: "bar";
1103
+ plugin: "1";
1104
+ layer: "2";
1105
+ };
1106
+ };
1107
+ colors: {
1108
+ type?: undefined;
1109
+ default?: undefined;
1110
+ } | {
1111
+ type: any;
1112
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1113
+ [key: string]: any;
1114
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1115
+ [key: string]: any;
1116
+ chartType: "bar";
1117
+ plugin: "1";
1118
+ layer: "2";
1119
+ };
1120
+ };
1121
+ legendShow: {
1122
+ type?: undefined;
1123
+ default?: undefined;
1124
+ } | {
1125
+ type: any;
1126
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1127
+ [key: string]: any;
1128
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1129
+ [key: string]: any;
1130
+ chartType: "bar";
1131
+ plugin: "1";
1132
+ layer: "2";
1133
+ };
1134
+ };
1135
+ legendTextStyleColor: {
1136
+ type?: undefined;
1137
+ default?: undefined;
1138
+ } | {
1139
+ type: any;
1140
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1141
+ [key: string]: any;
1142
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1143
+ [key: string]: any;
1144
+ chartType: "bar";
1145
+ plugin: "1";
1146
+ layer: "2";
1147
+ };
1148
+ };
1149
+ legendLeft: {
1150
+ type?: undefined;
1151
+ default?: undefined;
1152
+ } | {
1153
+ type: any;
1154
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1155
+ [key: string]: any;
1156
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1157
+ [key: string]: any;
1158
+ chartType: "bar";
1159
+ plugin: "1";
1160
+ layer: "2";
1161
+ };
1162
+ };
1163
+ legendTop: {
1164
+ type?: undefined;
1165
+ default?: undefined;
1166
+ } | {
1167
+ type: any;
1168
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1169
+ [key: string]: any;
1170
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1171
+ [key: string]: any;
1172
+ chartType: "bar";
1173
+ plugin: "1";
1174
+ layer: "2";
1175
+ };
1176
+ };
1177
+ legendOrient: {
1178
+ type?: undefined;
1179
+ default?: undefined;
1180
+ } | {
1181
+ type: any;
1182
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1183
+ [key: string]: any;
1184
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1185
+ [key: string]: any;
1186
+ chartType: "bar";
1187
+ plugin: "1";
1188
+ layer: "2";
1189
+ };
1190
+ };
1191
+ xAxisSplitLineShow: {
1192
+ type?: undefined;
1193
+ default?: undefined;
1194
+ } | {
1195
+ type: any;
1196
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1197
+ [key: string]: any;
1198
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1199
+ [key: string]: any;
1200
+ chartType: "bar";
1201
+ plugin: "1";
1202
+ layer: "2";
1203
+ };
1204
+ };
1205
+ xAxisLabelColor: {
1206
+ type?: undefined;
1207
+ default?: undefined;
1208
+ } | {
1209
+ type: any;
1210
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1211
+ [key: string]: any;
1212
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1213
+ [key: string]: any;
1214
+ chartType: "bar";
1215
+ plugin: "1";
1216
+ layer: "2";
1217
+ };
1218
+ };
1219
+ xAxisLineStyleColor: {
1220
+ type?: undefined;
1221
+ default?: undefined;
1222
+ } | {
1223
+ type: any;
1224
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1225
+ [key: string]: any;
1226
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1227
+ [key: string]: any;
1228
+ chartType: "bar";
1229
+ plugin: "1";
1230
+ layer: "2";
1231
+ };
1232
+ };
1233
+ xAxisTickShow: {
1234
+ type?: undefined;
1235
+ default?: undefined;
1236
+ } | {
1237
+ type: any;
1238
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1239
+ [key: string]: any;
1240
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1241
+ [key: string]: any;
1242
+ chartType: "bar";
1243
+ plugin: "1";
1244
+ layer: "2";
1245
+ };
1246
+ };
1247
+ yAxisSplitLineShow: {
1248
+ type?: undefined;
1249
+ default?: undefined;
1250
+ } | {
1251
+ type: any;
1252
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1253
+ [key: string]: any;
1254
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1255
+ [key: string]: any;
1256
+ chartType: "bar";
1257
+ plugin: "1";
1258
+ layer: "2";
1259
+ };
1260
+ };
1261
+ xAxisSplitLineStyleColor: {
1262
+ type?: undefined;
1263
+ default?: undefined;
1264
+ } | {
1265
+ type: any;
1266
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1267
+ [key: string]: any;
1268
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1269
+ [key: string]: any;
1270
+ chartType: "bar";
1271
+ plugin: "1";
1272
+ layer: "2";
1273
+ };
1274
+ };
1275
+ yAxisSplitLineStyleColor: {
1276
+ type?: undefined;
1277
+ default?: undefined;
1278
+ } | {
1279
+ type: any;
1280
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1281
+ [key: string]: any;
1282
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1283
+ [key: string]: any;
1284
+ chartType: "bar";
1285
+ plugin: "1";
1286
+ layer: "2";
1287
+ };
1288
+ };
1289
+ yAxisLabelColor: {
1290
+ type?: undefined;
1291
+ default?: undefined;
1292
+ } | {
1293
+ type: any;
1294
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1295
+ [key: string]: any;
1296
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1297
+ [key: string]: any;
1298
+ chartType: "bar";
1299
+ plugin: "1";
1300
+ layer: "2";
1301
+ };
1302
+ };
1303
+ yAxisLineStyleColor: {
1304
+ type?: undefined;
1305
+ default?: undefined;
1306
+ } | {
1307
+ type: any;
1308
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1309
+ [key: string]: any;
1310
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1311
+ [key: string]: any;
1312
+ chartType: "bar";
1313
+ plugin: "1";
1314
+ layer: "2";
1315
+ };
1316
+ };
1317
+ yAxisLabelFormatter: {
1318
+ type?: undefined;
1319
+ default?: undefined;
1320
+ } | {
1321
+ type: any;
1322
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1323
+ [key: string]: any;
1324
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1325
+ [key: string]: any;
1326
+ chartType: "bar";
1327
+ plugin: "1";
1328
+ layer: "2";
1329
+ };
1330
+ };
1331
+ valueTypeDataFieldNames: {
1332
+ type?: undefined;
1333
+ default?: undefined;
1334
+ } | {
1335
+ type: any;
1336
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1337
+ [key: string]: any;
1338
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1339
+ [key: string]: any;
1340
+ chartType: "bar";
1341
+ plugin: "1";
1342
+ layer: "2";
1343
+ };
1344
+ };
1345
+ keyTypeDataFieldNames: {
1346
+ type?: undefined;
1347
+ default?: undefined;
1348
+ } | {
1349
+ type: any;
1350
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1351
+ [key: string]: any;
1352
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1353
+ [key: string]: any;
1354
+ chartType: "bar";
1355
+ plugin: "1";
1356
+ layer: "2";
1357
+ };
1358
+ };
1359
+ dataFieldConfigType: {
1360
+ type?: undefined;
1361
+ default?: undefined;
1362
+ } | {
1363
+ type: any;
1364
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1365
+ [key: string]: any;
1366
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1367
+ [key: string]: any;
1368
+ chartType: "bar";
1369
+ plugin: "1";
1370
+ layer: "2";
1371
+ };
1372
+ };
1373
+ tooltipShow: {
1374
+ type?: undefined;
1375
+ default?: undefined;
1376
+ } | {
1377
+ type: any;
1378
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1379
+ [key: string]: any;
1380
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1381
+ [key: string]: any;
1382
+ chartType: "bar";
1383
+ plugin: "1";
1384
+ layer: "2";
1385
+ };
1386
+ };
1387
+ tooltipTrigger: {
1388
+ type?: undefined;
1389
+ default?: undefined;
1390
+ } | {
1391
+ type: any;
1392
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1393
+ [key: string]: any;
1394
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1395
+ [key: string]: any;
1396
+ chartType: "bar";
1397
+ plugin: "1";
1398
+ layer: "2";
1399
+ };
1400
+ };
1401
+ tooltipTextStyleColor: {
1402
+ type?: undefined;
1403
+ default?: undefined;
1404
+ } | {
1405
+ type: any;
1406
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1407
+ [key: string]: any;
1408
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1409
+ [key: string]: any;
1410
+ chartType: "bar";
1411
+ plugin: "1";
1412
+ layer: "2";
1413
+ };
1414
+ };
1415
+ tooltipFormatter: {
1416
+ type?: undefined;
1417
+ default?: undefined;
1418
+ } | {
1419
+ type: any;
1420
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1421
+ [key: string]: any;
1422
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1423
+ [key: string]: any;
1424
+ chartType: "bar";
1425
+ plugin: "1";
1426
+ layer: "2";
1427
+ };
1428
+ };
1429
+ gridContainLabel: {
1430
+ type?: undefined;
1431
+ default?: undefined;
1432
+ } | {
1433
+ type: any;
1434
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1435
+ [key: string]: any;
1436
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1437
+ [key: string]: any;
1438
+ chartType: "bar";
1439
+ plugin: "1";
1440
+ layer: "2";
1441
+ };
1442
+ };
1443
+ gridTop: {
1444
+ type?: undefined;
1445
+ default?: undefined;
1446
+ } | {
1447
+ type: any;
1448
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1449
+ [key: string]: any;
1450
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1451
+ [key: string]: any;
1452
+ chartType: "bar";
1453
+ plugin: "1";
1454
+ layer: "2";
1455
+ };
1456
+ };
1457
+ gridBottom: {
1458
+ type?: undefined;
1459
+ default?: undefined;
1460
+ } | {
1461
+ type: any;
1462
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1463
+ [key: string]: any;
1464
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1465
+ [key: string]: any;
1466
+ chartType: "bar";
1467
+ plugin: "1";
1468
+ layer: "2";
1469
+ };
1470
+ };
1471
+ gridLeft: {
1472
+ type?: undefined;
1473
+ default?: undefined;
1474
+ } | {
1475
+ type: any;
1476
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1477
+ [key: string]: any;
1478
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1479
+ [key: string]: any;
1480
+ chartType: "bar";
1481
+ plugin: "1";
1482
+ layer: "2";
1483
+ };
1484
+ };
1485
+ gridRight: {
1486
+ type?: undefined;
1487
+ default?: undefined;
1488
+ } | {
1489
+ type: any;
1490
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1491
+ [key: string]: any;
1492
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1493
+ [key: string]: any;
1494
+ chartType: "bar";
1495
+ plugin: "1";
1496
+ layer: "2";
1497
+ };
1498
+ };
1499
+ barWidth: {
1500
+ type?: undefined;
1501
+ default?: undefined;
1502
+ } | {
1503
+ type: any;
1504
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1505
+ [key: string]: any;
1506
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1507
+ [key: string]: any;
1508
+ chartType: "bar";
1509
+ plugin: "1";
1510
+ layer: "2";
1511
+ };
1512
+ };
1513
+ graphicConfig: {
1514
+ type?: undefined;
1515
+ default?: undefined;
1516
+ } | {
1517
+ type: any;
1518
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1519
+ [key: string]: any;
1520
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1521
+ [key: string]: any;
1522
+ chartType: "bar";
1523
+ plugin: "1";
1524
+ layer: "2";
1525
+ };
1526
+ };
1527
+ toolboxShow: {
1528
+ type?: undefined;
1529
+ default?: undefined;
1530
+ } | {
1531
+ type: any;
1532
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1533
+ [key: string]: any;
1534
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1535
+ [key: string]: any;
1536
+ chartType: "bar";
1537
+ plugin: "1";
1538
+ layer: "2";
1539
+ };
1540
+ };
1541
+ toolboxOrient: {
1542
+ type?: undefined;
1543
+ default?: undefined;
1544
+ } | {
1545
+ type: any;
1546
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1547
+ [key: string]: any;
1548
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1549
+ [key: string]: any;
1550
+ chartType: "bar";
1551
+ plugin: "1";
1552
+ layer: "2";
1553
+ };
1554
+ };
1555
+ toolboxItemSize: {
1556
+ type?: undefined;
1557
+ default?: undefined;
1558
+ } | {
1559
+ type: any;
1560
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1561
+ [key: string]: any;
1562
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1563
+ [key: string]: any;
1564
+ chartType: "bar";
1565
+ plugin: "1";
1566
+ layer: "2";
1567
+ };
1568
+ };
1569
+ toolboxItemGap: {
1570
+ type?: undefined;
1571
+ default?: undefined;
1572
+ } | {
1573
+ type: any;
1574
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1575
+ [key: string]: any;
1576
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1577
+ [key: string]: any;
1578
+ chartType: "bar";
1579
+ plugin: "1";
1580
+ layer: "2";
1581
+ };
1582
+ };
1583
+ toolboxLeft: {
1584
+ type?: undefined;
1585
+ default?: undefined;
1586
+ } | {
1587
+ type: any;
1588
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1589
+ [key: string]: any;
1590
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1591
+ [key: string]: any;
1592
+ chartType: "bar";
1593
+ plugin: "1";
1594
+ layer: "2";
1595
+ };
1596
+ };
1597
+ toolboxTop: {
1598
+ type?: undefined;
1599
+ default?: undefined;
1600
+ } | {
1601
+ type: any;
1602
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1603
+ [key: string]: any;
1604
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1605
+ [key: string]: any;
1606
+ chartType: "bar";
1607
+ plugin: "1";
1608
+ layer: "2";
1609
+ };
1610
+ };
1611
+ toolboxIconStyleBorderColor: {
1612
+ type?: undefined;
1613
+ default?: undefined;
1614
+ } | {
1615
+ type: any;
1616
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1617
+ [key: string]: any;
1618
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1619
+ [key: string]: any;
1620
+ chartType: "bar";
1621
+ plugin: "1";
1622
+ layer: "2";
1623
+ };
1624
+ };
1625
+ toolboxDownloadUrl: {
1626
+ type?: undefined;
1627
+ default?: undefined;
1628
+ } | {
1629
+ type: any;
1630
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1631
+ [key: string]: any;
1632
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1633
+ [key: string]: any;
1634
+ chartType: "bar";
1635
+ plugin: "1";
1636
+ layer: "2";
1637
+ };
1638
+ };
1639
+ toolboxInfoText: {
1640
+ type?: undefined;
1641
+ default?: undefined;
1642
+ } | {
1643
+ type: any;
1644
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1645
+ [key: string]: any;
1646
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1647
+ [key: string]: any;
1648
+ chartType: "bar";
1649
+ plugin: "1";
1650
+ layer: "2";
1651
+ };
1652
+ };
1653
+ id: {
1654
+ type?: undefined;
1655
+ default?: undefined;
1656
+ } | {
1657
+ type: any;
1658
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1659
+ [key: string]: any;
1660
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1661
+ [key: string]: any;
1662
+ chartType: "bar";
1663
+ plugin: "1";
1664
+ layer: "2";
1665
+ };
1666
+ };
1667
+ name: {
1668
+ type?: undefined;
1669
+ default?: undefined;
1670
+ } | {
1671
+ type: any;
1672
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1673
+ [key: string]: any;
1674
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1675
+ [key: string]: any;
1676
+ chartType: "bar";
1677
+ plugin: "1";
1678
+ layer: "2";
1679
+ };
1680
+ };
1681
+ keyName: {
1682
+ type?: undefined;
1683
+ default?: undefined;
1684
+ } | {
1685
+ type: any;
1686
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1687
+ [key: string]: any;
1688
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1689
+ [key: string]: any;
1690
+ chartType: "bar";
1691
+ plugin: "1";
1692
+ layer: "2";
1693
+ };
1694
+ };
1695
+ type: {
1696
+ type?: undefined;
1697
+ default?: undefined;
1698
+ } | {
1699
+ type: any;
1700
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1701
+ [key: string]: any;
1702
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1703
+ [key: string]: any;
1704
+ chartType: "bar";
1705
+ plugin: "1";
1706
+ layer: "2";
1707
+ };
1708
+ };
1709
+ width: {
1710
+ type?: undefined;
1711
+ default?: undefined;
1712
+ } | {
1713
+ type: any;
1714
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1715
+ [key: string]: any;
1716
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1717
+ [key: string]: any;
1718
+ chartType: "bar";
1719
+ plugin: "1";
1720
+ layer: "2";
1721
+ };
1722
+ };
1723
+ height: {
1724
+ type?: undefined;
1725
+ default?: undefined;
1726
+ } | {
1727
+ type: any;
1728
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1729
+ [key: string]: any;
1730
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1731
+ [key: string]: any;
1732
+ chartType: "bar";
1733
+ plugin: "1";
1734
+ layer: "2";
1735
+ };
1736
+ };
1737
+ position: {
1738
+ type?: undefined;
1739
+ default?: undefined;
1740
+ } | {
1741
+ type: any;
1742
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1743
+ [key: string]: any;
1744
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1745
+ [key: string]: any;
1746
+ chartType: "bar";
1747
+ plugin: "1";
1748
+ layer: "2";
1749
+ };
1750
+ };
1751
+ top: {
1752
+ type?: undefined;
1753
+ default?: undefined;
1754
+ } | {
1755
+ type: any;
1756
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1757
+ [key: string]: any;
1758
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1759
+ [key: string]: any;
1760
+ chartType: "bar";
1761
+ plugin: "1";
1762
+ layer: "2";
1763
+ };
1764
+ };
1765
+ left: {
1766
+ type?: undefined;
1767
+ default?: undefined;
1768
+ } | {
1769
+ type: any;
1770
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1771
+ [key: string]: any;
1772
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1773
+ [key: string]: any;
1774
+ chartType: "bar";
1775
+ plugin: "1";
1776
+ layer: "2";
1777
+ };
1778
+ };
1779
+ zIndex: {
1780
+ type?: undefined;
1781
+ default?: undefined;
1782
+ } | {
1783
+ type: any;
1784
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1785
+ [key: string]: any;
1786
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1787
+ [key: string]: any;
1788
+ chartType: "bar";
1789
+ plugin: "1";
1790
+ layer: "2";
1791
+ };
1792
+ };
1793
+ rotate: {
1794
+ type?: undefined;
1795
+ default?: undefined;
1796
+ } | {
1797
+ type: any;
1798
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1799
+ [key: string]: any;
1800
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1801
+ [key: string]: any;
1802
+ chartType: "bar";
1803
+ plugin: "1";
1804
+ layer: "2";
1805
+ };
1806
+ };
1807
+ isShow: {
1808
+ type?: undefined;
1809
+ default?: undefined;
1810
+ } | {
1811
+ type: any;
1812
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1813
+ [key: string]: any;
1814
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1815
+ [key: string]: any;
1816
+ chartType: "bar";
1817
+ plugin: "1";
1818
+ layer: "2";
1819
+ };
1820
+ };
1821
+ isRender: {
1822
+ type?: undefined;
1823
+ default?: undefined;
1824
+ } | {
1825
+ type: any;
1826
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1827
+ [key: string]: any;
1828
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1829
+ [key: string]: any;
1830
+ chartType: "bar";
1831
+ plugin: "1";
1832
+ layer: "2";
1833
+ };
1834
+ };
1835
+ events: {
1836
+ type?: undefined;
1837
+ default?: undefined;
1838
+ } | {
1839
+ type: any;
1840
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1841
+ [key: string]: any;
1842
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1843
+ [key: string]: any;
1844
+ chartType: "bar";
1845
+ plugin: "1";
1846
+ layer: "2";
1847
+ };
1848
+ };
1849
+ requestUrl: {
1850
+ type?: undefined;
1851
+ default?: undefined;
1852
+ } | {
1853
+ type: any;
1854
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1855
+ [key: string]: any;
1856
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1857
+ [key: string]: any;
1858
+ chartType: "bar";
1859
+ plugin: "1";
1860
+ layer: "2";
1861
+ };
1862
+ };
1863
+ requestMethod: {
1864
+ type?: undefined;
1865
+ default?: undefined;
1866
+ } | {
1867
+ type: any;
1868
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1869
+ [key: string]: any;
1870
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1871
+ [key: string]: any;
1872
+ chartType: "bar";
1873
+ plugin: "1";
1874
+ layer: "2";
1875
+ };
1876
+ };
1877
+ requestHeaders: {
1878
+ type?: undefined;
1879
+ default?: undefined;
1880
+ } | {
1881
+ type: any;
1882
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1883
+ [key: string]: any;
1884
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1885
+ [key: string]: any;
1886
+ chartType: "bar";
1887
+ plugin: "1";
1888
+ layer: "2";
1889
+ };
1890
+ };
1891
+ isOpenRequestTimer: {
1892
+ type?: undefined;
1893
+ default?: undefined;
1894
+ } | {
1895
+ type: any;
1896
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1897
+ [key: string]: any;
1898
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1899
+ [key: string]: any;
1900
+ chartType: "bar";
1901
+ plugin: "1";
1902
+ layer: "2";
1903
+ };
1904
+ };
1905
+ requestInterval: {
1906
+ type?: undefined;
1907
+ default?: undefined;
1908
+ } | {
1909
+ type: any;
1910
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1911
+ [key: string]: any;
1912
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1913
+ [key: string]: any;
1914
+ chartType: "bar";
1915
+ plugin: "1";
1916
+ layer: "2";
1917
+ };
1918
+ };
1919
+ requestParams: {
1920
+ type?: undefined;
1921
+ default?: undefined;
1922
+ } | {
1923
+ type: any;
1924
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1925
+ [key: string]: any;
1926
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1927
+ [key: string]: any;
1928
+ chartType: "bar";
1929
+ plugin: "1";
1930
+ layer: "2";
1931
+ };
1932
+ };
1933
+ requestSort: {
1934
+ type?: undefined;
1935
+ default?: undefined;
1936
+ } | {
1937
+ type: any;
1938
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1939
+ [key: string]: any;
1940
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1941
+ [key: string]: any;
1942
+ chartType: "bar";
1943
+ plugin: "1";
1944
+ layer: "2";
1945
+ };
1946
+ };
1947
+ dataType: {
1948
+ type?: undefined;
1949
+ default?: undefined;
1950
+ } | {
1951
+ type: any;
1952
+ default: string | number | boolean | string[] | import("../../_utils/props").Events | {
1953
+ [key: string]: any;
1954
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
1955
+ [key: string]: any;
1956
+ chartType: "bar";
1957
+ plugin: "1";
1958
+ layer: "2";
1959
+ };
1960
+ };
1961
+ }>>, {}>> & Record<string, any>;
1962
+ export default EcanBar;
1963
+ export * from './props';