@ecan-bi/datav 1.3.11 → 1.3.13

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.
@@ -261,6 +261,14 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
261
261
  type?: import("vue").PropType<"min" | "max" | "average" | "median">;
262
262
  default?: "min" | "max" | "average" | "median";
263
263
  };
264
+ yAxisName: {
265
+ type?: import("vue").PropType<string>;
266
+ default?: string;
267
+ };
268
+ xAxisName: {
269
+ type?: import("vue").PropType<string>;
270
+ default?: string;
271
+ };
264
272
  id: {
265
273
  type?: import("vue").PropType<string>;
266
274
  default?: string;
@@ -428,6 +436,12 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
428
436
  axisTick: {
429
437
  show: boolean;
430
438
  };
439
+ name: string;
440
+ nameTextStyle: {
441
+ fontSize: string;
442
+ color: string;
443
+ align: string;
444
+ };
431
445
  };
432
446
  yAxis: {
433
447
  splitLine: {
@@ -452,6 +466,12 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
452
466
  color: string;
453
467
  };
454
468
  };
469
+ name: string;
470
+ nameTextStyle: {
471
+ fontSize: string;
472
+ color: string;
473
+ align: string;
474
+ };
455
475
  };
456
476
  tooltip: {
457
477
  show: boolean;
@@ -763,6 +783,14 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
763
783
  type?: import("vue").PropType<"min" | "max" | "average" | "median">;
764
784
  default?: "min" | "max" | "average" | "median";
765
785
  };
786
+ yAxisName: {
787
+ type?: import("vue").PropType<string>;
788
+ default?: string;
789
+ };
790
+ xAxisName: {
791
+ type?: import("vue").PropType<string>;
792
+ default?: string;
793
+ };
766
794
  id: {
767
795
  type?: import("vue").PropType<string>;
768
796
  default?: string;
@@ -68,6 +68,8 @@ export interface ScatterProps extends Props {
68
68
  tooltipPosition: string;
69
69
  isShowMarkLine: boolean;
70
70
  markLineType: 'min' | 'max' | 'average' | 'median';
71
+ yAxisName: string;
72
+ xAxisName: string;
71
73
  }
72
74
  export declare const scatterProps: ScatterProps;
73
75
  export declare const scatterComponentProps: {
@@ -333,6 +335,14 @@ export declare const scatterComponentProps: {
333
335
  type?: import("vue").PropType<"min" | "max" | "average" | "median">;
334
336
  default?: "min" | "max" | "average" | "median";
335
337
  };
338
+ yAxisName: {
339
+ type?: import("vue").PropType<string>;
340
+ default?: string;
341
+ };
342
+ xAxisName: {
343
+ type?: import("vue").PropType<string>;
344
+ default?: string;
345
+ };
336
346
  id: {
337
347
  type?: import("vue").PropType<string>;
338
348
  default?: string;