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