@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.
- package/dist/_utils/constant.d.ts +3 -7
- package/dist/_utils/diagramParam.d.ts +145 -0
- package/dist/_utils/hooks/index.d.ts +2 -0
- package/dist/_utils/hooks/usePageUrl.d.ts +2 -0
- package/dist/_utils/hooks/useRequestDiagram.d.ts +5 -0
- package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +17 -0
- package/dist/_utils/hooks/useVariablesInText.d.ts +4 -0
- package/dist/_utils/props.d.ts +1 -1
- package/dist/_utils/propsDiagram.d.ts +52 -0
- package/dist/components.d.ts +1 -0
- package/dist/container/border/Border.vue.d.ts +360 -0
- package/dist/container/border/props.d.ts +11 -10
- package/dist/container/card/props.d.ts +9 -9
- package/dist/container/modal/Modal.vue.d.ts +2 -0
- package/dist/control/button/Button.vue.d.ts +13 -13
- package/dist/control/button/props.d.ts +9 -9
- package/dist/control/date-picker/DatePicker.vue.d.ts +13 -13
- package/dist/control/date-picker/props.d.ts +9 -9
- package/dist/control/input/Input.vue.d.ts +13 -13
- package/dist/control/input/props.d.ts +9 -9
- package/dist/control/range-picker/RangePicker.vue.d.ts +13 -13
- package/dist/control/range-picker/props.d.ts +9 -9
- package/dist/control/select/Select.vue.d.ts +13 -13
- package/dist/control/select/props.d.ts +9 -9
- package/dist/control/tabs/Tabs.vue.d.ts +10 -10
- package/dist/control/tabs/props.d.ts +7 -7
- package/dist/graph/bar/Bar.vue.d.ts +1800 -59
- package/dist/graph/bar/props.d.ts +1794 -55
- package/dist/graph/combo-graph/ComboGraph.vue.d.ts +13 -13
- package/dist/graph/combo-graph/props.d.ts +9 -9
- package/dist/graph/custom-graph/CustomGraph.vue.d.ts +13 -13
- package/dist/graph/custom-graph/props.d.ts +9 -9
- package/dist/graph/line/Line.vue.d.ts +13 -13
- package/dist/graph/line/props.d.ts +9 -9
- package/dist/graph/pie/Pie.vue.d.ts +14 -13
- package/dist/graph/pie/props.d.ts +9 -9
- package/dist/graph/scatter/Scatter.vue.d.ts +213 -17
- package/dist/graph/scatter/props.d.ts +126 -9
- package/dist/index.esm.js +1 -16
- package/dist/index.umd.js +1 -16
- package/dist/map/index.d.ts +1 -0
- package/dist/map/map/Map.vue.d.ts +710 -0
- package/dist/map/map/index.d.ts +3 -0
- package/dist/map/map/props.d.ts +514 -0
- package/dist/media/image/Image.vue.d.ts +53 -13
- package/dist/media/image/props.d.ts +39 -9
- package/dist/setting/provider-config/props.d.ts +1 -1
- package/dist/table/table/Table.vue.d.ts +1401 -51
- package/dist/table/table/props.d.ts +1392 -45
- package/dist/text/index.d.ts +1 -0
- package/dist/text/list/List.vue.d.ts +13 -13
- package/dist/text/list/props.d.ts +9 -9
- package/dist/text/proportion/Proportion.vue.d.ts +524 -0
- package/dist/text/proportion/index.d.ts +3 -0
- package/dist/text/proportion/props.d.ts +395 -0
- package/dist/text/text/Text.vue.d.ts +68 -51
- package/dist/text/text/props.d.ts +25 -13
- package/dist/text/time-display/TimeDisplay.vue.d.ts +13 -13
- package/dist/text/time-display/props.d.ts +9 -9
- package/package.json +1 -1
- package/dist/index.esm.js.map +0 -1
- package/dist/index.umd.js.map +0 -1
|
@@ -144,6 +144,114 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
144
144
|
[key: string]: any;
|
|
145
145
|
} | import("../../_utils/props").RequestParams;
|
|
146
146
|
};
|
|
147
|
+
xAxisSplitLineShow: {
|
|
148
|
+
type?: undefined;
|
|
149
|
+
default?: undefined;
|
|
150
|
+
} | {
|
|
151
|
+
type: any;
|
|
152
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
153
|
+
name: string;
|
|
154
|
+
value: string;
|
|
155
|
+
} | Events | {
|
|
156
|
+
[key: string]: any;
|
|
157
|
+
} | import("../../_utils/props").RequestParams;
|
|
158
|
+
};
|
|
159
|
+
xAxisLabelColor: {
|
|
160
|
+
type?: undefined;
|
|
161
|
+
default?: undefined;
|
|
162
|
+
} | {
|
|
163
|
+
type: any;
|
|
164
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
165
|
+
name: string;
|
|
166
|
+
value: string;
|
|
167
|
+
} | Events | {
|
|
168
|
+
[key: string]: any;
|
|
169
|
+
} | import("../../_utils/props").RequestParams;
|
|
170
|
+
};
|
|
171
|
+
xAxisLineStyleColor: {
|
|
172
|
+
type?: undefined;
|
|
173
|
+
default?: undefined;
|
|
174
|
+
} | {
|
|
175
|
+
type: any;
|
|
176
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
177
|
+
name: string;
|
|
178
|
+
value: string;
|
|
179
|
+
} | Events | {
|
|
180
|
+
[key: string]: any;
|
|
181
|
+
} | import("../../_utils/props").RequestParams;
|
|
182
|
+
};
|
|
183
|
+
xAxisTickShow: {
|
|
184
|
+
type?: undefined;
|
|
185
|
+
default?: undefined;
|
|
186
|
+
} | {
|
|
187
|
+
type: any;
|
|
188
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
189
|
+
name: string;
|
|
190
|
+
value: string;
|
|
191
|
+
} | Events | {
|
|
192
|
+
[key: string]: any;
|
|
193
|
+
} | import("../../_utils/props").RequestParams;
|
|
194
|
+
};
|
|
195
|
+
yAxisSplitLineShow: {
|
|
196
|
+
type?: undefined;
|
|
197
|
+
default?: undefined;
|
|
198
|
+
} | {
|
|
199
|
+
type: any;
|
|
200
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
201
|
+
name: string;
|
|
202
|
+
value: string;
|
|
203
|
+
} | Events | {
|
|
204
|
+
[key: string]: any;
|
|
205
|
+
} | import("../../_utils/props").RequestParams;
|
|
206
|
+
};
|
|
207
|
+
xAxisSplitLineStyleColor: {
|
|
208
|
+
type?: undefined;
|
|
209
|
+
default?: undefined;
|
|
210
|
+
} | {
|
|
211
|
+
type: any;
|
|
212
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
213
|
+
name: string;
|
|
214
|
+
value: string;
|
|
215
|
+
} | Events | {
|
|
216
|
+
[key: string]: any;
|
|
217
|
+
} | import("../../_utils/props").RequestParams;
|
|
218
|
+
};
|
|
219
|
+
yAxisSplitLineStyleColor: {
|
|
220
|
+
type?: undefined;
|
|
221
|
+
default?: undefined;
|
|
222
|
+
} | {
|
|
223
|
+
type: any;
|
|
224
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
225
|
+
name: string;
|
|
226
|
+
value: string;
|
|
227
|
+
} | Events | {
|
|
228
|
+
[key: string]: any;
|
|
229
|
+
} | import("../../_utils/props").RequestParams;
|
|
230
|
+
};
|
|
231
|
+
yAxisLabelColor: {
|
|
232
|
+
type?: undefined;
|
|
233
|
+
default?: undefined;
|
|
234
|
+
} | {
|
|
235
|
+
type: any;
|
|
236
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
237
|
+
name: string;
|
|
238
|
+
value: string;
|
|
239
|
+
} | Events | {
|
|
240
|
+
[key: string]: any;
|
|
241
|
+
} | import("../../_utils/props").RequestParams;
|
|
242
|
+
};
|
|
243
|
+
yAxisLineStyleColor: {
|
|
244
|
+
type?: undefined;
|
|
245
|
+
default?: undefined;
|
|
246
|
+
} | {
|
|
247
|
+
type: any;
|
|
248
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
249
|
+
name: string;
|
|
250
|
+
value: string;
|
|
251
|
+
} | Events | {
|
|
252
|
+
[key: string]: any;
|
|
253
|
+
} | import("../../_utils/props").RequestParams;
|
|
254
|
+
};
|
|
147
255
|
dataFieldNames: {
|
|
148
256
|
type?: undefined;
|
|
149
257
|
default?: undefined;
|
|
@@ -312,7 +420,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
312
420
|
[key: string]: any;
|
|
313
421
|
} | import("../../_utils/props").RequestParams;
|
|
314
422
|
};
|
|
315
|
-
|
|
423
|
+
events: {
|
|
316
424
|
type?: undefined;
|
|
317
425
|
default?: undefined;
|
|
318
426
|
} | {
|
|
@@ -324,7 +432,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
324
432
|
[key: string]: any;
|
|
325
433
|
} | import("../../_utils/props").RequestParams;
|
|
326
434
|
};
|
|
327
|
-
|
|
435
|
+
requestUrl: {
|
|
328
436
|
type?: undefined;
|
|
329
437
|
default?: undefined;
|
|
330
438
|
} | {
|
|
@@ -336,7 +444,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
336
444
|
[key: string]: any;
|
|
337
445
|
} | import("../../_utils/props").RequestParams;
|
|
338
446
|
};
|
|
339
|
-
|
|
447
|
+
requestMethod: {
|
|
340
448
|
type?: undefined;
|
|
341
449
|
default?: undefined;
|
|
342
450
|
} | {
|
|
@@ -348,7 +456,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
348
456
|
[key: string]: any;
|
|
349
457
|
} | import("../../_utils/props").RequestParams;
|
|
350
458
|
};
|
|
351
|
-
|
|
459
|
+
requestHeaders: {
|
|
352
460
|
type?: undefined;
|
|
353
461
|
default?: undefined;
|
|
354
462
|
} | {
|
|
@@ -360,7 +468,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
360
468
|
[key: string]: any;
|
|
361
469
|
} | import("../../_utils/props").RequestParams;
|
|
362
470
|
};
|
|
363
|
-
|
|
471
|
+
isOpenRequestTimer: {
|
|
364
472
|
type?: undefined;
|
|
365
473
|
default?: undefined;
|
|
366
474
|
} | {
|
|
@@ -372,7 +480,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
372
480
|
[key: string]: any;
|
|
373
481
|
} | import("../../_utils/props").RequestParams;
|
|
374
482
|
};
|
|
375
|
-
|
|
483
|
+
requestInterval: {
|
|
376
484
|
type?: undefined;
|
|
377
485
|
default?: undefined;
|
|
378
486
|
} | {
|
|
@@ -384,7 +492,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
384
492
|
[key: string]: any;
|
|
385
493
|
} | import("../../_utils/props").RequestParams;
|
|
386
494
|
};
|
|
387
|
-
|
|
495
|
+
requestParams: {
|
|
388
496
|
type?: undefined;
|
|
389
497
|
default?: undefined;
|
|
390
498
|
} | {
|
|
@@ -396,7 +504,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
396
504
|
[key: string]: any;
|
|
397
505
|
} | import("../../_utils/props").RequestParams;
|
|
398
506
|
};
|
|
399
|
-
|
|
507
|
+
requestSort: {
|
|
400
508
|
type?: undefined;
|
|
401
509
|
default?: undefined;
|
|
402
510
|
} | {
|
|
@@ -408,7 +516,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
408
516
|
[key: string]: any;
|
|
409
517
|
} | import("../../_utils/props").RequestParams;
|
|
410
518
|
};
|
|
411
|
-
|
|
519
|
+
dataType: {
|
|
412
520
|
type?: undefined;
|
|
413
521
|
default?: undefined;
|
|
414
522
|
} | {
|
|
@@ -434,8 +542,59 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
434
542
|
color: string | number | boolean | {
|
|
435
543
|
[key: string]: any;
|
|
436
544
|
};
|
|
437
|
-
xAxis: {
|
|
438
|
-
|
|
545
|
+
xAxis: {
|
|
546
|
+
splitLine: {
|
|
547
|
+
show: string | number | boolean | {
|
|
548
|
+
[key: string]: any;
|
|
549
|
+
};
|
|
550
|
+
lineStyle: {
|
|
551
|
+
color: string | number | boolean | {
|
|
552
|
+
[key: string]: any;
|
|
553
|
+
};
|
|
554
|
+
};
|
|
555
|
+
};
|
|
556
|
+
axisLabel: {
|
|
557
|
+
color: string | number | boolean | {
|
|
558
|
+
[key: string]: any;
|
|
559
|
+
};
|
|
560
|
+
};
|
|
561
|
+
axisLine: {
|
|
562
|
+
lineStyle: {
|
|
563
|
+
color: string | number | boolean | {
|
|
564
|
+
[key: string]: any;
|
|
565
|
+
};
|
|
566
|
+
};
|
|
567
|
+
};
|
|
568
|
+
axisTick: {
|
|
569
|
+
show: string | number | boolean | {
|
|
570
|
+
[key: string]: any;
|
|
571
|
+
};
|
|
572
|
+
};
|
|
573
|
+
};
|
|
574
|
+
yAxis: {
|
|
575
|
+
splitLine: {
|
|
576
|
+
show: string | number | boolean | {
|
|
577
|
+
[key: string]: any;
|
|
578
|
+
};
|
|
579
|
+
lineStyle: {
|
|
580
|
+
color: string | number | boolean | {
|
|
581
|
+
[key: string]: any;
|
|
582
|
+
};
|
|
583
|
+
};
|
|
584
|
+
};
|
|
585
|
+
axisLabel: {
|
|
586
|
+
color: string | number | boolean | {
|
|
587
|
+
[key: string]: any;
|
|
588
|
+
};
|
|
589
|
+
};
|
|
590
|
+
axisLine: {
|
|
591
|
+
lineStyle: {
|
|
592
|
+
color: string | number | boolean | {
|
|
593
|
+
[key: string]: any;
|
|
594
|
+
};
|
|
595
|
+
};
|
|
596
|
+
};
|
|
597
|
+
};
|
|
439
598
|
tooltip: {
|
|
440
599
|
show: string | number | boolean | {
|
|
441
600
|
[key: string]: any;
|
|
@@ -443,8 +602,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
443
602
|
trigger: string | number | boolean | {
|
|
444
603
|
[key: string]: any;
|
|
445
604
|
};
|
|
446
|
-
formatter:
|
|
447
|
-
|
|
605
|
+
formatter: (params: any) => string;
|
|
606
|
+
axisPointer: {
|
|
607
|
+
type: string;
|
|
448
608
|
};
|
|
449
609
|
};
|
|
450
610
|
legend: {
|
|
@@ -487,6 +647,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
487
647
|
legendTop?: unknown;
|
|
488
648
|
legendOrient?: unknown;
|
|
489
649
|
symbolSize?: unknown;
|
|
650
|
+
xAxisSplitLineShow?: unknown;
|
|
651
|
+
xAxisLabelColor?: unknown;
|
|
652
|
+
xAxisLineStyleColor?: unknown;
|
|
653
|
+
xAxisTickShow?: unknown;
|
|
654
|
+
yAxisSplitLineShow?: unknown;
|
|
655
|
+
xAxisSplitLineStyleColor?: unknown;
|
|
656
|
+
yAxisSplitLineStyleColor?: unknown;
|
|
657
|
+
yAxisLabelColor?: unknown;
|
|
658
|
+
yAxisLineStyleColor?: unknown;
|
|
490
659
|
dataFieldNames?: unknown;
|
|
491
660
|
id?: unknown;
|
|
492
661
|
name?: unknown;
|
|
@@ -501,7 +670,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
501
670
|
rotate?: unknown;
|
|
502
671
|
isShow?: unknown;
|
|
503
672
|
isRender?: unknown;
|
|
504
|
-
isRequestData?: unknown;
|
|
505
673
|
events?: unknown;
|
|
506
674
|
requestUrl?: unknown;
|
|
507
675
|
requestMethod?: unknown;
|
|
@@ -510,6 +678,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
510
678
|
requestInterval?: unknown;
|
|
511
679
|
requestParams?: unknown;
|
|
512
680
|
requestSort?: unknown;
|
|
681
|
+
dataType?: unknown;
|
|
513
682
|
} & {} & {
|
|
514
683
|
type?: string | number | boolean | {
|
|
515
684
|
[key: string]: any;
|
|
@@ -550,6 +719,33 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
550
719
|
symbolSize?: string | number | boolean | {
|
|
551
720
|
[key: string]: any;
|
|
552
721
|
};
|
|
722
|
+
xAxisSplitLineShow?: string | number | boolean | {
|
|
723
|
+
[key: string]: any;
|
|
724
|
+
};
|
|
725
|
+
xAxisLabelColor?: string | number | boolean | {
|
|
726
|
+
[key: string]: any;
|
|
727
|
+
};
|
|
728
|
+
xAxisLineStyleColor?: string | number | boolean | {
|
|
729
|
+
[key: string]: any;
|
|
730
|
+
};
|
|
731
|
+
xAxisTickShow?: string | number | boolean | {
|
|
732
|
+
[key: string]: any;
|
|
733
|
+
};
|
|
734
|
+
yAxisSplitLineShow?: string | number | boolean | {
|
|
735
|
+
[key: string]: any;
|
|
736
|
+
};
|
|
737
|
+
xAxisSplitLineStyleColor?: string | number | boolean | {
|
|
738
|
+
[key: string]: any;
|
|
739
|
+
};
|
|
740
|
+
yAxisSplitLineStyleColor?: string | number | boolean | {
|
|
741
|
+
[key: string]: any;
|
|
742
|
+
};
|
|
743
|
+
yAxisLabelColor?: string | number | boolean | {
|
|
744
|
+
[key: string]: any;
|
|
745
|
+
};
|
|
746
|
+
yAxisLineStyleColor?: string | number | boolean | {
|
|
747
|
+
[key: string]: any;
|
|
748
|
+
};
|
|
553
749
|
dataFieldNames?: string | number | boolean | {
|
|
554
750
|
[key: string]: any;
|
|
555
751
|
};
|
|
@@ -589,9 +785,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
589
785
|
isRender?: string | number | boolean | {
|
|
590
786
|
[key: string]: any;
|
|
591
787
|
};
|
|
592
|
-
isRequestData?: string | number | boolean | {
|
|
593
|
-
[key: string]: any;
|
|
594
|
-
};
|
|
595
788
|
events?: string | number | boolean | {
|
|
596
789
|
[key: string]: any;
|
|
597
790
|
};
|
|
@@ -616,5 +809,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
616
809
|
requestSort?: string | number | boolean | {
|
|
617
810
|
[key: string]: any;
|
|
618
811
|
};
|
|
812
|
+
dataType?: string | number | boolean | {
|
|
813
|
+
[key: string]: any;
|
|
814
|
+
};
|
|
619
815
|
}>, {}>;
|
|
620
816
|
export default _default;
|
|
@@ -12,6 +12,15 @@ export interface ScatterProps extends Props {
|
|
|
12
12
|
legendTop: 'top' | 'middle' | 'bottom';
|
|
13
13
|
legendOrient: 'vertical' | 'horizontal';
|
|
14
14
|
symbolSize: number;
|
|
15
|
+
xAxisSplitLineShow: boolean;
|
|
16
|
+
xAxisLabelColor: string;
|
|
17
|
+
xAxisLineStyleColor: string;
|
|
18
|
+
xAxisTickShow: boolean;
|
|
19
|
+
yAxisSplitLineShow: boolean;
|
|
20
|
+
xAxisSplitLineStyleColor: string;
|
|
21
|
+
yAxisSplitLineStyleColor: string;
|
|
22
|
+
yAxisLabelColor: string;
|
|
23
|
+
yAxisLineStyleColor: string;
|
|
15
24
|
dataFieldNames: {
|
|
16
25
|
name: string;
|
|
17
26
|
value: string;
|
|
@@ -163,6 +172,114 @@ export declare const scatterComponentProps: {
|
|
|
163
172
|
[key: string]: any;
|
|
164
173
|
} | import("../../_utils/props").RequestParams;
|
|
165
174
|
};
|
|
175
|
+
xAxisSplitLineShow: {
|
|
176
|
+
type?: undefined;
|
|
177
|
+
default?: undefined;
|
|
178
|
+
} | {
|
|
179
|
+
type: any;
|
|
180
|
+
default: string | number | boolean | Data | string[] | {
|
|
181
|
+
name: string;
|
|
182
|
+
value: string;
|
|
183
|
+
} | import("../../_utils/props").Events | {
|
|
184
|
+
[key: string]: any;
|
|
185
|
+
} | import("../../_utils/props").RequestParams;
|
|
186
|
+
};
|
|
187
|
+
xAxisLabelColor: {
|
|
188
|
+
type?: undefined;
|
|
189
|
+
default?: undefined;
|
|
190
|
+
} | {
|
|
191
|
+
type: any;
|
|
192
|
+
default: string | number | boolean | Data | string[] | {
|
|
193
|
+
name: string;
|
|
194
|
+
value: string;
|
|
195
|
+
} | import("../../_utils/props").Events | {
|
|
196
|
+
[key: string]: any;
|
|
197
|
+
} | import("../../_utils/props").RequestParams;
|
|
198
|
+
};
|
|
199
|
+
xAxisLineStyleColor: {
|
|
200
|
+
type?: undefined;
|
|
201
|
+
default?: undefined;
|
|
202
|
+
} | {
|
|
203
|
+
type: any;
|
|
204
|
+
default: string | number | boolean | Data | string[] | {
|
|
205
|
+
name: string;
|
|
206
|
+
value: string;
|
|
207
|
+
} | import("../../_utils/props").Events | {
|
|
208
|
+
[key: string]: any;
|
|
209
|
+
} | import("../../_utils/props").RequestParams;
|
|
210
|
+
};
|
|
211
|
+
xAxisTickShow: {
|
|
212
|
+
type?: undefined;
|
|
213
|
+
default?: undefined;
|
|
214
|
+
} | {
|
|
215
|
+
type: any;
|
|
216
|
+
default: string | number | boolean | Data | string[] | {
|
|
217
|
+
name: string;
|
|
218
|
+
value: string;
|
|
219
|
+
} | import("../../_utils/props").Events | {
|
|
220
|
+
[key: string]: any;
|
|
221
|
+
} | import("../../_utils/props").RequestParams;
|
|
222
|
+
};
|
|
223
|
+
yAxisSplitLineShow: {
|
|
224
|
+
type?: undefined;
|
|
225
|
+
default?: undefined;
|
|
226
|
+
} | {
|
|
227
|
+
type: any;
|
|
228
|
+
default: string | number | boolean | Data | string[] | {
|
|
229
|
+
name: string;
|
|
230
|
+
value: string;
|
|
231
|
+
} | import("../../_utils/props").Events | {
|
|
232
|
+
[key: string]: any;
|
|
233
|
+
} | import("../../_utils/props").RequestParams;
|
|
234
|
+
};
|
|
235
|
+
xAxisSplitLineStyleColor: {
|
|
236
|
+
type?: undefined;
|
|
237
|
+
default?: undefined;
|
|
238
|
+
} | {
|
|
239
|
+
type: any;
|
|
240
|
+
default: string | number | boolean | Data | string[] | {
|
|
241
|
+
name: string;
|
|
242
|
+
value: string;
|
|
243
|
+
} | import("../../_utils/props").Events | {
|
|
244
|
+
[key: string]: any;
|
|
245
|
+
} | import("../../_utils/props").RequestParams;
|
|
246
|
+
};
|
|
247
|
+
yAxisSplitLineStyleColor: {
|
|
248
|
+
type?: undefined;
|
|
249
|
+
default?: undefined;
|
|
250
|
+
} | {
|
|
251
|
+
type: any;
|
|
252
|
+
default: string | number | boolean | Data | string[] | {
|
|
253
|
+
name: string;
|
|
254
|
+
value: string;
|
|
255
|
+
} | import("../../_utils/props").Events | {
|
|
256
|
+
[key: string]: any;
|
|
257
|
+
} | import("../../_utils/props").RequestParams;
|
|
258
|
+
};
|
|
259
|
+
yAxisLabelColor: {
|
|
260
|
+
type?: undefined;
|
|
261
|
+
default?: undefined;
|
|
262
|
+
} | {
|
|
263
|
+
type: any;
|
|
264
|
+
default: string | number | boolean | Data | string[] | {
|
|
265
|
+
name: string;
|
|
266
|
+
value: string;
|
|
267
|
+
} | import("../../_utils/props").Events | {
|
|
268
|
+
[key: string]: any;
|
|
269
|
+
} | import("../../_utils/props").RequestParams;
|
|
270
|
+
};
|
|
271
|
+
yAxisLineStyleColor: {
|
|
272
|
+
type?: undefined;
|
|
273
|
+
default?: undefined;
|
|
274
|
+
} | {
|
|
275
|
+
type: any;
|
|
276
|
+
default: string | number | boolean | Data | string[] | {
|
|
277
|
+
name: string;
|
|
278
|
+
value: string;
|
|
279
|
+
} | import("../../_utils/props").Events | {
|
|
280
|
+
[key: string]: any;
|
|
281
|
+
} | import("../../_utils/props").RequestParams;
|
|
282
|
+
};
|
|
166
283
|
dataFieldNames: {
|
|
167
284
|
type?: undefined;
|
|
168
285
|
default?: undefined;
|
|
@@ -331,7 +448,7 @@ export declare const scatterComponentProps: {
|
|
|
331
448
|
[key: string]: any;
|
|
332
449
|
} | import("../../_utils/props").RequestParams;
|
|
333
450
|
};
|
|
334
|
-
|
|
451
|
+
events: {
|
|
335
452
|
type?: undefined;
|
|
336
453
|
default?: undefined;
|
|
337
454
|
} | {
|
|
@@ -343,7 +460,7 @@ export declare const scatterComponentProps: {
|
|
|
343
460
|
[key: string]: any;
|
|
344
461
|
} | import("../../_utils/props").RequestParams;
|
|
345
462
|
};
|
|
346
|
-
|
|
463
|
+
requestUrl: {
|
|
347
464
|
type?: undefined;
|
|
348
465
|
default?: undefined;
|
|
349
466
|
} | {
|
|
@@ -355,7 +472,7 @@ export declare const scatterComponentProps: {
|
|
|
355
472
|
[key: string]: any;
|
|
356
473
|
} | import("../../_utils/props").RequestParams;
|
|
357
474
|
};
|
|
358
|
-
|
|
475
|
+
requestMethod: {
|
|
359
476
|
type?: undefined;
|
|
360
477
|
default?: undefined;
|
|
361
478
|
} | {
|
|
@@ -367,7 +484,7 @@ export declare const scatterComponentProps: {
|
|
|
367
484
|
[key: string]: any;
|
|
368
485
|
} | import("../../_utils/props").RequestParams;
|
|
369
486
|
};
|
|
370
|
-
|
|
487
|
+
requestHeaders: {
|
|
371
488
|
type?: undefined;
|
|
372
489
|
default?: undefined;
|
|
373
490
|
} | {
|
|
@@ -379,7 +496,7 @@ export declare const scatterComponentProps: {
|
|
|
379
496
|
[key: string]: any;
|
|
380
497
|
} | import("../../_utils/props").RequestParams;
|
|
381
498
|
};
|
|
382
|
-
|
|
499
|
+
isOpenRequestTimer: {
|
|
383
500
|
type?: undefined;
|
|
384
501
|
default?: undefined;
|
|
385
502
|
} | {
|
|
@@ -391,7 +508,7 @@ export declare const scatterComponentProps: {
|
|
|
391
508
|
[key: string]: any;
|
|
392
509
|
} | import("../../_utils/props").RequestParams;
|
|
393
510
|
};
|
|
394
|
-
|
|
511
|
+
requestInterval: {
|
|
395
512
|
type?: undefined;
|
|
396
513
|
default?: undefined;
|
|
397
514
|
} | {
|
|
@@ -403,7 +520,7 @@ export declare const scatterComponentProps: {
|
|
|
403
520
|
[key: string]: any;
|
|
404
521
|
} | import("../../_utils/props").RequestParams;
|
|
405
522
|
};
|
|
406
|
-
|
|
523
|
+
requestParams: {
|
|
407
524
|
type?: undefined;
|
|
408
525
|
default?: undefined;
|
|
409
526
|
} | {
|
|
@@ -415,7 +532,7 @@ export declare const scatterComponentProps: {
|
|
|
415
532
|
[key: string]: any;
|
|
416
533
|
} | import("../../_utils/props").RequestParams;
|
|
417
534
|
};
|
|
418
|
-
|
|
535
|
+
requestSort: {
|
|
419
536
|
type?: undefined;
|
|
420
537
|
default?: undefined;
|
|
421
538
|
} | {
|
|
@@ -427,7 +544,7 @@ export declare const scatterComponentProps: {
|
|
|
427
544
|
[key: string]: any;
|
|
428
545
|
} | import("../../_utils/props").RequestParams;
|
|
429
546
|
};
|
|
430
|
-
|
|
547
|
+
dataType: {
|
|
431
548
|
type?: undefined;
|
|
432
549
|
default?: undefined;
|
|
433
550
|
} | {
|