@ecan-bi/datav 1.0.93 → 1.0.95
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 +128 -110
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +128 -110
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +16 -16
- package/package.json +1 -1
- package/types/container/tabs/Tabs.vue.d.ts +56 -0
- package/types/container/tabs/index.d.ts +56 -0
- package/types/container/tabs/props.d.ts +32 -0
- package/types/graph/bar/Bar.vue.d.ts +149 -0
- package/types/graph/bar/index.d.ts +149 -0
- package/types/graph/bar/props.d.ts +75 -0
- package/types/map/map/Map.vue.d.ts +1 -1
- package/types/map/map/index.d.ts +1 -1
|
@@ -17,6 +17,9 @@ export interface BarProps extends Props {
|
|
|
17
17
|
xAxisLineStyleColor: string;
|
|
18
18
|
xAxisTickShow: boolean;
|
|
19
19
|
xAxisLabelFormatter: string;
|
|
20
|
+
yAxisLabelWidth: number | undefined;
|
|
21
|
+
yAxisLabelOverflow: 'none' | 'truncate' | 'break' | 'breakAll';
|
|
22
|
+
yAxisLabelRotate: number;
|
|
20
23
|
yAxisSplitLineShow: boolean;
|
|
21
24
|
xAxisSplitLineStyleColor: string;
|
|
22
25
|
yAxisSplitLineStyleColor: string;
|
|
@@ -52,6 +55,8 @@ export interface BarProps extends Props {
|
|
|
52
55
|
toolboxInfoText: string;
|
|
53
56
|
isUseHorizontalAxis: boolean;
|
|
54
57
|
axisInverse: boolean;
|
|
58
|
+
xAxisInverse: boolean;
|
|
59
|
+
yAxisInverse: boolean;
|
|
55
60
|
isStack: boolean;
|
|
56
61
|
}
|
|
57
62
|
export declare const barProps: BarProps;
|
|
@@ -294,6 +299,48 @@ export declare const barComponentProps: {
|
|
|
294
299
|
layer: '2';
|
|
295
300
|
};
|
|
296
301
|
};
|
|
302
|
+
yAxisLabelWidth: {
|
|
303
|
+
type?: undefined;
|
|
304
|
+
default?: undefined;
|
|
305
|
+
} | {
|
|
306
|
+
type: any;
|
|
307
|
+
default: string | number | boolean | string[] | import('../../utils/props').Events | Data | KeyTypeDataFieldNames | ValueTypeDataFieldNames | {
|
|
308
|
+
[key: string]: any;
|
|
309
|
+
} | import('../../utils/props').RequestParams | {
|
|
310
|
+
[key: string]: any;
|
|
311
|
+
chartType: 'bar';
|
|
312
|
+
plugin: '1';
|
|
313
|
+
layer: '2';
|
|
314
|
+
};
|
|
315
|
+
};
|
|
316
|
+
yAxisLabelOverflow: {
|
|
317
|
+
type?: undefined;
|
|
318
|
+
default?: undefined;
|
|
319
|
+
} | {
|
|
320
|
+
type: any;
|
|
321
|
+
default: string | number | boolean | string[] | import('../../utils/props').Events | Data | KeyTypeDataFieldNames | ValueTypeDataFieldNames | {
|
|
322
|
+
[key: string]: any;
|
|
323
|
+
} | import('../../utils/props').RequestParams | {
|
|
324
|
+
[key: string]: any;
|
|
325
|
+
chartType: 'bar';
|
|
326
|
+
plugin: '1';
|
|
327
|
+
layer: '2';
|
|
328
|
+
};
|
|
329
|
+
};
|
|
330
|
+
yAxisLabelRotate: {
|
|
331
|
+
type?: undefined;
|
|
332
|
+
default?: undefined;
|
|
333
|
+
} | {
|
|
334
|
+
type: any;
|
|
335
|
+
default: string | number | boolean | string[] | import('../../utils/props').Events | Data | KeyTypeDataFieldNames | ValueTypeDataFieldNames | {
|
|
336
|
+
[key: string]: any;
|
|
337
|
+
} | import('../../utils/props').RequestParams | {
|
|
338
|
+
[key: string]: any;
|
|
339
|
+
chartType: 'bar';
|
|
340
|
+
plugin: '1';
|
|
341
|
+
layer: '2';
|
|
342
|
+
};
|
|
343
|
+
};
|
|
297
344
|
yAxisSplitLineShow: {
|
|
298
345
|
type?: undefined;
|
|
299
346
|
default?: undefined;
|
|
@@ -714,6 +761,34 @@ export declare const barComponentProps: {
|
|
|
714
761
|
layer: '2';
|
|
715
762
|
};
|
|
716
763
|
};
|
|
764
|
+
xAxisInverse: {
|
|
765
|
+
type?: undefined;
|
|
766
|
+
default?: undefined;
|
|
767
|
+
} | {
|
|
768
|
+
type: any;
|
|
769
|
+
default: string | number | boolean | string[] | import('../../utils/props').Events | Data | KeyTypeDataFieldNames | ValueTypeDataFieldNames | {
|
|
770
|
+
[key: string]: any;
|
|
771
|
+
} | import('../../utils/props').RequestParams | {
|
|
772
|
+
[key: string]: any;
|
|
773
|
+
chartType: 'bar';
|
|
774
|
+
plugin: '1';
|
|
775
|
+
layer: '2';
|
|
776
|
+
};
|
|
777
|
+
};
|
|
778
|
+
yAxisInverse: {
|
|
779
|
+
type?: undefined;
|
|
780
|
+
default?: undefined;
|
|
781
|
+
} | {
|
|
782
|
+
type: any;
|
|
783
|
+
default: string | number | boolean | string[] | import('../../utils/props').Events | Data | KeyTypeDataFieldNames | ValueTypeDataFieldNames | {
|
|
784
|
+
[key: string]: any;
|
|
785
|
+
} | import('../../utils/props').RequestParams | {
|
|
786
|
+
[key: string]: any;
|
|
787
|
+
chartType: 'bar';
|
|
788
|
+
plugin: '1';
|
|
789
|
+
layer: '2';
|
|
790
|
+
};
|
|
791
|
+
};
|
|
717
792
|
isStack: {
|
|
718
793
|
type?: undefined;
|
|
719
794
|
default?: undefined;
|
package/types/map/map/index.d.ts
CHANGED