@ecan-bi/datav 1.0.30 → 1.0.33

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.
@@ -279,6 +279,51 @@ declare const _default: import("vue").DefineComponent<{
279
279
  [key: string]: any;
280
280
  } | import("src/_utils/props").RequestParams;
281
281
  };
282
+ gridContainLabel: {
283
+ type?: undefined;
284
+ default?: undefined;
285
+ } | {
286
+ type: any;
287
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
288
+ [key: string]: any;
289
+ } | import("src/_utils/props").RequestParams;
290
+ };
291
+ gridTop: {
292
+ type?: undefined;
293
+ default?: undefined;
294
+ } | {
295
+ type: any;
296
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
297
+ [key: string]: any;
298
+ } | import("src/_utils/props").RequestParams;
299
+ };
300
+ gridBottom: {
301
+ type?: undefined;
302
+ default?: undefined;
303
+ } | {
304
+ type: any;
305
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
306
+ [key: string]: any;
307
+ } | import("src/_utils/props").RequestParams;
308
+ };
309
+ gridLeft: {
310
+ type?: undefined;
311
+ default?: undefined;
312
+ } | {
313
+ type: any;
314
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
315
+ [key: string]: any;
316
+ } | import("src/_utils/props").RequestParams;
317
+ };
318
+ gridRight: {
319
+ type?: undefined;
320
+ default?: undefined;
321
+ } | {
322
+ type: any;
323
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
324
+ [key: string]: any;
325
+ } | import("src/_utils/props").RequestParams;
326
+ };
282
327
  id: {
283
328
  type?: undefined;
284
329
  default?: undefined;
@@ -488,6 +533,23 @@ declare const _default: import("vue").DefineComponent<{
488
533
  };
489
534
  left: string;
490
535
  };
536
+ grid: {
537
+ top: string | number | boolean | {
538
+ [key: string]: any;
539
+ };
540
+ bottom: string | number | boolean | {
541
+ [key: string]: any;
542
+ };
543
+ left: string | number | boolean | {
544
+ [key: string]: any;
545
+ };
546
+ right: string | number | boolean | {
547
+ [key: string]: any;
548
+ };
549
+ containLabel: string | number | boolean | {
550
+ [key: string]: any;
551
+ };
552
+ };
491
553
  tooltip: {
492
554
  show: string | number | boolean | {
493
555
  [key: string]: any;
@@ -608,6 +670,11 @@ declare const _default: import("vue").DefineComponent<{
608
670
  roseType?: unknown;
609
671
  valueTypeDataFieldNames?: unknown;
610
672
  dataFieldConfigType?: unknown;
673
+ gridContainLabel?: unknown;
674
+ gridTop?: unknown;
675
+ gridBottom?: unknown;
676
+ gridLeft?: unknown;
677
+ gridRight?: unknown;
611
678
  id?: unknown;
612
679
  name?: unknown;
613
680
  keyName?: unknown;
@@ -727,6 +794,21 @@ declare const _default: import("vue").DefineComponent<{
727
794
  dataFieldConfigType?: string | number | boolean | {
728
795
  [key: string]: any;
729
796
  };
797
+ gridContainLabel?: string | number | boolean | {
798
+ [key: string]: any;
799
+ };
800
+ gridTop?: string | number | boolean | {
801
+ [key: string]: any;
802
+ };
803
+ gridBottom?: string | number | boolean | {
804
+ [key: string]: any;
805
+ };
806
+ gridLeft?: string | number | boolean | {
807
+ [key: string]: any;
808
+ };
809
+ gridRight?: string | number | boolean | {
810
+ [key: string]: any;
811
+ };
730
812
  id?: string | number | boolean | {
731
813
  [key: string]: any;
732
814
  };
@@ -31,6 +31,11 @@ export interface PieProps extends Props {
31
31
  roseType: '' | 'radius' | 'area';
32
32
  valueTypeDataFieldNames: ValueTypeDataFieldNames;
33
33
  dataFieldConfigType: 'key' | 'value';
34
+ gridContainLabel: boolean;
35
+ gridTop: string;
36
+ gridBottom: string;
37
+ gridLeft: string;
38
+ gridRight: string;
34
39
  }
35
40
  export declare const pieProps: PieProps;
36
41
  export declare const pieComponentProps: {
@@ -313,6 +318,51 @@ export declare const pieComponentProps: {
313
318
  [key: string]: any;
314
319
  } | import("../../_utils/props").RequestParams;
315
320
  };
321
+ gridContainLabel: {
322
+ type?: undefined;
323
+ default?: undefined;
324
+ } | {
325
+ type: any;
326
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | import("../../_utils/props").Events | {
327
+ [key: string]: any;
328
+ } | import("../../_utils/props").RequestParams;
329
+ };
330
+ gridTop: {
331
+ type?: undefined;
332
+ default?: undefined;
333
+ } | {
334
+ type: any;
335
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | import("../../_utils/props").Events | {
336
+ [key: string]: any;
337
+ } | import("../../_utils/props").RequestParams;
338
+ };
339
+ gridBottom: {
340
+ type?: undefined;
341
+ default?: undefined;
342
+ } | {
343
+ type: any;
344
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | import("../../_utils/props").Events | {
345
+ [key: string]: any;
346
+ } | import("../../_utils/props").RequestParams;
347
+ };
348
+ gridLeft: {
349
+ type?: undefined;
350
+ default?: undefined;
351
+ } | {
352
+ type: any;
353
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | import("../../_utils/props").Events | {
354
+ [key: string]: any;
355
+ } | import("../../_utils/props").RequestParams;
356
+ };
357
+ gridRight: {
358
+ type?: undefined;
359
+ default?: undefined;
360
+ } | {
361
+ type: any;
362
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | import("../../_utils/props").Events | {
363
+ [key: string]: any;
364
+ } | import("../../_utils/props").RequestParams;
365
+ };
316
366
  id: {
317
367
  type?: undefined;
318
368
  default?: undefined;