@ecan-bi/datav 1.2.37 → 1.2.39
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 +2333 -2319
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +20 -20
- 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 +8 -0
- package/types/control/select/index.d.ts +8 -0
- package/types/control/select/props.d.ts +5 -0
- package/types/graph/bar/Bar.vue.d.ts +9 -1
- package/types/graph/bar/index.d.ts +9 -1
- package/types/graph/bar/props.d.ts +5 -0
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +9 -1
- package/types/graph/combo-graph/index.d.ts +9 -1
- package/types/graph/combo-graph/props.d.ts +5 -0
- package/types/graph/line/Line.vue.d.ts +9 -1
- package/types/graph/line/index.d.ts +9 -1
- package/types/graph/line/props.d.ts +6 -0
- package/types/graph/pie/Pie.vue.d.ts +8 -0
- package/types/graph/pie/index.d.ts +8 -0
- package/types/graph/pie/props.d.ts +5 -0
- package/types/graph/radar/Radar.vue.d.ts +17 -1
- package/types/graph/radar/index.d.ts +17 -1
- package/types/graph/radar/props.d.ts +14 -0
|
@@ -37,6 +37,10 @@ export interface RadarProps extends Props {
|
|
|
37
37
|
labelPosition: 'inside' | 'top' | 'bottom' | 'right' | 'left';
|
|
38
38
|
labelColor: string;
|
|
39
39
|
axisNameColor: string;
|
|
40
|
+
legendFontSize: string;
|
|
41
|
+
graphicConfig: {
|
|
42
|
+
[key: string]: any;
|
|
43
|
+
};
|
|
40
44
|
}
|
|
41
45
|
export declare const radarProps: {
|
|
42
46
|
id: string;
|
|
@@ -96,6 +100,8 @@ export declare const radarProps: {
|
|
|
96
100
|
labelPosition: string;
|
|
97
101
|
labelColor: string;
|
|
98
102
|
axisNameColor: string;
|
|
103
|
+
legendFontSize: string;
|
|
104
|
+
graphicConfig: {};
|
|
99
105
|
position: string;
|
|
100
106
|
zIndex: number;
|
|
101
107
|
isShow: boolean;
|
|
@@ -319,6 +325,14 @@ export declare const radarComponentProps: {
|
|
|
319
325
|
type?: import("vue").PropType<string>;
|
|
320
326
|
default?: string;
|
|
321
327
|
};
|
|
328
|
+
legendFontSize: {
|
|
329
|
+
type?: import("vue").PropType<string>;
|
|
330
|
+
default?: string;
|
|
331
|
+
};
|
|
332
|
+
graphicConfig: {
|
|
333
|
+
type?: import("vue").PropType<{}>;
|
|
334
|
+
default?: {};
|
|
335
|
+
};
|
|
322
336
|
position: {
|
|
323
337
|
type?: import("vue").PropType<string>;
|
|
324
338
|
default?: string;
|