@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,984 @@
1
+ import { Props, Data, KeyTypeDataFieldNames, ValueTypeDataFieldNames } from '../../_utils/props';
2
+ export interface BarProps extends Props {
3
+ data: Data;
4
+ titleText: string;
5
+ titleSubtext: string;
6
+ colors: string[];
7
+ legendShow: boolean;
8
+ legendTextStyleColor: string;
9
+ legendLeft: 'left' | 'center' | 'right';
10
+ legendTop: 'top' | 'middle' | 'bottom';
11
+ legendOrient: 'vertical' | 'horizontal';
12
+ xAxisSplitLineShow: boolean;
13
+ xAxisLabelColor: string;
14
+ xAxisLineStyleColor: string;
15
+ xAxisTickShow: boolean;
16
+ yAxisSplitLineShow: boolean;
17
+ xAxisSplitLineStyleColor: string;
18
+ yAxisSplitLineStyleColor: string;
19
+ yAxisLabelColor: string;
20
+ yAxisLineStyleColor: string;
21
+ yAxisLabelFormatter: string;
22
+ valueTypeDataFieldNames: ValueTypeDataFieldNames;
23
+ keyTypeDataFieldNames: KeyTypeDataFieldNames;
24
+ dataFieldConfigType: 'key' | 'value';
25
+ tooltipShow: boolean;
26
+ tooltipTrigger: 'item' | 'axis' | 'none';
27
+ tooltipTextStyleColor: string;
28
+ tooltipFormatter: string;
29
+ gridContainLabel: boolean;
30
+ gridTop: string;
31
+ gridBottom: string;
32
+ gridLeft: string;
33
+ gridRight: string;
34
+ barWidth: string;
35
+ graphicConfig: {
36
+ [key: string]: any;
37
+ chartType: 'bar';
38
+ plugin: '1';
39
+ layer: '2';
40
+ };
41
+ toolboxShow: boolean;
42
+ toolboxOrient: 'horizontal' | 'vertical';
43
+ toolboxItemSize: number;
44
+ toolboxItemGap: number;
45
+ toolboxLeft: 'left' | 'center' | 'right';
46
+ toolboxTop: 'top' | 'middle' | 'bottom';
47
+ toolboxIconStyleBorderColor: string;
48
+ toolboxDownloadUrl: string;
49
+ toolboxInfoText: string;
50
+ isUseHorizontalAxis: boolean;
51
+ axisInverse: boolean;
52
+ }
53
+ export declare const barProps: BarProps;
54
+ export declare const barComponentProps: {
55
+ data: {
56
+ type?: undefined;
57
+ default?: undefined;
58
+ } | {
59
+ type: any;
60
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
61
+ [key: string]: any;
62
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
63
+ [key: string]: any;
64
+ chartType: 'bar';
65
+ plugin: '1';
66
+ layer: '2';
67
+ };
68
+ };
69
+ titleText: {
70
+ type?: undefined;
71
+ default?: undefined;
72
+ } | {
73
+ type: any;
74
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
75
+ [key: string]: any;
76
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
77
+ [key: string]: any;
78
+ chartType: 'bar';
79
+ plugin: '1';
80
+ layer: '2';
81
+ };
82
+ };
83
+ titleSubtext: {
84
+ type?: undefined;
85
+ default?: undefined;
86
+ } | {
87
+ type: any;
88
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
89
+ [key: string]: any;
90
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
91
+ [key: string]: any;
92
+ chartType: 'bar';
93
+ plugin: '1';
94
+ layer: '2';
95
+ };
96
+ };
97
+ colors: {
98
+ type?: undefined;
99
+ default?: undefined;
100
+ } | {
101
+ type: any;
102
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
103
+ [key: string]: any;
104
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
105
+ [key: string]: any;
106
+ chartType: 'bar';
107
+ plugin: '1';
108
+ layer: '2';
109
+ };
110
+ };
111
+ legendShow: {
112
+ type?: undefined;
113
+ default?: undefined;
114
+ } | {
115
+ type: any;
116
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
117
+ [key: string]: any;
118
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
119
+ [key: string]: any;
120
+ chartType: 'bar';
121
+ plugin: '1';
122
+ layer: '2';
123
+ };
124
+ };
125
+ legendTextStyleColor: {
126
+ type?: undefined;
127
+ default?: undefined;
128
+ } | {
129
+ type: any;
130
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
131
+ [key: string]: any;
132
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
133
+ [key: string]: any;
134
+ chartType: 'bar';
135
+ plugin: '1';
136
+ layer: '2';
137
+ };
138
+ };
139
+ legendLeft: {
140
+ type?: undefined;
141
+ default?: undefined;
142
+ } | {
143
+ type: any;
144
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
145
+ [key: string]: any;
146
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
147
+ [key: string]: any;
148
+ chartType: 'bar';
149
+ plugin: '1';
150
+ layer: '2';
151
+ };
152
+ };
153
+ legendTop: {
154
+ type?: undefined;
155
+ default?: undefined;
156
+ } | {
157
+ type: any;
158
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
159
+ [key: string]: any;
160
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
161
+ [key: string]: any;
162
+ chartType: 'bar';
163
+ plugin: '1';
164
+ layer: '2';
165
+ };
166
+ };
167
+ legendOrient: {
168
+ type?: undefined;
169
+ default?: undefined;
170
+ } | {
171
+ type: any;
172
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
173
+ [key: string]: any;
174
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
175
+ [key: string]: any;
176
+ chartType: 'bar';
177
+ plugin: '1';
178
+ layer: '2';
179
+ };
180
+ };
181
+ xAxisSplitLineShow: {
182
+ type?: undefined;
183
+ default?: undefined;
184
+ } | {
185
+ type: any;
186
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
187
+ [key: string]: any;
188
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
189
+ [key: string]: any;
190
+ chartType: 'bar';
191
+ plugin: '1';
192
+ layer: '2';
193
+ };
194
+ };
195
+ xAxisLabelColor: {
196
+ type?: undefined;
197
+ default?: undefined;
198
+ } | {
199
+ type: any;
200
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
201
+ [key: string]: any;
202
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
203
+ [key: string]: any;
204
+ chartType: 'bar';
205
+ plugin: '1';
206
+ layer: '2';
207
+ };
208
+ };
209
+ xAxisLineStyleColor: {
210
+ type?: undefined;
211
+ default?: undefined;
212
+ } | {
213
+ type: any;
214
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
215
+ [key: string]: any;
216
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
217
+ [key: string]: any;
218
+ chartType: 'bar';
219
+ plugin: '1';
220
+ layer: '2';
221
+ };
222
+ };
223
+ xAxisTickShow: {
224
+ type?: undefined;
225
+ default?: undefined;
226
+ } | {
227
+ type: any;
228
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
229
+ [key: string]: any;
230
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
231
+ [key: string]: any;
232
+ chartType: 'bar';
233
+ plugin: '1';
234
+ layer: '2';
235
+ };
236
+ };
237
+ yAxisSplitLineShow: {
238
+ type?: undefined;
239
+ default?: undefined;
240
+ } | {
241
+ type: any;
242
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
243
+ [key: string]: any;
244
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
245
+ [key: string]: any;
246
+ chartType: 'bar';
247
+ plugin: '1';
248
+ layer: '2';
249
+ };
250
+ };
251
+ xAxisSplitLineStyleColor: {
252
+ type?: undefined;
253
+ default?: undefined;
254
+ } | {
255
+ type: any;
256
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
257
+ [key: string]: any;
258
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
259
+ [key: string]: any;
260
+ chartType: 'bar';
261
+ plugin: '1';
262
+ layer: '2';
263
+ };
264
+ };
265
+ yAxisSplitLineStyleColor: {
266
+ type?: undefined;
267
+ default?: undefined;
268
+ } | {
269
+ type: any;
270
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
271
+ [key: string]: any;
272
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
273
+ [key: string]: any;
274
+ chartType: 'bar';
275
+ plugin: '1';
276
+ layer: '2';
277
+ };
278
+ };
279
+ yAxisLabelColor: {
280
+ type?: undefined;
281
+ default?: undefined;
282
+ } | {
283
+ type: any;
284
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
285
+ [key: string]: any;
286
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
287
+ [key: string]: any;
288
+ chartType: 'bar';
289
+ plugin: '1';
290
+ layer: '2';
291
+ };
292
+ };
293
+ yAxisLineStyleColor: {
294
+ type?: undefined;
295
+ default?: undefined;
296
+ } | {
297
+ type: any;
298
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
299
+ [key: string]: any;
300
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
301
+ [key: string]: any;
302
+ chartType: 'bar';
303
+ plugin: '1';
304
+ layer: '2';
305
+ };
306
+ };
307
+ yAxisLabelFormatter: {
308
+ type?: undefined;
309
+ default?: undefined;
310
+ } | {
311
+ type: any;
312
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
313
+ [key: string]: any;
314
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
315
+ [key: string]: any;
316
+ chartType: 'bar';
317
+ plugin: '1';
318
+ layer: '2';
319
+ };
320
+ };
321
+ valueTypeDataFieldNames: {
322
+ type?: undefined;
323
+ default?: undefined;
324
+ } | {
325
+ type: any;
326
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
327
+ [key: string]: any;
328
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
329
+ [key: string]: any;
330
+ chartType: 'bar';
331
+ plugin: '1';
332
+ layer: '2';
333
+ };
334
+ };
335
+ keyTypeDataFieldNames: {
336
+ type?: undefined;
337
+ default?: undefined;
338
+ } | {
339
+ type: any;
340
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
341
+ [key: string]: any;
342
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
343
+ [key: string]: any;
344
+ chartType: 'bar';
345
+ plugin: '1';
346
+ layer: '2';
347
+ };
348
+ };
349
+ dataFieldConfigType: {
350
+ type?: undefined;
351
+ default?: undefined;
352
+ } | {
353
+ type: any;
354
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
355
+ [key: string]: any;
356
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
357
+ [key: string]: any;
358
+ chartType: 'bar';
359
+ plugin: '1';
360
+ layer: '2';
361
+ };
362
+ };
363
+ tooltipShow: {
364
+ type?: undefined;
365
+ default?: undefined;
366
+ } | {
367
+ type: any;
368
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
369
+ [key: string]: any;
370
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
371
+ [key: string]: any;
372
+ chartType: 'bar';
373
+ plugin: '1';
374
+ layer: '2';
375
+ };
376
+ };
377
+ tooltipTrigger: {
378
+ type?: undefined;
379
+ default?: undefined;
380
+ } | {
381
+ type: any;
382
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
383
+ [key: string]: any;
384
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
385
+ [key: string]: any;
386
+ chartType: 'bar';
387
+ plugin: '1';
388
+ layer: '2';
389
+ };
390
+ };
391
+ tooltipTextStyleColor: {
392
+ type?: undefined;
393
+ default?: undefined;
394
+ } | {
395
+ type: any;
396
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
397
+ [key: string]: any;
398
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
399
+ [key: string]: any;
400
+ chartType: 'bar';
401
+ plugin: '1';
402
+ layer: '2';
403
+ };
404
+ };
405
+ tooltipFormatter: {
406
+ type?: undefined;
407
+ default?: undefined;
408
+ } | {
409
+ type: any;
410
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
411
+ [key: string]: any;
412
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
413
+ [key: string]: any;
414
+ chartType: 'bar';
415
+ plugin: '1';
416
+ layer: '2';
417
+ };
418
+ };
419
+ gridContainLabel: {
420
+ type?: undefined;
421
+ default?: undefined;
422
+ } | {
423
+ type: any;
424
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
425
+ [key: string]: any;
426
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
427
+ [key: string]: any;
428
+ chartType: 'bar';
429
+ plugin: '1';
430
+ layer: '2';
431
+ };
432
+ };
433
+ gridTop: {
434
+ type?: undefined;
435
+ default?: undefined;
436
+ } | {
437
+ type: any;
438
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
439
+ [key: string]: any;
440
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
441
+ [key: string]: any;
442
+ chartType: 'bar';
443
+ plugin: '1';
444
+ layer: '2';
445
+ };
446
+ };
447
+ gridBottom: {
448
+ type?: undefined;
449
+ default?: undefined;
450
+ } | {
451
+ type: any;
452
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
453
+ [key: string]: any;
454
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
455
+ [key: string]: any;
456
+ chartType: 'bar';
457
+ plugin: '1';
458
+ layer: '2';
459
+ };
460
+ };
461
+ gridLeft: {
462
+ type?: undefined;
463
+ default?: undefined;
464
+ } | {
465
+ type: any;
466
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
467
+ [key: string]: any;
468
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
469
+ [key: string]: any;
470
+ chartType: 'bar';
471
+ plugin: '1';
472
+ layer: '2';
473
+ };
474
+ };
475
+ gridRight: {
476
+ type?: undefined;
477
+ default?: undefined;
478
+ } | {
479
+ type: any;
480
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
481
+ [key: string]: any;
482
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
483
+ [key: string]: any;
484
+ chartType: 'bar';
485
+ plugin: '1';
486
+ layer: '2';
487
+ };
488
+ };
489
+ barWidth: {
490
+ type?: undefined;
491
+ default?: undefined;
492
+ } | {
493
+ type: any;
494
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
495
+ [key: string]: any;
496
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
497
+ [key: string]: any;
498
+ chartType: 'bar';
499
+ plugin: '1';
500
+ layer: '2';
501
+ };
502
+ };
503
+ graphicConfig: {
504
+ type?: undefined;
505
+ default?: undefined;
506
+ } | {
507
+ type: any;
508
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
509
+ [key: string]: any;
510
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
511
+ [key: string]: any;
512
+ chartType: 'bar';
513
+ plugin: '1';
514
+ layer: '2';
515
+ };
516
+ };
517
+ toolboxShow: {
518
+ type?: undefined;
519
+ default?: undefined;
520
+ } | {
521
+ type: any;
522
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
523
+ [key: string]: any;
524
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
525
+ [key: string]: any;
526
+ chartType: 'bar';
527
+ plugin: '1';
528
+ layer: '2';
529
+ };
530
+ };
531
+ toolboxOrient: {
532
+ type?: undefined;
533
+ default?: undefined;
534
+ } | {
535
+ type: any;
536
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
537
+ [key: string]: any;
538
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
539
+ [key: string]: any;
540
+ chartType: 'bar';
541
+ plugin: '1';
542
+ layer: '2';
543
+ };
544
+ };
545
+ toolboxItemSize: {
546
+ type?: undefined;
547
+ default?: undefined;
548
+ } | {
549
+ type: any;
550
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
551
+ [key: string]: any;
552
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
553
+ [key: string]: any;
554
+ chartType: 'bar';
555
+ plugin: '1';
556
+ layer: '2';
557
+ };
558
+ };
559
+ toolboxItemGap: {
560
+ type?: undefined;
561
+ default?: undefined;
562
+ } | {
563
+ type: any;
564
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
565
+ [key: string]: any;
566
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
567
+ [key: string]: any;
568
+ chartType: 'bar';
569
+ plugin: '1';
570
+ layer: '2';
571
+ };
572
+ };
573
+ toolboxLeft: {
574
+ type?: undefined;
575
+ default?: undefined;
576
+ } | {
577
+ type: any;
578
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
579
+ [key: string]: any;
580
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
581
+ [key: string]: any;
582
+ chartType: 'bar';
583
+ plugin: '1';
584
+ layer: '2';
585
+ };
586
+ };
587
+ toolboxTop: {
588
+ type?: undefined;
589
+ default?: undefined;
590
+ } | {
591
+ type: any;
592
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
593
+ [key: string]: any;
594
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
595
+ [key: string]: any;
596
+ chartType: 'bar';
597
+ plugin: '1';
598
+ layer: '2';
599
+ };
600
+ };
601
+ toolboxIconStyleBorderColor: {
602
+ type?: undefined;
603
+ default?: undefined;
604
+ } | {
605
+ type: any;
606
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
607
+ [key: string]: any;
608
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
609
+ [key: string]: any;
610
+ chartType: 'bar';
611
+ plugin: '1';
612
+ layer: '2';
613
+ };
614
+ };
615
+ toolboxDownloadUrl: {
616
+ type?: undefined;
617
+ default?: undefined;
618
+ } | {
619
+ type: any;
620
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
621
+ [key: string]: any;
622
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
623
+ [key: string]: any;
624
+ chartType: 'bar';
625
+ plugin: '1';
626
+ layer: '2';
627
+ };
628
+ };
629
+ toolboxInfoText: {
630
+ type?: undefined;
631
+ default?: undefined;
632
+ } | {
633
+ type: any;
634
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
635
+ [key: string]: any;
636
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
637
+ [key: string]: any;
638
+ chartType: 'bar';
639
+ plugin: '1';
640
+ layer: '2';
641
+ };
642
+ };
643
+ isUseHorizontalAxis: {
644
+ type?: undefined;
645
+ default?: undefined;
646
+ } | {
647
+ type: any;
648
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
649
+ [key: string]: any;
650
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
651
+ [key: string]: any;
652
+ chartType: 'bar';
653
+ plugin: '1';
654
+ layer: '2';
655
+ };
656
+ };
657
+ axisInverse: {
658
+ type?: undefined;
659
+ default?: undefined;
660
+ } | {
661
+ type: any;
662
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
663
+ [key: string]: any;
664
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
665
+ [key: string]: any;
666
+ chartType: 'bar';
667
+ plugin: '1';
668
+ layer: '2';
669
+ };
670
+ };
671
+ id: {
672
+ type?: undefined;
673
+ default?: undefined;
674
+ } | {
675
+ type: any;
676
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
677
+ [key: string]: any;
678
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
679
+ [key: string]: any;
680
+ chartType: 'bar';
681
+ plugin: '1';
682
+ layer: '2';
683
+ };
684
+ };
685
+ name: {
686
+ type?: undefined;
687
+ default?: undefined;
688
+ } | {
689
+ type: any;
690
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
691
+ [key: string]: any;
692
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
693
+ [key: string]: any;
694
+ chartType: 'bar';
695
+ plugin: '1';
696
+ layer: '2';
697
+ };
698
+ };
699
+ keyName: {
700
+ type?: undefined;
701
+ default?: undefined;
702
+ } | {
703
+ type: any;
704
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
705
+ [key: string]: any;
706
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
707
+ [key: string]: any;
708
+ chartType: 'bar';
709
+ plugin: '1';
710
+ layer: '2';
711
+ };
712
+ };
713
+ type: {
714
+ type?: undefined;
715
+ default?: undefined;
716
+ } | {
717
+ type: any;
718
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
719
+ [key: string]: any;
720
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
721
+ [key: string]: any;
722
+ chartType: 'bar';
723
+ plugin: '1';
724
+ layer: '2';
725
+ };
726
+ };
727
+ width: {
728
+ type?: undefined;
729
+ default?: undefined;
730
+ } | {
731
+ type: any;
732
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
733
+ [key: string]: any;
734
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
735
+ [key: string]: any;
736
+ chartType: 'bar';
737
+ plugin: '1';
738
+ layer: '2';
739
+ };
740
+ };
741
+ height: {
742
+ type?: undefined;
743
+ default?: undefined;
744
+ } | {
745
+ type: any;
746
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
747
+ [key: string]: any;
748
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
749
+ [key: string]: any;
750
+ chartType: 'bar';
751
+ plugin: '1';
752
+ layer: '2';
753
+ };
754
+ };
755
+ position: {
756
+ type?: undefined;
757
+ default?: undefined;
758
+ } | {
759
+ type: any;
760
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
761
+ [key: string]: any;
762
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
763
+ [key: string]: any;
764
+ chartType: 'bar';
765
+ plugin: '1';
766
+ layer: '2';
767
+ };
768
+ };
769
+ top: {
770
+ type?: undefined;
771
+ default?: undefined;
772
+ } | {
773
+ type: any;
774
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
775
+ [key: string]: any;
776
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
777
+ [key: string]: any;
778
+ chartType: 'bar';
779
+ plugin: '1';
780
+ layer: '2';
781
+ };
782
+ };
783
+ left: {
784
+ type?: undefined;
785
+ default?: undefined;
786
+ } | {
787
+ type: any;
788
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
789
+ [key: string]: any;
790
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
791
+ [key: string]: any;
792
+ chartType: 'bar';
793
+ plugin: '1';
794
+ layer: '2';
795
+ };
796
+ };
797
+ zIndex: {
798
+ type?: undefined;
799
+ default?: undefined;
800
+ } | {
801
+ type: any;
802
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
803
+ [key: string]: any;
804
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
805
+ [key: string]: any;
806
+ chartType: 'bar';
807
+ plugin: '1';
808
+ layer: '2';
809
+ };
810
+ };
811
+ rotate: {
812
+ type?: undefined;
813
+ default?: undefined;
814
+ } | {
815
+ type: any;
816
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
817
+ [key: string]: any;
818
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
819
+ [key: string]: any;
820
+ chartType: 'bar';
821
+ plugin: '1';
822
+ layer: '2';
823
+ };
824
+ };
825
+ isShow: {
826
+ type?: undefined;
827
+ default?: undefined;
828
+ } | {
829
+ type: any;
830
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
831
+ [key: string]: any;
832
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
833
+ [key: string]: any;
834
+ chartType: 'bar';
835
+ plugin: '1';
836
+ layer: '2';
837
+ };
838
+ };
839
+ isRender: {
840
+ type?: undefined;
841
+ default?: undefined;
842
+ } | {
843
+ type: any;
844
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
845
+ [key: string]: any;
846
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
847
+ [key: string]: any;
848
+ chartType: 'bar';
849
+ plugin: '1';
850
+ layer: '2';
851
+ };
852
+ };
853
+ events: {
854
+ type?: undefined;
855
+ default?: undefined;
856
+ } | {
857
+ type: any;
858
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
859
+ [key: string]: any;
860
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
861
+ [key: string]: any;
862
+ chartType: 'bar';
863
+ plugin: '1';
864
+ layer: '2';
865
+ };
866
+ };
867
+ requestUrl: {
868
+ type?: undefined;
869
+ default?: undefined;
870
+ } | {
871
+ type: any;
872
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
873
+ [key: string]: any;
874
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
875
+ [key: string]: any;
876
+ chartType: 'bar';
877
+ plugin: '1';
878
+ layer: '2';
879
+ };
880
+ };
881
+ requestMethod: {
882
+ type?: undefined;
883
+ default?: undefined;
884
+ } | {
885
+ type: any;
886
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
887
+ [key: string]: any;
888
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
889
+ [key: string]: any;
890
+ chartType: 'bar';
891
+ plugin: '1';
892
+ layer: '2';
893
+ };
894
+ };
895
+ requestHeaders: {
896
+ type?: undefined;
897
+ default?: undefined;
898
+ } | {
899
+ type: any;
900
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
901
+ [key: string]: any;
902
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
903
+ [key: string]: any;
904
+ chartType: 'bar';
905
+ plugin: '1';
906
+ layer: '2';
907
+ };
908
+ };
909
+ isOpenRequestTimer: {
910
+ type?: undefined;
911
+ default?: undefined;
912
+ } | {
913
+ type: any;
914
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
915
+ [key: string]: any;
916
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
917
+ [key: string]: any;
918
+ chartType: 'bar';
919
+ plugin: '1';
920
+ layer: '2';
921
+ };
922
+ };
923
+ requestInterval: {
924
+ type?: undefined;
925
+ default?: undefined;
926
+ } | {
927
+ type: any;
928
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
929
+ [key: string]: any;
930
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
931
+ [key: string]: any;
932
+ chartType: 'bar';
933
+ plugin: '1';
934
+ layer: '2';
935
+ };
936
+ };
937
+ requestParams: {
938
+ type?: undefined;
939
+ default?: undefined;
940
+ } | {
941
+ type: any;
942
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
943
+ [key: string]: any;
944
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
945
+ [key: string]: any;
946
+ chartType: 'bar';
947
+ plugin: '1';
948
+ layer: '2';
949
+ };
950
+ };
951
+ requestSort: {
952
+ type?: undefined;
953
+ default?: undefined;
954
+ } | {
955
+ type: any;
956
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
957
+ [key: string]: any;
958
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
959
+ [key: string]: any;
960
+ chartType: 'bar';
961
+ plugin: '1';
962
+ layer: '2';
963
+ };
964
+ };
965
+ dataType: {
966
+ type?: undefined;
967
+ default?: undefined;
968
+ } | {
969
+ type: any;
970
+ default: string | number | boolean | string[] | import('../../_utils/props').Events | {
971
+ [key: string]: any;
972
+ } | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
973
+ [key: string]: any;
974
+ chartType: 'bar';
975
+ plugin: '1';
976
+ layer: '2';
977
+ };
978
+ };
979
+ };
980
+ export interface BarEvents {
981
+ refreshData: () => void;
982
+ click: () => void;
983
+ }
984
+ export declare const barEvents: Array<keyof BarEvents>;