@ecan-bi/datav 1.2.19 → 1.2.20

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.
@@ -111,6 +111,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
111
111
  type?: import("vue").PropType<boolean>;
112
112
  default?: boolean;
113
113
  };
114
+ xAxisSplitAreaShow: {
115
+ type?: import("vue").PropType<boolean>;
116
+ default?: boolean;
117
+ };
118
+ xAxisSplitLineInterval: {
119
+ type?: import("vue").PropType<number>;
120
+ default?: number;
121
+ };
114
122
  xAxisSplitLineStyleColor: {
115
123
  type?: import("vue").PropType<string>;
116
124
  default?: string;
@@ -143,6 +151,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
143
151
  type?: import("vue").PropType<boolean>;
144
152
  default?: boolean;
145
153
  };
154
+ yAxisSplitAreaShow: {
155
+ type?: import("vue").PropType<boolean>;
156
+ default?: boolean;
157
+ };
146
158
  yAxisSplitLineStyleColor: {
147
159
  type?: import("vue").PropType<string>;
148
160
  default?: string;
@@ -388,6 +400,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
388
400
  lineStyle: {
389
401
  color: string;
390
402
  };
403
+ interval: number;
404
+ };
405
+ splitArea: {
406
+ show: boolean;
391
407
  };
392
408
  axisLabel: {
393
409
  color: string;
@@ -415,6 +431,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
415
431
  color: string;
416
432
  };
417
433
  };
434
+ splitArea: {
435
+ show: boolean;
436
+ };
418
437
  axisLabel: {
419
438
  fontSize: number;
420
439
  color: string;
@@ -562,6 +581,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
562
581
  type?: import("vue").PropType<boolean>;
563
582
  default?: boolean;
564
583
  };
584
+ xAxisSplitAreaShow: {
585
+ type?: import("vue").PropType<boolean>;
586
+ default?: boolean;
587
+ };
588
+ xAxisSplitLineInterval: {
589
+ type?: import("vue").PropType<number>;
590
+ default?: number;
591
+ };
565
592
  xAxisSplitLineStyleColor: {
566
593
  type?: import("vue").PropType<string>;
567
594
  default?: string;
@@ -594,6 +621,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
594
621
  type?: import("vue").PropType<boolean>;
595
622
  default?: boolean;
596
623
  };
624
+ yAxisSplitAreaShow: {
625
+ type?: import("vue").PropType<boolean>;
626
+ default?: boolean;
627
+ };
597
628
  yAxisSplitLineStyleColor: {
598
629
  type?: import("vue").PropType<string>;
599
630
  default?: string;
@@ -111,6 +111,14 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
111
111
  type?: import("vue").PropType<boolean>;
112
112
  default?: boolean;
113
113
  };
114
+ xAxisSplitAreaShow: {
115
+ type?: import("vue").PropType<boolean>;
116
+ default?: boolean;
117
+ };
118
+ xAxisSplitLineInterval: {
119
+ type?: import("vue").PropType<number>;
120
+ default?: number;
121
+ };
114
122
  xAxisSplitLineStyleColor: {
115
123
  type?: import("vue").PropType<string>;
116
124
  default?: string;
@@ -143,6 +151,10 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
143
151
  type?: import("vue").PropType<boolean>;
144
152
  default?: boolean;
145
153
  };
154
+ yAxisSplitAreaShow: {
155
+ type?: import("vue").PropType<boolean>;
156
+ default?: boolean;
157
+ };
146
158
  yAxisSplitLineStyleColor: {
147
159
  type?: import("vue").PropType<string>;
148
160
  default?: string;
@@ -388,6 +400,10 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
388
400
  lineStyle: {
389
401
  color: string;
390
402
  };
403
+ interval: number;
404
+ };
405
+ splitArea: {
406
+ show: boolean;
391
407
  };
392
408
  axisLabel: {
393
409
  color: string;
@@ -415,6 +431,9 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
415
431
  color: string;
416
432
  };
417
433
  };
434
+ splitArea: {
435
+ show: boolean;
436
+ };
418
437
  axisLabel: {
419
438
  fontSize: number;
420
439
  color: string;
@@ -562,6 +581,14 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
562
581
  type?: import("vue").PropType<boolean>;
563
582
  default?: boolean;
564
583
  };
