@ecan-bi/datav 1.0.32 → 1.0.35
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/_utils/hooks/index.d.ts +1 -0
- package/dist/_utils/hooks/useAxisLabelFormatter.d.ts +2 -0
- package/dist/_utils/util.d.ts +1 -0
- package/dist/container/modal/Modal.vue.d.ts +39 -0
- package/dist/graph/bar/Bar.vue.d.ts +33 -8
- package/dist/graph/bar/props.d.ts +21 -5
- package/dist/graph/combo-graph/ComboGraph.vue.d.ts +103 -1
- package/dist/graph/combo-graph/props.d.ts +97 -343
- package/dist/graph/line/Line.vue.d.ts +178 -324
- package/dist/graph/line/props.d.ts +102 -138
- package/dist/graph/pie/Pie.vue.d.ts +188 -382
- package/dist/graph/pie/props.d.ts +101 -159
- package/dist/graph/scatter/Scatter.vue.d.ts +114 -0
- package/dist/graph/scatter/props.d.ts +100 -264
- package/dist/index.esm.js +2 -2
- package/dist/index.umd.js +2 -2
- package/package.json +1 -1
|
@@ -252,6 +252,78 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
252
252
|
[key: string]: any;
|
|
253
253
|
} | import("../../_utils/props").RequestParams;
|
|
254
254
|
};
|
|
255
|
+
yAxisLabelFormatter: {
|
|
256
|
+
type?: undefined;
|
|
257
|
+
default?: undefined;
|
|
258
|
+
} | {
|
|
259
|
+
type: any;
|
|
260
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
261
|
+
name: string;
|
|
262
|
+
value: string;
|
|
263
|
+
} | Events | {
|
|
264
|
+
[key: string]: any;
|
|
265
|
+
} | import("../../_utils/props").RequestParams;
|
|
266
|
+
};
|
|
267
|
+
gridContainLabel: {
|
|
268
|
+
type?: undefined;
|
|
269
|
+
default?: undefined;
|
|
270
|
+
} | {
|
|
271
|
+
type: any;
|
|
272
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
273
|
+
name: string;
|
|
274
|
+
value: string;
|
|
275
|
+
} | Events | {
|
|
276
|
+
[key: string]: any;
|
|
277
|
+
} | import("../../_utils/props").RequestParams;
|
|
278
|
+
};
|
|
279
|
+
gridTop: {
|
|
280
|
+
type?: undefined;
|
|
281
|
+
default?: undefined;
|
|
282
|
+
} | {
|
|
283
|
+
type: any;
|
|
284
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
285
|
+
name: string;
|
|
286
|
+
value: string;
|
|
287
|
+
} | Events | {
|
|
288
|
+
[key: string]: any;
|
|
289
|
+
} | import("../../_utils/props").RequestParams;
|
|
290
|
+
};
|
|
291
|
+
gridBottom: {
|
|
292
|
+
type?: undefined;
|
|
293
|
+
default?: undefined;
|
|
294
|
+
} | {
|
|
295
|
+
type: any;
|
|
296
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
297
|
+
name: string;
|
|
298
|
+
value: string;
|
|
299
|
+
} | Events | {
|
|
300
|
+
[key: string]: any;
|
|
301
|
+
} | import("../../_utils/props").RequestParams;
|
|
302
|
+
};
|
|
303
|
+
gridLeft: {
|
|
304
|
+
type?: undefined;
|
|
305
|
+
default?: undefined;
|
|
306
|
+
} | {
|
|
307
|
+
type: any;
|
|
308
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
309
|
+
name: string;
|
|
310
|
+
value: string;
|
|
311
|
+
} | Events | {
|
|
312
|
+
[key: string]: any;
|
|
313
|
+
} | import("../../_utils/props").RequestParams;
|
|
314
|
+
};
|
|
315
|
+
gridRight: {
|
|
316
|
+
type?: undefined;
|
|
317
|
+
default?: undefined;
|
|
318
|
+
} | {
|
|
319
|
+
type: any;
|
|
320
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
321
|
+
name: string;
|
|
322
|
+
value: string;
|
|
323
|
+
} | Events | {
|
|
324
|
+
[key: string]: any;
|
|
325
|
+
} | import("../../_utils/props").RequestParams;
|
|
326
|
+
};
|
|
255
327
|
dataFieldNames: {
|
|
256
328
|
type?: undefined;
|
|
257
329
|
default?: undefined;
|
|
@@ -539,6 +611,23 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
539
611
|
};
|
|
540
612
|
left: string;
|
|
541
613
|
};
|
|
614
|
+
grid: {
|
|
615
|
+
top: string | number | boolean | {
|
|
616
|
+
[key: string]: any;
|
|
617
|
+
};
|
|
618
|
+
bottom: string | number | boolean | {
|
|
619
|
+
[key: string]: any;
|
|
620
|
+
};
|
|
621
|
+
left: string | number | boolean | {
|
|
622
|
+
[key: string]: any;
|
|
623
|
+
};
|
|
624
|
+
right: string | number | boolean | {
|
|
625
|
+
[key: string]: any;
|
|
626
|
+
};
|
|
627
|
+
containLabel: string | number | boolean | {
|
|
628
|
+
[key: string]: any;
|
|
629
|
+
};
|
|
630
|
+
};
|
|
542
631
|
color: string | number | boolean | {
|
|
543
632
|
[key: string]: any;
|
|
544
633
|
};
|
|
@@ -586,6 +675,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
586
675
|
color: string | number | boolean | {
|
|
587
676
|
[key: string]: any;
|
|
588
677
|
};
|
|
678
|
+
formatter(value: string): string;
|
|
589
679
|
};
|
|
590
680
|
axisLine: {
|
|
591
681
|
lineStyle: {
|
|
@@ -656,6 +746,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
656
746
|
yAxisSplitLineStyleColor?: unknown;
|
|
657
747
|
yAxisLabelColor?: unknown;
|
|
658
748
|
yAxisLineStyleColor?: unknown;
|
|
749
|
+
yAxisLabelFormatter?: unknown;
|
|
750
|
+
gridContainLabel?: unknown;
|
|
751
|
+
gridTop?: unknown;
|
|
752
|
+
gridBottom?: unknown;
|
|
753
|
+
gridLeft?: unknown;
|
|
754
|
+
gridRight?: unknown;
|
|
659
755
|
dataFieldNames?: unknown;
|
|
660
756
|
id?: unknown;
|
|
661
757
|
name?: unknown;
|
|
@@ -746,6 +842,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
746
842
|
yAxisLineStyleColor?: string | number | boolean | {
|
|
747
843
|
[key: string]: any;
|
|
748
844
|
};
|
|
845
|
+
yAxisLabelFormatter?: string | number | boolean | {
|
|
846
|
+
[key: string]: any;
|
|
847
|
+
};
|
|
848
|
+
gridContainLabel?: string | number | boolean | {
|
|
849
|
+
[key: string]: any;
|
|
850
|
+
};
|
|
851
|
+
gridTop?: string | number | boolean | {
|
|
852
|
+
[key: string]: any;
|
|
853
|
+
};
|
|
854
|
+
gridBottom?: string | number | boolean | {
|
|
855
|
+
[key: string]: any;
|
|
856
|
+
};
|
|
857
|
+
gridLeft?: string | number | boolean | {
|
|
858
|
+
[key: string]: any;
|
|
859
|
+
};
|
|
860
|
+
gridRight?: string | number | boolean | {
|
|
861
|
+
[key: string]: any;
|
|
862
|
+
};
|
|
749
863
|
dataFieldNames?: string | number | boolean | {
|
|
750
864
|
[key: string]: any;
|
|
751
865
|
};
|