@ecan-bi/datav 1.3.12 → 1.3.13
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 +2410 -2348
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +22 -22
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/graph/bar/Bar.vue.d.ts +28 -0
- package/types/graph/bar/index.d.ts +28 -0
- package/types/graph/bar/props.d.ts +10 -0
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +36 -0
- package/types/graph/combo-graph/index.d.ts +36 -0
- package/types/graph/combo-graph/props.d.ts +15 -0
- package/types/graph/line/Line.vue.d.ts +28 -0
- package/types/graph/line/index.d.ts +28 -0
- package/types/graph/line/props.d.ts +12 -0
- package/types/graph/scatter/Scatter.vue.d.ts +28 -0
- package/types/graph/scatter/index.d.ts +28 -0
- package/types/graph/scatter/props.d.ts +10 -0
|
@@ -261,6 +261,14 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
261
261
|
type?: import("vue").PropType<"min" | "max" | "average" | "median">;
|
|
262
262
|
default?: "min" | "max" | "average" | "median";
|
|
263
263
|
};
|
|
264
|
+
yAxisName: {
|
|
265
|
+
type?: import("vue").PropType<string>;
|
|
266
|
+
default?: string;
|
|
267
|
+
};
|
|
268
|
+
xAxisName: {
|
|
269
|
+
type?: import("vue").PropType<string>;
|
|
270
|
+
default?: string;
|
|
271
|
+
};
|
|
264
272
|
id: {
|
|
265
273
|
type?: import("vue").PropType<string>;
|
|
266
274
|
default?: string;
|
|
@@ -428,6 +436,12 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
428
436
|
axisTick: {
|
|
429
437
|
show: boolean;
|
|
430
438
|
};
|
|
439
|
+
name: string;
|
|
440
|
+
nameTextStyle: {
|
|
441
|
+
fontSize: string;
|
|
442
|
+
color: string;
|
|
443
|
+
align: string;
|
|
444
|
+
};
|
|
431
445
|
};
|
|
432
446
|
yAxis: {
|
|
433
447
|
splitLine: {
|
|
@@ -452,6 +466,12 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
452
466
|
color: string;
|
|
453
467
|
};
|
|
454
468
|
};
|
|
469
|
+
name: string;
|
|
470
|
+
nameTextStyle: {
|
|
471
|
+
fontSize: string;
|
|
472
|
+
color: string;
|
|
473
|
+
align: string;
|
|
474
|
+
};
|
|
455
475
|
};
|
|
456
476
|
tooltip: {
|
|
457
477
|
show: boolean;
|
|
@@ -763,6 +783,14 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
763
783
|
type?: import("vue").PropType<"min" | "max" | "average" | "median">;
|
|
764
784
|
default?: "min" | "max" | "average" | "median";
|
|
765
785
|
};
|
|
786
|
+
yAxisName: {
|
|
787
|
+
type?: import("vue").PropType<string>;
|
|
788
|
+
default?: string;
|
|
789
|
+
};
|
|
790
|
+
xAxisName: {
|
|
791
|
+
type?: import("vue").PropType<string>;
|
|
792
|
+
default?: string;
|
|
793
|
+
};
|
|
766
794
|
id: {
|
|
767
795
|
type?: import("vue").PropType<string>;
|
|
768
796
|
default?: string;
|
|
@@ -68,6 +68,8 @@ export interface ScatterProps extends Props {
|
|
|
68
68
|
tooltipPosition: string;
|
|
69
69
|
isShowMarkLine: boolean;
|
|
70
70
|
markLineType: 'min' | 'max' | 'average' | 'median';
|
|
71
|
+
yAxisName: string;
|
|
72
|
+
xAxisName: string;
|
|
71
73
|
}
|
|
72
74
|
export declare const scatterProps: ScatterProps;
|
|
73
75
|
export declare const scatterComponentProps: {
|
|
@@ -333,6 +335,14 @@ export declare const scatterComponentProps: {
|
|
|
333
335
|
type?: import("vue").PropType<"min" | "max" | "average" | "median">;
|
|
334
336
|
default?: "min" | "max" | "average" | "median";
|
|
335
337
|
};
|
|
338
|
+
yAxisName: {
|
|
339
|
+
type?: import("vue").PropType<string>;
|
|
340
|
+
default?: string;
|
|
341
|
+
};
|
|
342
|
+
xAxisName: {
|
|
343
|
+
type?: import("vue").PropType<string>;
|
|
344
|
+
default?: string;
|
|
345
|
+
};
|
|
336
346
|
id: {
|
|
337
347
|
type?: import("vue").PropType<string>;
|
|
338
348
|
default?: string;
|