@ecan-bi/datav 1.3.12 → 1.3.14
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 +2418 -2352
- 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/container/tabs/Tabs.vue.d.ts +19 -1
- package/types/container/tabs/index.d.ts +19 -1
- package/types/container/tabs/props.d.ts +10 -0
- 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
|
@@ -409,6 +409,14 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
409
409
|
type?: import("vue").PropType<boolean>;
|
|
410
410
|
default?: boolean;
|
|
411
411
|
};
|
|
412
|
+
yAxisName: {
|
|
413
|
+
type?: import("vue").PropType<string>;
|
|
414
|
+
default?: string;
|
|
415
|
+
};
|
|
416
|
+
xAxisName: {
|
|
417
|
+
type?: import("vue").PropType<string>;
|
|
418
|
+
default?: string;
|
|
419
|
+
};
|
|
412
420
|
position: {
|
|
413
421
|
type?: import("vue").PropType<string>;
|
|
414
422
|
default?: string;
|
|
@@ -554,6 +562,12 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
554
562
|
axisTick: {
|
|
555
563
|
show: boolean;
|
|
556
564
|
};
|
|
565
|
+
name: string;
|
|
566
|
+
nameTextStyle: {
|
|
567
|
+
fontSize: string;
|
|
568
|
+
color: string;
|
|
569
|
+
align: string;
|
|
570
|
+
};
|
|
557
571
|
};
|
|
558
572
|
yAxis: {
|
|
559
573
|
type: string;
|
|
@@ -580,6 +594,12 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
580
594
|
color: string;
|
|
581
595
|
};
|
|
582
596
|
};
|
|
597
|
+
name: string;
|
|
598
|
+
nameTextStyle: {
|
|
599
|
+
fontSize: string;
|
|
600
|
+
color: string;
|
|
601
|
+
align: string;
|
|
602
|
+
};
|
|
583
603
|
};
|
|
584
604
|
legend: {
|
|
585
605
|
type: string;
|
|
@@ -1032,6 +1052,14 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
1032
1052
|
type?: import("vue").PropType<boolean>;
|
|
1033
1053
|
default?: boolean;
|
|
1034
1054
|
};
|
|
1055
|
+
yAxisName: {
|
|
1056
|
+
type?: import("vue").PropType<string>;
|
|
1057
|
+
default?: string;
|
|
1058
|
+
};
|
|
1059
|
+
xAxisName: {
|
|
1060
|
+
type?: import("vue").PropType<string>;
|
|
1061
|
+
default?: string;
|
|
1062
|
+
};
|
|
1035
1063
|
position: {
|
|
1036
1064
|
type?: import("vue").PropType<string>;
|
|
1037
1065
|
default?: string;
|
|
@@ -92,6 +92,8 @@ export interface LineProps extends Props {
|
|
|
92
92
|
legendHeight: number | null;
|
|
93
93
|
legendTextWidth: number | null;
|
|
94
94
|
legendScroll: boolean;
|
|
95
|
+
yAxisName: string;
|
|
96
|
+
xAxisName: string;
|
|
95
97
|
}
|
|
96
98
|
export declare const lineProps: {
|
|
97
99
|
id: string;
|
|
@@ -202,6 +204,8 @@ export declare const lineProps: {
|
|
|
202
204
|
legendHeight: any;
|
|
203
205
|
legendTextWidth: any;
|
|
204
206
|
legendScroll: boolean;
|
|
207
|
+
yAxisName: string;
|
|
208
|
+
xAxisName: string;
|
|
205
209
|
position: string;
|
|
206
210
|
zIndex: number;
|
|
207
211
|
isShow: boolean;
|
|
@@ -629,6 +633,14 @@ export declare const lineComponentProps: {
|
|
|
629
633
|
type?: import("vue").PropType<boolean>;
|
|
630
634
|
default?: boolean;
|
|
631
635
|
};
|
|
636
|
+
yAxisName: {
|
|
637
|
+
type?: import("vue").PropType<string>;
|
|
638
|
+
default?: string;
|
|
639
|
+
};
|
|
640
|
+
xAxisName: {
|
|
641
|
+
type?: import("vue").PropType<string>;
|
|
642
|
+
default?: string;
|
|
643
|
+
};
|
|
632
644
|
position: {
|
|
633
645
|
type?: import("vue").PropType<string>;
|
|
634
646
|
default?: string;
|
|
@@ -261,6 +261,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
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 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
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 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
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 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
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;
|
|
@@ -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;
|