@ecan-bi/datav 1.2.43 → 1.2.45
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 +2839 -2829
- 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/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
|
@@ -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;
|