@ecan-bi/datav 1.1.35 → 1.1.36

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.
@@ -132,6 +132,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
132
132
  type: any;
133
133
  default: any;
134
134
  };
135
+ minAngle: {
136
+ type?: undefined;
137
+ default?: undefined;
138
+ } | {
139
+ type: any;
140
+ default: any;
141
+ };
135
142
  labelShow: {
136
143
  type?: undefined;
137
144
  default?: undefined;
@@ -541,6 +548,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
541
548
  center: any[];
542
549
  roseType: any;
543
550
  avoidLabelOverlap: boolean;
551
+ minAngle: any;
544
552
  label: {
545
553
  show: any;
546
554
  color: any;
@@ -702,6 +710,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
702
710
  type: any;
703
711
  default: any;
704
712
  };
713
+ minAngle: {
714
+ type?: undefined;
715
+ default?: undefined;
716
+ } | {
717
+ type: any;
718
+ default: any;
719
+ };
705
720
  labelShow: {
706
721
  type?: undefined;
707
722
  default?: undefined;
@@ -132,6 +132,13 @@ export declare const EcanPie: import("../../utils/withInstall").SFCWithInstall<i
132
132
  type: any;
133
133
  default: any;
134
134
  };
135
+ minAngle: {
136
+ type?: undefined;
137
+ default?: undefined;
138
+ } | {
139
+ type: any;
140
+ default: any;
141
+ };
135
142
  labelShow: {
136
143
  type?: undefined;
137
144
  default?: undefined;
@@ -541,6 +548,7 @@ export declare const EcanPie: import("../../utils/withInstall").SFCWithInstall<i
541
548
  center: any[];
542
549
  roseType: any;
543
550
  avoidLabelOverlap: boolean;
551
+ minAngle: any;
544
552
  label: {
545
553
  show: any;
546
554
  color: any;
@@ -702,6 +710,13 @@ export declare const EcanPie: import("../../utils/withInstall").SFCWithInstall<i
702
710
  type: any;
703
711
  default: any;
704
712
  };
713
+ minAngle: {
714
+ type?: undefined;
715
+ default?: undefined;
716
+ } | {
717
+ type: any;
718
+ default: any;
719
+ };
705
720
  labelShow: {
706
721
  type?: undefined;
707
722
  default?: undefined;
@@ -19,6 +19,7 @@ export interface PieProps extends Props {
19
19
  outerRadius: string;
20
20
  centerLeft: string;
21
21
  centerTop: string;
22
+ minAngle: number;
22
23
  labelShow: boolean;
23
24
  labelFormatter: string;
24
25
  labelFontSize: number;
@@ -182,6 +183,13 @@ export declare const pieComponentProps: {
182
183
  type: any;
183
184
  default: any;
184
185
  };
186
+ minAngle: {
187
+ type?: undefined;
188
+ default?: undefined;
189
+ } | {
190
+ type: any;
191
+ default: any;
192
+ };
185
193
  labelShow: {
186
194
  type?: undefined;
187
195
  default?: undefined;
@@ -10,6 +10,16 @@ export declare const handleFormatter: (formatter: string) => string;
10
10
  * @param decimalPlaces 格式化位数
11
11
  */
12
12
  export declare const formatMoney: (value: string | number, decimalPlaces?: number) => string | number;
13
+ /**
14
+ * 格式化千分位
15
+ * @param value 数值
16
+ */
17
+ export declare const formatThousands: (value: string | number) => string | number;
18
+ /**
19
+ * 格式化百分比
20
+ * @param value 数值
21
+ * @param decimalPlaces 格式化位数
22
+ */
13
23
  export declare const formatPercentage: (value: string | number, decimalPlaces?: number) => string | number;
14
24
  /**
15
25
  * 字符串1 中是否包含 字符串2 (会全部转成小写)