@ecan-bi/datav 1.2.42 → 1.2.44
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/index.es.js +3467 -3363
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +27 -27
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/control/date-picker/DatePicker.vue.d.ts +32 -7
- package/types/control/date-picker/index.d.ts +32 -7
- package/types/control/radio/Radio.vue.d.ts +1 -2
- package/types/control/radio/index.d.ts +1 -2
- package/types/control/range-picker/RangePicker.vue.d.ts +72 -14
- package/types/control/range-picker/index.d.ts +72 -14
- package/types/control/range-picker/props.d.ts +5 -0
- package/types/control/select/Select.vue.d.ts +1 -0
- package/types/control/select/index.d.ts +1 -0
- package/types/graph/bar/Bar.vue.d.ts +26 -1
- package/types/graph/bar/index.d.ts +26 -1
- package/types/graph/bar/props.d.ts +15 -0
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +18 -1
- package/types/graph/combo-graph/index.d.ts +18 -1
- package/types/graph/combo-graph/props.d.ts +10 -0
- package/types/graph/line/Line.vue.d.ts +18 -1
- package/types/graph/line/index.d.ts +18 -1
- package/types/graph/line/props.d.ts +12 -0
- package/types/graph/scatter/Scatter.vue.d.ts +18 -2
- package/types/graph/scatter/index.d.ts +18 -2
- package/types/graph/scatter/props.d.ts +10 -0
|
@@ -157,6 +157,7 @@ export declare const EcanSelect: import('../../utils/withInstall').SFCWithInstal
|
|
|
157
157
|
}[]>;
|
|
158
158
|
filterOption: (input: string, option: any) => boolean;
|
|
159
159
|
loading: import("vue").Ref<boolean>;
|
|
160
|
+
resultValue: import("vue").WritableComputedRef<any>;
|
|
160
161
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
161
162
|
data: {
|
|
162
163
|
type?: import("vue").PropType<import("./props").SelectOptions>;
|
|
@@ -280,6 +280,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
280
280
|
type?: import("vue").PropType<string>;
|
|
281
281
|
default?: string;
|
|
282
282
|
};
|
|
283
|
+
labelFormatter: {
|
|
284
|
+
type?: import("vue").PropType<string>;
|
|
285
|
+
default?: string;
|
|
286
|
+
};
|
|
283
287
|
gradientShow: {
|
|
284
288
|
type?: import("vue").PropType<boolean>;
|
|
285
289
|
default?: boolean;
|
|
@@ -332,6 +336,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
332
336
|
type?: import("vue").PropType<string>;
|
|
333
337
|
default?: string;
|
|
334
338
|
};
|
|
339
|
+
xAxisLabelFontSize: {
|
|
340
|
+
type?: import("vue").PropType<string>;
|
|
341
|
+
default?: string;
|
|
342
|
+
};
|
|
343
|
+
yAxisLabelFontSize: {
|
|
344
|
+
type?: import("vue").PropType<string>;
|
|
345
|
+
default?: string;
|
|
346
|
+
};
|
|
335
347
|
id: {
|
|
336
348
|
type?: import("vue").PropType<string>;
|
|
337
349
|
default?: string;
|
|
@@ -523,6 +535,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
523
535
|
rotate: number;
|
|
524
536
|
width: number;
|
|
525
537
|
overflow: "none" | "truncate" | "break" | "breakAll";
|
|
538
|
+
fontSize: string;
|
|
526
539
|
formatter(value: string): string;
|
|
527
540
|
};
|
|
528
541
|
axisLine: {
|
|
@@ -554,7 +567,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
554
567
|
};
|
|
555
568
|
axisLabel: {
|
|
556
569
|
show: boolean;
|
|
557
|
-
fontSize:
|
|
570
|
+
fontSize: string;
|
|
558
571
|
color: string;
|
|
559
572
|
rotate: number;
|
|
560
573
|
width: number;
|
|
@@ -863,6 +876,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
863
876
|
type?: import("vue").PropType<string>;
|
|
864
877
|
default?: string;
|
|
865
878
|
};
|
|
879
|
+
labelFormatter: {
|
|
880
|
+
type?: import("vue").PropType<string>;
|
|
881
|
+
default?: string;
|
|
882
|
+
};
|
|
866
883
|
gradientShow: {
|
|
867
884
|
type?: import("vue").PropType<boolean>;
|
|
868
885
|
default?: boolean;
|
|
@@ -915,6 +932,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
915
932
|
type?: import("vue").PropType<string>;
|
|
916
933
|
default?: string;
|
|
917
934
|
};
|
|
935
|
+
xAxisLabelFontSize: {
|
|
936
|
+
type?: import("vue").PropType<string>;
|
|
937
|
+
default?: string;
|
|
938
|
+
};
|
|
939
|
+
yAxisLabelFontSize: {
|
|
940
|
+
type?: import("vue").PropType<string>;
|
|
941
|
+
default?: string;
|
|
942
|
+
};
|
|
918
943
|
id: {
|
|
919
944
|
type?: import("vue").PropType<string>;
|
|
920
945
|
default?: string;
|
|
@@ -279,6 +279,10 @@ export declare const EcanBar: import('../../utils/withInstall').SFCWithInstall<i
|
|
|
279
279
|
type?: import("vue").PropType<string>;
|
|
280
280
|
default?: string;
|
|
281
281
|
};
|
|
282
|
+
labelFormatter: {
|
|
283
|
+
type?: import("vue").PropType<string>;
|
|
284
|
+
default?: string;
|
|
285
|
+
};
|
|
282
286
|
gradientShow: {
|
|
283
287
|
type?: import("vue").PropType<boolean>;
|
|
284
288
|
default?: boolean;
|
|
@@ -331,6 +335,14 @@ export declare const EcanBar: import('../../utils/withInstall').SFCWithInstall<i
|
|
|
331
335
|
type?: import("vue").PropType<string>;
|
|
332
336
|
default?: string;
|
|
333
337
|
};
|
|
338
|
+
xAxisLabelFontSize: {
|
|
339
|
+
type?: import("vue").PropType<string>;
|
|
340
|
+
default?: string;
|
|
341
|
+
};
|
|
342
|
+
yAxisLabelFontSize: {
|
|
343
|
+
type?: import("vue").PropType<string>;
|
|
344
|
+
default?: string;
|
|
345
|
+
};
|
|
334
346
|
id: {
|
|
335
347
|
type?: import("vue").PropType<string>;
|
|
336
348
|
default?: string;
|
|
@@ -522,6 +534,7 @@ export declare const EcanBar: import('../../utils/withInstall').SFCWithInstall<i
|
|
|
522
534
|
rotate: number;
|
|
523
535
|
width: number;
|
|
524
536
|
overflow: "none" | "truncate" | "break" | "breakAll";
|
|
537
|
+
fontSize: string;
|
|
525
538
|
formatter(value: string): string;
|
|
526
539
|
};
|
|
527
540
|
axisLine: {
|
|
@@ -553,7 +566,7 @@ export declare const EcanBar: import('../../utils/withInstall').SFCWithInstall<i
|
|
|
553
566
|
};
|
|
554
567
|
axisLabel: {
|
|
555
568
|
show: boolean;
|
|
556
|
-
fontSize:
|
|
569
|
+
fontSize: string;
|
|
557
570
|
color: string;
|
|
558
571
|
rotate: number;
|
|
559
572
|
width: number;
|
|
@@ -862,6 +875,10 @@ export declare const EcanBar: import('../../utils/withInstall').SFCWithInstall<i
|
|
|
862
875
|
type?: import("vue").PropType<string>;
|
|
863
876
|
default?: string;
|
|
864
877
|
};
|
|
878
|
+
labelFormatter: {
|
|
879
|
+
type?: import("vue").PropType<string>;
|
|
880
|
+
default?: string;
|
|
881
|
+
};
|
|
865
882
|
gradientShow: {
|
|
866
883
|
type?: import("vue").PropType<boolean>;
|
|
867
884
|
default?: boolean;
|
|
@@ -914,6 +931,14 @@ export declare const EcanBar: import('../../utils/withInstall').SFCWithInstall<i
|
|
|
914
931
|
type?: import("vue").PropType<string>;
|
|
915
932
|
default?: string;
|
|
916
933
|
};
|
|
934
|
+
xAxisLabelFontSize: {
|
|
935
|
+
type?: import("vue").PropType<string>;
|
|
936
|
+
default?: string;
|
|
937
|
+
};
|
|
938
|
+
yAxisLabelFontSize: {
|
|
939
|
+
type?: import("vue").PropType<string>;
|
|
940
|
+
default?: string;
|
|
941
|
+
};
|
|
917
942
|
id: {
|
|
918
943
|
type?: import("vue").PropType<string>;
|
|
919
944
|
default?: string;
|
|
@@ -71,6 +71,7 @@ export interface BarProps extends Props {
|
|
|
71
71
|
labelFontSize: string;
|
|
72
72
|
labelPosition: 'inside' | 'top' | 'bottom' | 'right' | 'left';
|
|
73
73
|
labelColor: string;
|
|
74
|
+
labelFormatter: string;
|
|
74
75
|
gradientShow: boolean;
|
|
75
76
|
gradientColors: string[];
|
|
76
77
|
gradientOffset: number;
|
|
@@ -84,6 +85,8 @@ export interface BarProps extends Props {
|
|
|
84
85
|
showBarBackground: boolean;
|
|
85
86
|
legendType: string;
|
|
86
87
|
legendFontSize: string;
|
|
88
|
+
xAxisLabelFontSize: string;
|
|
89
|
+
yAxisLabelFontSize: string;
|
|
87
90
|
}
|
|
88
91
|
export declare const barProps: BarProps;
|
|
89
92
|
export declare const barComponentProps: {
|
|
@@ -367,6 +370,10 @@ export declare const barComponentProps: {
|
|
|
367
370
|
type?: import("vue").PropType<string>;
|
|
368
371
|
default?: string;
|
|
369
372
|
};
|
|
373
|
+
labelFormatter: {
|
|
374
|
+
type?: import("vue").PropType<string>;
|
|
375
|
+
default?: string;
|
|
376
|
+
};
|
|
370
377
|
gradientShow: {
|
|
371
378
|
type?: import("vue").PropType<boolean>;
|
|
372
379
|
default?: boolean;
|
|
@@ -419,6 +426,14 @@ export declare const barComponentProps: {
|
|
|
419
426
|
type?: import("vue").PropType<string>;
|
|
420
427
|
default?: string;
|
|
421
428
|
};
|
|
429
|
+
xAxisLabelFontSize: {
|
|
430
|
+
type?: import("vue").PropType<string>;
|
|
431
|
+
default?: string;
|
|
432
|
+
};
|
|
433
|
+
yAxisLabelFontSize: {
|
|
434
|
+
type?: import("vue").PropType<string>;
|
|
435
|
+
default?: string;
|
|
436
|
+
};
|
|
422
437
|
id: {
|
|
423
438
|
type?: import("vue").PropType<string>;
|
|
424
439
|
default?: string;
|
|
@@ -328,6 +328,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
328
328
|
type?: import("vue").PropType<string>;
|
|
329
329
|
default?: string;
|
|
330
330
|
};
|
|
331
|
+
xAxisLabelFontSize: {
|
|
332
|
+
type?: import("vue").PropType<string>;
|
|
333
|
+
default?: string;
|
|
334
|
+
};
|
|
335
|
+
yAxisLabelFontSize: {
|
|
336
|
+
type?: import("vue").PropType<string>;
|
|
337
|
+
default?: string;
|
|
338
|
+
};
|
|
331
339
|
id: {
|
|
332
340
|
type?: import("vue").PropType<string>;
|
|
333
341
|
default?: string;
|
|
@@ -518,6 +526,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
518
526
|
rotate: number;
|
|
519
527
|
width: number;
|
|
520
528
|
overflow: string;
|
|
529
|
+
fontSize: string;
|
|
521
530
|
};
|
|
522
531
|
axisLine: {
|
|
523
532
|
show: boolean;
|
|
@@ -544,7 +553,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
544
553
|
};
|
|
545
554
|
axisLabel: {
|
|
546
555
|
show: boolean;
|
|
547
|
-
fontSize:
|
|
556
|
+
fontSize: string;
|
|
548
557
|
color: string;
|
|
549
558
|
formatter(value: string): string;
|
|
550
559
|
};
|
|
@@ -898,6 +907,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
898
907
|
type?: import("vue").PropType<string>;
|
|
899
908
|
default?: string;
|
|
900
909
|
};
|
|
910
|
+
xAxisLabelFontSize: {
|
|
911
|
+
type?: import("vue").PropType<string>;
|
|
912
|
+
default?: string;
|
|
913
|
+
};
|
|
914
|
+
yAxisLabelFontSize: {
|
|
915
|
+
type?: import("vue").PropType<string>;
|
|
916
|
+
default?: string;
|
|
917
|
+
};
|
|
901
918
|
id: {
|
|
902
919
|
type?: import("vue").PropType<string>;
|
|
903
920
|
default?: string;
|
|
@@ -327,6 +327,14 @@ export declare const EcanComboGraph: import("../../utils/withInstall").SFCWithIn
|
|
|
327
327
|
type?: import("vue").PropType<string>;
|
|
328
328
|
default?: string;
|
|
329
329
|
};
|
|
330
|
+
xAxisLabelFontSize: {
|
|
331
|
+
type?: import("vue").PropType<string>;
|
|
332
|
+
default?: string;
|
|
333
|
+
};
|
|
334
|
+
yAxisLabelFontSize: {
|
|
335
|
+
type?: import("vue").PropType<string>;
|
|
336
|
+
default?: string;
|
|
337
|
+
};
|
|
330
338
|
id: {
|
|
331
339
|
type?: import("vue").PropType<string>;
|
|
332
340
|
default?: string;
|
|
@@ -517,6 +525,7 @@ export declare const EcanComboGraph: import("../../utils/withInstall").SFCWithIn
|
|
|
517
525
|
rotate: number;
|
|
518
526
|
width: number;
|
|
519
527
|
overflow: string;
|
|
528
|
+
fontSize: string;
|
|
520
529
|
};
|
|
521
530
|
axisLine: {
|
|
522
531
|
show: boolean;
|
|
@@ -543,7 +552,7 @@ export declare const EcanComboGraph: import("../../utils/withInstall").SFCWithIn
|
|
|
543
552
|
};
|
|
544
553
|
axisLabel: {
|
|
545
554
|
show: boolean;
|
|
546
|
-
fontSize:
|
|
555
|
+
fontSize: string;
|
|
547
556
|
color: string;
|
|
548
557
|
formatter(value: string): string;
|
|
549
558
|
};
|
|
@@ -897,6 +906,14 @@ export declare const EcanComboGraph: import("../../utils/withInstall").SFCWithIn
|
|
|
897
906
|
type?: import("vue").PropType<string>;
|
|
898
907
|
default?: string;
|
|
899
908
|
};
|
|
909
|
+
xAxisLabelFontSize: {
|
|
910
|
+
type?: import("vue").PropType<string>;
|
|
911
|
+
default?: string;
|
|
912
|
+
};
|
|
913
|
+
yAxisLabelFontSize: {
|
|
914
|
+
type?: import("vue").PropType<string>;
|
|
915
|
+
default?: string;
|
|
916
|
+
};
|
|
900
917
|
id: {
|
|
901
918
|
type?: import("vue").PropType<string>;
|
|
902
919
|
default?: string;
|
|
@@ -85,6 +85,8 @@ export interface ComboGraphProps extends Props {
|
|
|
85
85
|
shadowOffsetY: number;
|
|
86
86
|
shadowOffsetX: number;
|
|
87
87
|
legendFontSize: string;
|
|
88
|
+
xAxisLabelFontSize: string;
|
|
89
|
+
yAxisLabelFontSize: string;
|
|
88
90
|
}
|
|
89
91
|
export declare const comboGraphProps: ComboGraphProps;
|
|
90
92
|
export declare const comboGraphComponentProps: {
|
|
@@ -416,6 +418,14 @@ export declare const comboGraphComponentProps: {
|
|
|
416
418
|
type?: import("vue").PropType<string>;
|
|
417
419
|
default?: string;
|
|
418
420
|
};
|
|
421
|
+
xAxisLabelFontSize: {
|
|
422
|
+
type?: import("vue").PropType<string>;
|
|
423
|
+
default?: string;
|
|
424
|
+
};
|
|
425
|
+
yAxisLabelFontSize: {
|
|
426
|
+
type?: import("vue").PropType<string>;
|
|
427
|
+
default?: string;
|
|
428
|
+
};
|
|
419
429
|
id: {
|
|
420
430
|
type?: import("vue").PropType<string>;
|
|
421
431
|
default?: string;
|
|
@@ -345,6 +345,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
345
345
|
type?: import("vue").PropType<string>;
|
|
346
346
|
default?: string;
|
|
347
347
|
};
|
|
348
|
+
xAxisLabelFontSize: {
|
|
349
|
+
type?: import("vue").PropType<string>;
|
|
350
|
+
default?: string;
|
|
351
|
+
};
|
|
352
|
+
yAxisLabelFontSize: {
|
|
353
|
+
type?: import("vue").PropType<string>;
|
|
354
|
+
default?: string;
|
|
355
|
+
};
|
|
348
356
|
position: {
|
|
349
357
|
type?: import("vue").PropType<string>;
|
|
350
358
|
default?: string;
|
|
@@ -472,6 +480,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
472
480
|
rotate: number;
|
|
473
481
|
width: any;
|
|
474
482
|
overflow: string;
|
|
483
|
+
fontSize: string;
|
|
475
484
|
formatter(value: string): string;
|
|
476
485
|
};
|
|
477
486
|
axisLine: {
|
|
@@ -499,7 +508,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
499
508
|
};
|
|
500
509
|
axisLabel: {
|
|
501
510
|
show: boolean;
|
|
502
|
-
fontSize:
|
|
511
|
+
fontSize: string;
|
|
503
512
|
color: string;
|
|
504
513
|
formatter(value: string): string;
|
|
505
514
|
};
|
|
@@ -886,6 +895,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
886
895
|
type?: import("vue").PropType<string>;
|
|
887
896
|
default?: string;
|
|
888
897
|
};
|
|
898
|
+
xAxisLabelFontSize: {
|
|
899
|
+
type?: import("vue").PropType<string>;
|
|
900
|
+
default?: string;
|
|
901
|
+
};
|
|
902
|
+
yAxisLabelFontSize: {
|
|
903
|
+
type?: import("vue").PropType<string>;
|
|
904
|
+
default?: string;
|
|
905
|
+
};
|
|
889
906
|
position: {
|
|
890
907
|
type?: import("vue").PropType<string>;
|
|
891
908
|
default?: string;
|
|
@@ -345,6 +345,14 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
345
345
|
type?: import("vue").PropType<string>;
|
|
346
346
|
default?: string;
|
|
347
347
|
};
|
|
348
|
+
xAxisLabelFontSize: {
|
|
349
|
+
type?: import("vue").PropType<string>;
|
|
350
|
+
default?: string;
|
|
351
|
+
};
|
|
352
|
+
yAxisLabelFontSize: {
|
|
353
|
+
type?: import("vue").PropType<string>;
|
|
354
|
+
default?: string;
|
|
355
|
+
};
|
|
348
356
|
position: {
|
|
349
357
|
type?: import("vue").PropType<string>;
|
|
350
358
|
default?: string;
|
|
@@ -472,6 +480,7 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
472
480
|
rotate: number;
|
|
473
481
|
width: any;
|
|
474
482
|
overflow: string;
|
|
483
|
+
fontSize: string;
|
|
475
484
|
formatter(value: string): string;
|
|
476
485
|
};
|
|
477
486
|
axisLine: {
|
|
@@ -499,7 +508,7 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
499
508
|
};
|
|
500
509
|
axisLabel: {
|
|
501
510
|
show: boolean;
|
|
502
|
-
fontSize:
|
|
511
|
+
fontSize: string;
|
|
503
512
|
color: string;
|
|
504
513
|
formatter(value: string): string;
|
|
505
514
|
};
|
|
@@ -886,6 +895,14 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
886
895
|
type?: import("vue").PropType<string>;
|
|
887
896
|
default?: string;
|
|
888
897
|
};
|
|
898
|
+
xAxisLabelFontSize: {
|
|
899
|
+
type?: import("vue").PropType<string>;
|
|
900
|
+
default?: string;
|
|
901
|
+
};
|
|
902
|
+
yAxisLabelFontSize: {
|
|
903
|
+
type?: import("vue").PropType<string>;
|
|
904
|
+
default?: string;
|
|
905
|
+
};
|
|
889
906
|
position: {
|
|
890
907
|
type?: import("vue").PropType<string>;
|
|
891
908
|
default?: string;
|
|
@@ -76,6 +76,8 @@ export interface LineProps extends Props {
|
|
|
76
76
|
shadowOffsetY: number;
|
|
77
77
|
shadowOffsetX: number;
|
|
78
78
|
legendFontSize: string;
|
|
79
|
+
xAxisLabelFontSize: string;
|
|
80
|
+
yAxisLabelFontSize: string;
|
|
79
81
|
}
|
|
80
82
|
export declare const lineProps: {
|
|
81
83
|
id: string;
|
|
@@ -170,6 +172,8 @@ export declare const lineProps: {
|
|
|
170
172
|
shadowOffsetY: number;
|
|
171
173
|
shadowOffsetX: number;
|
|
172
174
|
legendFontSize: string;
|
|
175
|
+
xAxisLabelFontSize: string;
|
|
176
|
+
yAxisLabelFontSize: string;
|
|
173
177
|
position: string;
|
|
174
178
|
zIndex: number;
|
|
175
179
|
isShow: boolean;
|
|
@@ -533,6 +537,14 @@ export declare const lineComponentProps: {
|
|
|
533
537
|
type?: import("vue").PropType<string>;
|
|
534
538
|
default?: string;
|
|
535
539
|
};
|
|
540
|
+
xAxisLabelFontSize: {
|
|
541
|
+
type?: import("vue").PropType<string>;
|
|
542
|
+
default?: string;
|
|
543
|
+
};
|
|
544
|
+
yAxisLabelFontSize: {
|
|
545
|
+
type?: import("vue").PropType<string>;
|
|
546
|
+
default?: string;
|
|
547
|
+
};
|
|
536
548
|
position: {
|
|
537
549
|
type?: import("vue").PropType<string>;
|
|
538
550
|
default?: string;
|
|
@@ -217,6 +217,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
217
217
|
type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
|
|
218
218
|
default?: "dashed" | "dotted" | "solid";
|
|
219
219
|
};
|
|
220
|
+
xAxisLabelFontSize: {
|
|
221
|
+
type?: import("vue").PropType<string>;
|
|
222
|
+
default?: string;
|
|
223
|
+
};
|
|
224
|
+
yAxisLabelFontSize: {
|
|
225
|
+
type?: import("vue").PropType<string>;
|
|
226
|
+
default?: string;
|
|
227
|
+
};
|
|
220
228
|
id: {
|
|
221
229
|
type?: import("vue").PropType<string>;
|
|
222
230
|
default?: string;
|
|
@@ -363,7 +371,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
363
371
|
show: boolean;
|
|
364
372
|
};
|
|
365
373
|
axisLabel: {
|
|
366
|
-
fontSize:
|
|
374
|
+
fontSize: string;
|
|
367
375
|
color: string;
|
|
368
376
|
interval: number;
|
|
369
377
|
rotate: number;
|
|
@@ -393,7 +401,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
393
401
|
};
|
|
394
402
|
axisLabel: {
|
|
395
403
|
show: boolean;
|
|
396
|
-
fontSize:
|
|
404
|
+
fontSize: string;
|
|
397
405
|
color: string;
|
|
398
406
|
formatter(value: string): string;
|
|
399
407
|
};
|
|
@@ -656,6 +664,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
656
664
|
type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
|
|
657
665
|
default?: "dashed" | "dotted" | "solid";
|
|
658
666
|
};
|
|
667
|
+
xAxisLabelFontSize: {
|
|
668
|
+
type?: import("vue").PropType<string>;
|
|
669
|
+
default?: string;
|
|
670
|
+
};
|
|
671
|
+
yAxisLabelFontSize: {
|
|
672
|
+
type?: import("vue").PropType<string>;
|
|
673
|
+
default?: string;
|
|
674
|
+
};
|
|
659
675
|
id: {
|
|
660
676
|
type?: import("vue").PropType<string>;
|
|
661
677
|
default?: string;
|
|
@@ -217,6 +217,14 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
217
217
|
type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
|
|
218
218
|
default?: "dashed" | "dotted" | "solid";
|
|
219
219
|
};
|
|
220
|
+
xAxisLabelFontSize: {
|
|
221
|
+
type?: import("vue").PropType<string>;
|
|
222
|
+
default?: string;
|
|
223
|
+
};
|
|
224
|
+
yAxisLabelFontSize: {
|
|
225
|
+
type?: import("vue").PropType<string>;
|
|
226
|
+
default?: string;
|
|
227
|
+
};
|
|
220
228
|
id: {
|
|
221
229
|
type?: import("vue").PropType<string>;
|
|
222
230
|
default?: string;
|
|
@@ -363,7 +371,7 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
363
371
|
show: boolean;
|
|
364
372
|
};
|
|
365
373
|
axisLabel: {
|
|
366
|
-
fontSize:
|
|
374
|
+
fontSize: string;
|
|
367
375
|
color: string;
|
|
368
376
|
interval: number;
|
|
369
377
|
rotate: number;
|
|
@@ -393,7 +401,7 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
393
401
|
};
|
|
394
402
|
axisLabel: {
|
|
395
403
|
show: boolean;
|
|
396
|
-
fontSize:
|
|
404
|
+
fontSize: string;
|
|
397
405
|
color: string;
|
|
398
406
|
formatter(value: string): string;
|
|
399
407
|
};
|
|
@@ -656,6 +664,14 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
656
664
|
type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
|
|
657
665
|
default?: "dashed" | "dotted" | "solid";
|
|
658
666
|
};
|
|
667
|
+
xAxisLabelFontSize: {
|
|
668
|
+
type?: import("vue").PropType<string>;
|
|
669
|
+
default?: string;
|
|
670
|
+
};
|
|
671
|
+
yAxisLabelFontSize: {
|
|
672
|
+
type?: import("vue").PropType<string>;
|
|
673
|
+
default?: string;
|
|
674
|
+
};
|
|
659
675
|
id: {
|
|
660
676
|
type?: import("vue").PropType<string>;
|
|
661
677
|
default?: string;
|
|
@@ -57,6 +57,8 @@ export interface ScatterProps extends Props {
|
|
|
57
57
|
toolboxInfoText: string;
|
|
58
58
|
yAxisLabelShow: boolean;
|
|
59
59
|
yAxisSplitLineType: 'solid' | 'dashed' | 'dotted';
|
|
60
|
+
xAxisLabelFontSize: string;
|
|
61
|
+
yAxisLabelFontSize: string;
|
|
60
62
|
}
|
|
61
63
|
export declare const scatterProps: ScatterProps;
|
|
62
64
|
export declare const scatterComponentProps: {
|
|
@@ -278,6 +280,14 @@ export declare const scatterComponentProps: {
|
|
|
278
280
|
type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
|
|
279
281
|
default?: "dashed" | "dotted" | "solid";
|
|
280
282
|
};
|
|
283
|
+
xAxisLabelFontSize: {
|
|
284
|
+
type?: import("vue").PropType<string>;
|
|
285
|
+
default?: string;
|
|
286
|
+
};
|
|
287
|
+
yAxisLabelFontSize: {
|
|
288
|
+
type?: import("vue").PropType<string>;
|
|
289
|
+
default?: string;
|
|
290
|
+
};
|
|
281
291
|
id: {
|
|
282
292
|
type?: import("vue").PropType<string>;
|
|
283
293
|
default?: string;
|