@ecan-bi/datav 1.5.93 → 1.5.95
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 +4757 -4678
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +30 -30
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/graph/scatter/Scatter.vue.d.ts +65 -0
- package/types/graph/scatter/index.d.ts +65 -0
- package/types/graph/scatter/props.d.ts +35 -0
package/package.json
CHANGED
|
@@ -349,6 +349,34 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
349
349
|
type?: import("vue").PropType<string>;
|
|
350
350
|
default?: string;
|
|
351
351
|
};
|
|
352
|
+
labelShow: {
|
|
353
|
+
type?: import("vue").PropType<boolean>;
|
|
354
|
+
default?: boolean;
|
|
355
|
+
};
|
|
356
|
+
labelFontSize: {
|
|
357
|
+
type?: import("vue").PropType<string>;
|
|
358
|
+
default?: string;
|
|
359
|
+
};
|
|
360
|
+
labelPosition: {
|
|
361
|
+
type?: import("vue").PropType<"top" | "left" | "right" | "bottom" | "inside">;
|
|
362
|
+
default?: "top" | "left" | "right" | "bottom" | "inside";
|
|
363
|
+
};
|
|
364
|
+
labelColor: {
|
|
365
|
+
type?: import("vue").PropType<string>;
|
|
366
|
+
default?: string;
|
|
367
|
+
};
|
|
368
|
+
labelWidth: {
|
|
369
|
+
type?: import("vue").PropType<number>;
|
|
370
|
+
default?: number;
|
|
371
|
+
};
|
|
372
|
+
labelOverflow: {
|
|
373
|
+
type?: import("vue").PropType<"none" | "truncate" | "break">;
|
|
374
|
+
default?: "none" | "truncate" | "break";
|
|
375
|
+
};
|
|
376
|
+
labelFormatter: {
|
|
377
|
+
type?: import("vue").PropType<string>;
|
|
378
|
+
default?: string;
|
|
379
|
+
};
|
|
352
380
|
id: {
|
|
353
381
|
type?: import("vue").PropType<string>;
|
|
354
382
|
default?: string;
|
|
@@ -655,6 +683,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
655
683
|
itemStyle: {
|
|
656
684
|
color: string;
|
|
657
685
|
};
|
|
686
|
+
label: {
|
|
687
|
+
show: boolean;
|
|
688
|
+
fontSize: string;
|
|
689
|
+
position: "top" | "left" | "right" | "bottom" | "inside";
|
|
690
|
+
color: string;
|
|
691
|
+
width: number;
|
|
692
|
+
overflow: "none" | "truncate" | "break";
|
|
693
|
+
formatter: (params: any) => string;
|
|
694
|
+
};
|
|
658
695
|
markLine: {
|
|
659
696
|
symbol: string[];
|
|
660
697
|
data: any[];
|
|
@@ -1025,6 +1062,34 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1025
1062
|
type?: import("vue").PropType<string>;
|
|
1026
1063
|
default?: string;
|
|
1027
1064
|
};
|
|
1065
|
+
labelShow: {
|
|
1066
|
+
type?: import("vue").PropType<boolean>;
|
|
1067
|
+
default?: boolean;
|
|
1068
|
+
};
|
|
1069
|
+
labelFontSize: {
|
|
1070
|
+
type?: import("vue").PropType<string>;
|
|
1071
|
+
default?: string;
|
|
1072
|
+
};
|
|
1073
|
+
labelPosition: {
|
|
1074
|
+
type?: import("vue").PropType<"top" | "left" | "right" | "bottom" | "inside">;
|
|
1075
|
+
default?: "top" | "left" | "right" | "bottom" | "inside";
|
|
1076
|
+
};
|
|
1077
|
+
labelColor: {
|
|
1078
|
+
type?: import("vue").PropType<string>;
|
|
1079
|
+
default?: string;
|
|
1080
|
+
};
|
|
1081
|
+
labelWidth: {
|
|
1082
|
+
type?: import("vue").PropType<number>;
|
|
1083
|
+
default?: number;
|
|
1084
|
+
};
|
|
1085
|
+
labelOverflow: {
|
|
1086
|
+
type?: import("vue").PropType<"none" | "truncate" | "break">;
|
|
1087
|
+
default?: "none" | "truncate" | "break";
|
|
1088
|
+
};
|
|
1089
|
+
labelFormatter: {
|
|
1090
|
+
type?: import("vue").PropType<string>;
|
|
1091
|
+
default?: string;
|
|
1092
|
+
};
|
|
1028
1093
|
id: {
|
|
1029
1094
|
type?: import("vue").PropType<string>;
|
|
1030
1095
|
default?: string;
|
|
@@ -349,6 +349,34 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
349
349
|
type?: import("vue").PropType<string>;
|
|
350
350
|
default?: string;
|
|
351
351
|
};
|
|
352
|
+
labelShow: {
|
|
353
|
+
type?: import("vue").PropType<boolean>;
|
|
354
|
+
default?: boolean;
|
|
355
|
+
};
|
|
356
|
+
labelFontSize: {
|
|
357
|
+
type?: import("vue").PropType<string>;
|
|
358
|
+
default?: string;
|
|
359
|
+
};
|
|
360
|
+
labelPosition: {
|
|
361
|
+
type?: import("vue").PropType<"top" | "left" | "right" | "bottom" | "inside">;
|
|
362
|
+
default?: "top" | "left" | "right" | "bottom" | "inside";
|
|
363
|
+
};
|
|
364
|
+
labelColor: {
|
|
365
|
+
type?: import("vue").PropType<string>;
|
|
366
|
+
default?: string;
|
|
367
|
+
};
|
|
368
|
+
labelWidth: {
|
|
369
|
+
type?: import("vue").PropType<number>;
|
|
370
|
+
default?: number;
|
|
371
|
+
};
|
|
372
|
+
labelOverflow: {
|
|
373
|
+
type?: import("vue").PropType<"none" | "truncate" | "break">;
|
|
374
|
+
default?: "none" | "truncate" | "break";
|
|
375
|
+
};
|
|
376
|
+
labelFormatter: {
|
|
377
|
+
type?: import("vue").PropType<string>;
|
|
378
|
+
default?: string;
|
|
379
|
+
};
|
|
352
380
|
id: {
|
|
353
381
|
type?: import("vue").PropType<string>;
|
|
354
382
|
default?: string;
|
|
@@ -655,6 +683,15 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
655
683
|
itemStyle: {
|
|
656
684
|
color: string;
|
|
657
685
|
};
|
|
686
|
+
label: {
|
|
687
|
+
show: boolean;
|
|
688
|
+
fontSize: string;
|
|
689
|
+
position: "top" | "left" | "right" | "bottom" | "inside";
|
|
690
|
+
color: string;
|
|
691
|
+
width: number;
|
|
692
|
+
overflow: "none" | "truncate" | "break";
|
|
693
|
+
formatter: (params: any) => string;
|
|
694
|
+
};
|
|
658
695
|
markLine: {
|
|
659
696
|
symbol: string[];
|
|
660
697
|
data: any[];
|
|
@@ -1025,6 +1062,34 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
1025
1062
|
type?: import("vue").PropType<string>;
|
|
1026
1063
|
default?: string;
|
|
1027
1064
|
};
|
|
1065
|
+
labelShow: {
|
|
1066
|
+
type?: import("vue").PropType<boolean>;
|
|
1067
|
+
default?: boolean;
|
|
1068
|
+
};
|
|
1069
|
+
labelFontSize: {
|
|
1070
|
+
type?: import("vue").PropType<string>;
|
|
1071
|
+
default?: string;
|
|
1072
|
+
};
|
|
1073
|
+
labelPosition: {
|
|
1074
|
+
type?: import("vue").PropType<"top" | "left" | "right" | "bottom" | "inside">;
|
|
1075
|
+
default?: "top" | "left" | "right" | "bottom" | "inside";
|
|
1076
|
+
};
|
|
1077
|
+
labelColor: {
|
|
1078
|
+
type?: import("vue").PropType<string>;
|
|
1079
|
+
default?: string;
|
|
1080
|
+
};
|
|
1081
|
+
labelWidth: {
|
|
1082
|
+
type?: import("vue").PropType<number>;
|
|
1083
|
+
default?: number;
|
|
1084
|
+
};
|
|
1085
|
+
labelOverflow: {
|
|
1086
|
+
type?: import("vue").PropType<"none" | "truncate" | "break">;
|
|
1087
|
+
default?: "none" | "truncate" | "break";
|
|
1088
|
+
};
|
|
1089
|
+
labelFormatter: {
|
|
1090
|
+
type?: import("vue").PropType<string>;
|
|
1091
|
+
default?: string;
|
|
1092
|
+
};
|
|
1028
1093
|
id: {
|
|
1029
1094
|
type?: import("vue").PropType<string>;
|
|
1030
1095
|
default?: string;
|
|
@@ -93,6 +93,13 @@ export interface ScatterProps extends Props {
|
|
|
93
93
|
tipText: string;
|
|
94
94
|
tipTextColor: string;
|
|
95
95
|
tipTextFontSize: string;
|
|
96
|
+
labelShow: boolean;
|
|
97
|
+
labelFontSize: string;
|
|
98
|
+
labelPosition: 'inside' | 'top' | 'bottom' | 'right' | 'left';
|
|
99
|
+
labelColor: string;
|
|
100
|
+
labelWidth: number;
|
|
101
|
+
labelOverflow: 'none' | 'truncate' | 'break';
|
|
102
|
+
labelFormatter: string;
|
|
96
103
|
}
|
|
97
104
|
export declare const scatterProps: ScatterProps;
|
|
98
105
|
export declare const scatterComponentProps: {
|
|
@@ -446,6 +453,34 @@ export declare const scatterComponentProps: {
|
|
|
446
453
|
type?: import("vue").PropType<string>;
|
|
447
454
|
default?: string;
|
|
448
455
|
};
|
|
456
|
+
labelShow: {
|
|
457
|
+
type?: import("vue").PropType<boolean>;
|
|
458
|
+
default?: boolean;
|
|
459
|
+
};
|
|
460
|
+
labelFontSize: {
|
|
461
|
+
type?: import("vue").PropType<string>;
|
|
462
|
+
default?: string;
|
|
463
|
+
};
|
|
464
|
+
labelPosition: {
|
|
465
|
+
type?: import("vue").PropType<"top" | "left" | "right" | "bottom" | "inside">;
|
|
466
|
+
default?: "top" | "left" | "right" | "bottom" | "inside";
|
|
467
|
+
};
|
|
468
|
+
labelColor: {
|
|
469
|
+
type?: import("vue").PropType<string>;
|
|
470
|
+
default?: string;
|
|
471
|
+
};
|
|
472
|
+
labelWidth: {
|
|
473
|
+
type?: import("vue").PropType<number>;
|
|
474
|
+
default?: number;
|
|
475
|
+
};
|
|
476
|
+
labelOverflow: {
|
|
477
|
+
type?: import("vue").PropType<"none" | "truncate" | "break">;
|
|
478
|
+
default?: "none" | "truncate" | "break";
|
|
479
|
+
};
|
|
480
|
+
labelFormatter: {
|
|
481
|
+
type?: import("vue").PropType<string>;
|
|
482
|
+
default?: string;
|
|
483
|
+
};
|
|
449
484
|
id: {
|
|
450
485
|
type?: import("vue").PropType<string>;
|
|
451
486
|
default?: string;
|