@ecan-bi/datav 1.0.23 → 1.0.26

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