584
+ xAxisSplitAreaShow: {
585
+ type?: import("vue").PropType<boolean>;
586
+ default?: boolean;
587
+ };
588
+ xAxisSplitLineInterval: {
589
+ type?: import("vue").PropType<number>;
590
+ default?: number;
591
+ };
565
592
  xAxisSplitLineStyleColor: {
566
593
  type?: import("vue").PropType<string>;
567
594
  default?: string;
@@ -594,6 +621,10 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
594
621
  type?: import("vue").PropType<boolean>;
595
622
  default?: boolean;
596
623
  };
624
+ yAxisSplitAreaShow: {
625
+ type?: import("vue").PropType<boolean>;
626
+ default?: boolean;
627
+ };
597
628
  yAxisSplitLineStyleColor: {
598
629
  type?: import("vue").PropType<string>;
599
630
  default?: string;
@@ -14,6 +14,8 @@ export interface LineProps extends Props {
14
14
  smooth: boolean;
15
15
  xAxisLabelInterval: number;
16
16
  xAxisSplitLineShow: boolean;
17
+ xAxisSplitAreaShow: boolean;
18
+ xAxisSplitLineInterval: number;
17
19
  xAxisLabelColor: string;
18
20
  xAxisLineStyleColor: string;
19
21
  xAxisSplitLineStyleColor: string;
@@ -27,6 +29,7 @@ export interface LineProps extends Props {
27
29
  yAxisMinInterval: number;
28
30
  yAxisInverse: boolean;
29
31
  yAxisSplitLineShow: boolean;
32
+ yAxisSplitAreaShow: boolean;
30
33
  yAxisSplitLineStyleColor: string;
31
34
  yAxisLabelColor: string;
32
35
  yAxisLineStyleColor: string;
@@ -90,6 +93,8 @@ export declare const lineProps: {
90
93
  xAxisLabelOverflow: string;
91
94
  xAxisLabelInterval: number;
92
95
  xAxisSplitLineShow: boolean;
96
+ xAxisSplitAreaShow: boolean;
97
+ xAxisSplitLineInterval: number;
93
98
  xAxisSplitLineStyleColor: string;
94
99
  xAxisLabelColor: string;
95
100
  xAxisLineStyleColor: string;
@@ -98,6 +103,7 @@ export declare const lineProps: {
98
103
  xAxisMinInterval: number;
99
104
  yAxisMinInterval: number;
100
105
  yAxisSplitLineShow: boolean;
106
+ yAxisSplitAreaShow: boolean;
101
107
  yAxisSplitLineStyleColor: string;
102
108
  yAxisLabelColor: string;
103
109
  yAxisLineStyleColor: string;
@@ -263,6 +269,14 @@ export declare const lineComponentProps: {
263
269
  type?: import("vue").PropType<boolean>;
264
270
  default?: boolean;
265
271
  };
272
+ xAxisSplitAreaShow: {
273
+ type?: import("vue").PropType<boolean>;
274
+ default?: boolean;
275
+ };
276
+ xAxisSplitLineInterval: {
277
+ type?: import("vue").PropType<number>;
278
+ default?: number;
279
+ };
266
280
  xAxisSplitLineStyleColor: {
267
281
  type?: import("vue").PropType<string>;
268
282
  default?: string;
@@ -295,6 +309,10 @@ export declare const lineComponentProps: {
295
309
  type?: import("vue").PropType<boolean>;
296
310
  default?: boolean;
297
311
  };
312
+ yAxisSplitAreaShow: {
313
+ type?: import("vue").PropType<boolean>;
314
+ default?: boolean;
315
+ };
298
316
  yAxisSplitLineStyleColor: {
299
317
  type?: import("vue").PropType<string>;
300
318
  default?: string;
@@ -67,6 +67,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
67
67
  type?: import("vue").PropType<boolean>;
68
68
  default?: boolean;
69
69
  };
70
+ xAxisSplitAreaShow: {
71
+ type?: import("vue").PropType<boolean>;
72
+ default?: boolean;
73
+ };
74
+ xAxisSplitLineInterval: {
75
+ type?: import("vue").PropType<number>;
76
+ default?: number;
77
+ };
70
78
  xAxisLabelColor: {
71
79
  type?: import("vue").PropType<string>;
72
80
  default?: string;
@@ -87,6 +95,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
87
95
  type?: import("vue").PropType<boolean>;
88
96
  default?: boolean;
89
97
  };
98
+ yAxisSplitAreaShow: {
99
+ type?: import("vue").PropType<boolean>;
100
+ default?: boolean;
101
+ };
90
102
  xAxisSplitLineStyleColor: {
91
103
  type?: import("vue").PropType<string>;
92
104
  default?: string;
@@ -337,6 +349,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
337
349
  lineStyle: {
338
350
  color: string;
339
351
  };
352
+ interval: number;
353
+ };
354
+ splitArea: {
355
+ show: boolean;
340
356
  };
341
357
  axisLabel: {
342
358
  fontSize: number;
@@ -363,6 +379,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
363
379
  color: string;
364
380
  };
365
381
  };
382
+ splitArea: {
383
+ show: boolean;
384
+ };
366
385
  axisLabel: {
367
386
  fontSize: number;
368
387
  color: string;
@@ -477,6 +496,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
477
496
  type?: import("vue").PropType<boolean>;
478
497
  default?: boolean;
479
498
  };
499
+ xAxisSplitAreaShow: {
500
+ type?: import("vue").PropType<boolean>;
501
+ default?: boolean;
502
+ };
503
+ xAxisSplitLineInterval: {
504
+ type?: import("vue").PropType<number>;
505
+ default?: number;
506
+ };
480
507
  xAxisLabelColor: {
481
508
  type?: import("vue").PropType<string>;
482
509
  default?: string;
@@ -497,6 +524,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
497
524
  type?: import("vue").PropType<boolean>;
498
525
  default?: boolean;
499
526
  };
527
+ yAxisSplitAreaShow: {
528
+ type?: import("vue").PropType<boolean>;
529
+ default?: boolean;
530
+ };
500
531
  xAxisSplitLineStyleColor: {
501
532
  type?: import("vue").PropType<string>;
502
533
  default?: string;
@@ -67,6 +67,14 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
67
67
  type?: import("vue").PropType<boolean>;
68
68
  default?: boolean;
69
69
  };
70
+ xAxisSplitAreaShow: {
71
+ type?: import("vue").PropType<boolean>;
72
+ default?: boolean;
73
+ };
74
+ xAxisSplitLineInterval: {
75
+ type?: import("vue").PropType<number>;
76
+ default?: number;
77
+ };
70
78
  xAxisLabelColor: {
71
79
  type?: import("vue").PropType<string>;
72
80
  default?: string;
@@ -87,6 +95,10 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
87
95
  type?: import("vue").PropType<boolean>;
88
96
  default?: boolean;
89
97
  };
98
+ yAxisSplitAreaShow: {
99
+ type?: import("vue").PropType<boolean>;
100
+ default?: boolean;
101
+ };
90
102
  xAxisSplitLineStyleColor: {
91
103
  type?: import("vue").PropType<string>;
92
104
  default?: string;
@@ -337,6 +349,10 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
337
349
  lineStyle: {
338
350
  color: string;
339
351
  };
352
+ interval: number;
353
+ };
354
+ splitArea: {
355
+ show: boolean;
340
356
  };
341
357
  axisLabel: {
342
358
  fontSize: number;
@@ -363,6 +379,9 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
363
379
  color: string;
364
380
  };
365
381
  };
382
+ splitArea: {
383
+ show: boolean;
384
+ };
366
385
  axisLabel: {
367
386
  fontSize: number;
368
387
  color: string;
@@ -477,6 +496,14 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
477
496
  type?: import("vue").PropType<boolean>;
478
497
  default?: boolean;
479
498
  };
499
+ xAxisSplitAreaShow: {
500
+ type?: import("vue").PropType<boolean>;
501
+ default?: boolean;
502
+ };
503
+ xAxisSplitLineInterval: {
504
+ type?: import("vue").PropType<number>;
505
+ default?: number;
506
+ };
480
507
  xAxisLabelColor: {
481
508
  type?: import("vue").PropType<string>;
482
509
  default?: string;
@@ -497,6 +524,10 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
497
524
  type?: import("vue").PropType<boolean>;
498
525
  default?: boolean;
499
526
  };
527
+ yAxisSplitAreaShow: {
528
+ type?: import("vue").PropType<boolean>;
529
+ default?: boolean;
530
+ };
500
531
  xAxisSplitLineStyleColor: {
501
532
  type?: import("vue").PropType<string>;
502
533
  default?: string;
@@ -17,11 +17,14 @@ export interface ScatterProps extends Props {
17
17
  xAxisLabelOverflow: 'none' | 'truncate' | 'break' | 'breakAll';
18
18
  xAxisLabelRotate: number;
19
19
  xAxisSplitLineShow: boolean;
20
+ xAxisSplitAreaShow: boolean;
21
+ xAxisSplitLineInterval: number;
20
22
  xAxisLabelColor: string;
21
23
  xAxisLineStyleColor: string;
22
24
  xAxisTickShow: boolean;
23
25
  xAxisLabelFormatter: string;
24
26
  yAxisSplitLineShow: boolean;
27
+ yAxisSplitAreaShow: boolean;
25
28
  xAxisSplitLineStyleColor: string;
26
29
  yAxisSplitLineStyleColor: string;
27
30
  yAxisLabelColor: string;
@@ -123,6 +126,14 @@ export declare const scatterComponentProps: {
123
126
  type?: import("vue").PropType<boolean>;
124
127
  default?: boolean;
125
128
  };
129
+ xAxisSplitAreaShow: {
130
+ type?: import("vue").PropType<boolean>;
131
+ default?: boolean;
132
+ };
133
+ xAxisSplitLineInterval: {
134
+ type?: import("vue").PropType<number>;
135
+ default?: number;
136
+ };
126
137
  xAxisLabelColor: {
127
138
  type?: import("vue").PropType<string>;
128
139
  default?: string;
@@ -143,6 +154,10 @@ export declare const scatterComponentProps: {
143
154
  type?: import("vue").PropType<boolean>;
144
155
  default?: boolean;
145
156
  };
157
+ yAxisSplitAreaShow: {
158
+ type?: import("vue").PropType<boolean>;
159
+ default?: boolean;
160
+ };
146
161
  xAxisSplitLineStyleColor: {
147
162
  type?: import("vue").PropType<string>;
148
163
  default?: string;
@@ -71,6 +71,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
71
71
  [key: string]: any;
72
72
  };
73
73
  };
74
+ percentageSide: {
75
+ type?: import("vue").PropType<string>;
76
+ default?: string;
77
+ };
74
78
  id: {
75
79
  type?: import("vue").PropType<string>;
76
80
  default?: string;
@@ -168,6 +172,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
168
172
  myText: import("vue").ComputedRef<string>;
169
173
  loading: import("vue").Ref<boolean>;
170
174
  click: () => void;
175
+ textIndent: import("vue").ComputedRef<string>;
171
176
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
172
177
  text: {
173
178
  type?: import("vue").PropType<string>;
@@ -241,6 +246,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
241
246
  [key: string]: any;
242
247
  };
243
248
  };
249
+ percentageSide: {
250
+ type?: import("vue").PropType<string>;
251
+ default?: string;
252
+ };
244
253
  id: {
245
254
  type?: import("vue").PropType<string>;
246
255
  default?: string;
@@ -71,6 +71,10 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
71
71
  [key: string]: any;
72
72
  };
73
73
  };
74
+ percentageSide: {
75
+ type?: import("vue").PropType<string>;
76
+ default?: string;
77
+ };
74
78
  id: {
75
79
  type?: import("vue").PropType<string>;
76
80
  default?: string;
@@ -168,6 +172,7 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
168
172
  myText: import("vue").ComputedRef<string>;
169
173
  loading: import("vue").Ref<boolean>;
170
174
  click: () => void;
175
+ textIndent: import("vue").ComputedRef<string>;
171
176
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
172
177
  text: {
173
178
  type?: import("vue").PropType<string>;
@@ -241,6 +246,10 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
241
246
  [key: string]: any;
242
247
  };
243
248
  };
249
+ percentageSide: {
250
+ type?: import("vue").PropType<string>;
251
+ default?: string;
252
+ };
244
253
  id: {
245
254
  type?: import("vue").PropType<string>;
246
255
  default?: string;
@@ -19,6 +19,7 @@ export interface TextProps extends Props {
19
19
  data: {
20
20
  [key: string]: any;
21
21
  };
22
+ percentageSide: string;
22
23
  }
23
24
  export declare const textProps: TextProps;
24
25
  export declare const textComponentProps: {
@@ -94,6 +95,10 @@ export declare const textComponentProps: {
94
95
  [key: string]: any;
95
96
  };
96
97
  };
98
+ percentageSide: {
99
+ type?: import("vue").PropType<string>;
100
+ default?: string;
101
+ };
97
102
  id: {
98
103
  type?: import("vue").PropType<string>;
99
104
  default?: string;