@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.
@@ -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: number;
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: number;
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;