@ecan-bi/datav 1.3.67 → 1.3.68
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 +3431 -3240
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +23 -23
- 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 +60 -32
- package/types/graph/scatter/index.d.ts +60 -32
- package/types/graph/scatter/props.d.ts +33 -10
package/package.json
CHANGED
|
@@ -257,14 +257,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
257
257
|
type?: import("vue").PropType<string>;
|
|
258
258
|
default?: string;
|
|
259
259
|
};
|
|
260
|
-
isShowMarkLine: {
|
|
261
|
-
type?: import("vue").PropType<boolean>;
|
|
262
|
-
default?: boolean;
|
|
263
|
-
};
|
|
264
|
-
markLineType: {
|
|
265
|
-
type?: import("vue").PropType<"min" | "max" | "average" | "median">;
|
|
266
|
-
default?: "min" | "max" | "average" | "median";
|
|
267
|
-
};
|
|
268
260
|
yAxisName: {
|
|
269
261
|
type?: import("vue").PropType<string>;
|
|
270
262
|
default?: string;
|
|
@@ -293,6 +285,30 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
293
285
|
type?: import("vue").PropType<boolean>;
|
|
294
286
|
default?: boolean;
|
|
295
287
|
};
|
|
288
|
+
xAxisMarkLineValue: {
|
|
289
|
+
type?: import("vue").PropType<{
|
|
290
|
+
[key: string]: any;
|
|
291
|
+
}[]>;
|
|
292
|
+
default?: {
|
|
293
|
+
[key: string]: any;
|
|
294
|
+
}[];
|
|
295
|
+
};
|
|
296
|
+
yAxisMarkLineValue: {
|
|
297
|
+
type?: import("vue").PropType<{
|
|
298
|
+
[key: string]: any;
|
|
299
|
+
}[]>;
|
|
300
|
+
default?: {
|
|
301
|
+
[key: string]: any;
|
|
302
|
+
}[];
|
|
303
|
+
};
|
|
304
|
+
axisMarkArea: {
|
|
305
|
+
type?: import("vue").PropType<{
|
|
306
|
+
[key: string]: any;
|
|
307
|
+
}[]>;
|
|
308
|
+
default?: {
|
|
309
|
+
[key: string]: any;
|
|
310
|
+
}[];
|
|
311
|
+
};
|
|
296
312
|
id: {
|
|
297
313
|
type?: import("vue").PropType<string>;
|
|
298
314
|
default?: string;
|
|
@@ -537,12 +553,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
537
553
|
fontSize: number;
|
|
538
554
|
};
|
|
539
555
|
};
|
|
540
|
-
series:
|
|
541
|
-
markLine: {
|
|
542
|
-
data: {
|
|
543
|
-
type: "min" | "max" | "average" | "median";
|
|
544
|
-
}[];
|
|
545
|
-
};
|
|
556
|
+
series: {
|
|
546
557
|
data: {
|
|
547
558
|
[x: string]: any;
|
|
548
559
|
}[];
|
|
@@ -551,23 +562,24 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
551
562
|
itemStyle: {
|
|
552
563
|
color: string;
|
|
553
564
|
};
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
565
|
+
markLine: {
|
|
566
|
+
symbol: string[];
|
|
567
|
+
data: any[];
|
|
568
|
+
} | {
|
|
569
|
+
data: any[];
|
|
570
|
+
symbol?: undefined;
|
|
571
|
+
};
|
|
572
|
+
markArea: {
|
|
573
|
+
data: any[];
|
|
563
574
|
};
|
|
564
|
-
}
|
|
575
|
+
}[];
|
|
565
576
|
}>;
|
|
566
577
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
567
578
|
click: () => void;
|
|
568
579
|
loading: import("vue").Ref<boolean>;
|
|
569
580
|
onClose: () => void;
|
|
570
581
|
ecanModal: import("vue").Ref<any>;
|
|
582
|
+
echartRef: import("vue").Ref<any>;
|
|
571
583
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
572
584
|
data: {
|
|
573
585
|
type?: import("vue").PropType<import("../../utils/props").Data>;
|
|
@@ -827,14 +839,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
827
839
|
type?: import("vue").PropType<string>;
|
|
828
840
|
default?: string;
|
|
829
841
|
};
|
|
830
|
-
isShowMarkLine: {
|
|
831
|
-
type?: import("vue").PropType<boolean>;
|
|
832
|
-
default?: boolean;
|
|
833
|
-
};
|
|
834
|
-
markLineType: {
|
|
835
|
-
type?: import("vue").PropType<"min" | "max" | "average" | "median">;
|
|
836
|
-
default?: "min" | "max" | "average" | "median";
|
|
837
|
-
};
|
|
838
842
|
yAxisName: {
|
|
839
843
|
type?: import("vue").PropType<string>;
|
|
840
844
|
default?: string;
|
|
@@ -863,6 +867,30 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
863
867
|
type?: import("vue").PropType<boolean>;
|
|
864
868
|
default?: boolean;
|
|
865
869
|
};
|
|
870
|
+
xAxisMarkLineValue: {
|
|
871
|
+
type?: import("vue").PropType<{
|
|
872
|
+
[key: string]: any;
|
|
873
|
+
}[]>;
|
|
874
|
+
default?: {
|
|
875
|
+
[key: string]: any;
|
|
876
|
+
}[];
|
|
877
|
+
};
|
|
878
|
+
yAxisMarkLineValue: {
|
|
879
|
+
type?: import("vue").PropType<{
|
|
880
|
+
[key: string]: any;
|
|
881
|
+
}[]>;
|
|
882
|
+
default?: {
|
|
883
|
+
[key: string]: any;
|
|
884
|
+
}[];
|
|
885
|
+
};
|
|
886
|
+
axisMarkArea: {
|
|
887
|
+
type?: import("vue").PropType<{
|
|
888
|
+
[key: string]: any;
|
|
889
|
+
}[]>;
|
|
890
|
+
default?: {
|
|
891
|
+
[key: string]: any;
|
|
892
|
+
}[];
|
|
893
|
+
};
|
|
866
894
|
id: {
|
|
867
895
|
type?: import("vue").PropType<string>;
|
|
868
896
|
default?: string;
|
|
@@ -257,14 +257,6 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
257
257
|
type?: import("vue").PropType<string>;
|
|
258
258
|
default?: string;
|
|
259
259
|
};
|
|
260
|
-
isShowMarkLine: {
|
|
261
|
-
type?: import("vue").PropType<boolean>;
|
|
262
|
-
default?: boolean;
|
|
263
|
-
};
|
|
264
|
-
markLineType: {
|
|
265
|
-
type?: import("vue").PropType<"min" | "max" | "average" | "median">;
|
|
266
|
-
default?: "min" | "max" | "average" | "median";
|
|
267
|
-
};
|
|
268
260
|
yAxisName: {
|
|
269
261
|
type?: import("vue").PropType<string>;
|
|
270
262
|
default?: string;
|
|
@@ -293,6 +285,30 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
293
285
|
type?: import("vue").PropType<boolean>;
|
|
294
286
|
default?: boolean;
|
|
295
287
|
};
|
|
288
|
+
xAxisMarkLineValue: {
|
|
289
|
+
type?: import("vue").PropType<{
|
|
290
|
+
[key: string]: any;
|
|
291
|
+
}[]>;
|
|
292
|
+
default?: {
|
|
293
|
+
[key: string]: any;
|
|
294
|
+
}[];
|
|
295
|
+
};
|
|
296
|
+
yAxisMarkLineValue: {
|
|
297
|
+
type?: import("vue").PropType<{
|
|
298
|
+
[key: string]: any;
|
|
299
|
+
}[]>;
|
|
300
|
+
default?: {
|
|
301
|
+
[key: string]: any;
|
|
302
|
+
}[];
|
|
303
|
+
};
|
|
304
|
+
axisMarkArea: {
|
|
305
|
+
type?: import("vue").PropType<{
|
|
306
|
+
[key: string]: any;
|
|
307
|
+
}[]>;
|
|
308
|
+
default?: {
|
|
309
|
+
[key: string]: any;
|
|
310
|
+
}[];
|
|
311
|
+
};
|
|
296
312
|
id: {
|
|
297
313
|
type?: import("vue").PropType<string>;
|
|
298
314
|
default?: string;
|
|
@@ -537,12 +553,7 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
537
553
|
fontSize: number;
|
|
538
554
|
};
|
|
539
555
|
};
|
|
540
|
-
series:
|
|
541
|
-
markLine: {
|
|
542
|
-
data: {
|
|
543
|
-
type: "min" | "max" | "average" | "median";
|
|
544
|
-
}[];
|
|
545
|
-
};
|
|
556
|
+
series: {
|
|
546
557
|
data: {
|
|
547
558
|
[x: string]: any;
|
|
548
559
|
}[];
|
|
@@ -551,23 +562,24 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
551
562
|
itemStyle: {
|
|
552
563
|
color: string;
|
|
553
564
|
};
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
565
|
+
markLine: {
|
|
566
|
+
symbol: string[];
|
|
567
|
+
data: any[];
|
|
568
|
+
} | {
|
|
569
|
+
data: any[];
|
|
570
|
+
symbol?: undefined;
|
|
571
|
+
};
|
|
572
|
+
markArea: {
|
|
573
|
+
data: any[];
|
|
563
574
|
};
|
|
564
|
-
}
|
|
575
|
+
}[];
|
|
565
576
|
}>;
|
|
566
577
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
567
578
|
click: () => void;
|
|
568
579
|
loading: import("vue").Ref<boolean>;
|
|
569
580
|
onClose: () => void;
|
|
570
581
|
ecanModal: import("vue").Ref<any>;
|
|
582
|
+
echartRef: import("vue").Ref<any>;
|
|
571
583
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
572
584
|
data: {
|
|
573
585
|
type?: import("vue").PropType<import("../../utils/props").Data>;
|
|
@@ -827,14 +839,6 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
827
839
|
type?: import("vue").PropType<string>;
|
|
828
840
|
default?: string;
|
|
829
841
|
};
|
|
830
|
-
isShowMarkLine: {
|
|
831
|
-
type?: import("vue").PropType<boolean>;
|
|
832
|
-
default?: boolean;
|
|
833
|
-
};
|
|
834
|
-
markLineType: {
|
|
835
|
-
type?: import("vue").PropType<"min" | "max" | "average" | "median">;
|
|
836
|
-
default?: "min" | "max" | "average" | "median";
|
|
837
|
-
};
|
|
838
842
|
yAxisName: {
|
|
839
843
|
type?: import("vue").PropType<string>;
|
|
840
844
|
default?: string;
|
|
@@ -863,6 +867,30 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
863
867
|
type?: import("vue").PropType<boolean>;
|
|
864
868
|
default?: boolean;
|
|
865
869
|
};
|
|
870
|
+
xAxisMarkLineValue: {
|
|
871
|
+
type?: import("vue").PropType<{
|
|
872
|
+
[key: string]: any;
|
|
873
|
+
}[]>;
|
|
874
|
+
default?: {
|
|
875
|
+
[key: string]: any;
|
|
876
|
+
}[];
|
|
877
|
+
};
|
|
878
|
+
yAxisMarkLineValue: {
|
|
879
|
+
type?: import("vue").PropType<{
|
|
880
|
+
[key: string]: any;
|
|
881
|
+
}[]>;
|
|
882
|
+
default?: {
|
|
883
|
+
[key: string]: any;
|
|
884
|
+
}[];
|
|
885
|
+
};
|
|
886
|
+
axisMarkArea: {
|
|
887
|
+
type?: import("vue").PropType<{
|
|
888
|
+
[key: string]: any;
|
|
889
|
+
}[]>;
|
|
890
|
+
default?: {
|
|
891
|
+
[key: string]: any;
|
|
892
|
+
}[];
|
|
893
|
+
};
|
|
866
894
|
id: {
|
|
867
895
|
type?: import("vue").PropType<string>;
|
|
868
896
|
default?: string;
|
|
@@ -67,8 +67,6 @@ export interface ScatterProps extends Props {
|
|
|
67
67
|
yAxisLabelFontSize: string;
|
|
68
68
|
graphicType: string;
|
|
69
69
|
tooltipPosition: string;
|
|
70
|
-
isShowMarkLine: boolean;
|
|
71
|
-
markLineType: 'min' | 'max' | 'average' | 'median';
|
|
72
70
|
yAxisName: string;
|
|
73
71
|
xAxisName: string;
|
|
74
72
|
showXAxisLineArrow: boolean;
|
|
@@ -76,6 +74,15 @@ export interface ScatterProps extends Props {
|
|
|
76
74
|
xAxisLineInverse: boolean;
|
|
77
75
|
yAxisLineInverse: boolean;
|
|
78
76
|
yAxisTickShow: boolean;
|
|
77
|
+
xAxisMarkLineValue: {
|
|
78
|
+
[key: string]: any;
|
|
79
|
+
}[];
|
|
80
|
+
yAxisMarkLineValue: {
|
|
81
|
+
[key: string]: any;
|
|
82
|
+
}[];
|
|
83
|
+
axisMarkArea: {
|
|
84
|
+
[key: string]: any;
|
|
85
|
+
}[];
|
|
79
86
|
}
|
|
80
87
|
export declare const scatterProps: ScatterProps;
|
|
81
88
|
export declare const scatterComponentProps: {
|
|
@@ -337,14 +344,6 @@ export declare const scatterComponentProps: {
|
|
|
337
344
|
type?: import("vue").PropType<string>;
|
|
338
345
|
default?: string;
|
|
339
346
|
};
|
|
340
|
-
isShowMarkLine: {
|
|
341
|
-
type?: import("vue").PropType<boolean>;
|
|
342
|
-
default?: boolean;
|
|
343
|
-
};
|
|
344
|
-
markLineType: {
|
|
345
|
-
type?: import("vue").PropType<"min" | "max" | "average" | "median">;
|
|
346
|
-
default?: "min" | "max" | "average" | "median";
|
|
347
|
-
};
|
|
348
347
|
yAxisName: {
|
|
349
348
|
type?: import("vue").PropType<string>;
|
|
350
349
|
default?: string;
|
|
@@ -373,6 +372,30 @@ export declare const scatterComponentProps: {
|
|
|
373
372
|
type?: import("vue").PropType<boolean>;
|
|
374
373
|
default?: boolean;
|
|
375
374
|
};
|
|
375
|
+
xAxisMarkLineValue: {
|
|
376
|
+
type?: import("vue").PropType<{
|
|
377
|
+
[key: string]: any;
|
|
378
|
+
}[]>;
|
|
379
|
+
default?: {
|
|
380
|
+
[key: string]: any;
|
|
381
|
+
}[];
|
|
382
|
+
};
|
|
383
|
+
yAxisMarkLineValue: {
|
|
384
|
+
type?: import("vue").PropType<{
|
|
385
|
+
[key: string]: any;
|
|
386
|
+
}[]>;
|
|
387
|
+
default?: {
|
|
388
|
+
[key: string]: any;
|
|
389
|
+
}[];
|
|
390
|
+
};
|
|
391
|
+
axisMarkArea: {
|
|
392
|
+
type?: import("vue").PropType<{
|
|
393
|
+
[key: string]: any;
|
|
394
|
+
}[]>;
|
|
395
|
+
default?: {
|
|
396
|
+
[key: string]: any;
|
|
397
|
+
}[];
|
|
398
|
+
};
|
|
376
399
|
id: {
|
|
377
400
|
type?: import("vue").PropType<string>;
|
|
378
401
|
default?: string;
|