igniteui-angular-core 19.1.0 → 20.0.0-beta.1
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.
- package/bundles/igniteui-angular-core.umd.js +1402 -1246
- package/bundles/igniteui-angular-core.umd.min.js +1 -1
- package/esm2015/lib/AxisDescription.js +171 -139
- package/esm2015/lib/AxisDescriptionMetadata.js +4 -0
- package/esm2015/lib/CategoryAngleAxisDescription.js +21 -21
- package/esm2015/lib/CategoryAxisBaseDescription.js +23 -23
- package/esm2015/lib/CategoryChartDescription.js +130 -130
- package/esm2015/lib/CategoryDateTimeXAxisDescription.js +24 -24
- package/esm2015/lib/CategoryXAxisDescription.js +32 -32
- package/esm2015/lib/CategoryYAxisDescription.js +32 -32
- package/esm2015/lib/DataPieBaseChartDescription.js +107 -107
- package/esm2015/lib/DataPieChartDescription.js +35 -35
- package/esm2015/lib/FinancialChartDescription.js +176 -176
- package/esm2015/lib/NumericAngleAxisDescription.js +6 -6
- package/esm2015/lib/NumericAxisBaseDescription.js +83 -83
- package/esm2015/lib/NumericRadiusAxisDescription.js +6 -6
- package/esm2015/lib/OrdinalTimeXAxisDescription.js +15 -15
- package/esm2015/lib/ProportionalCategoryAngleAxisDescription.js +12 -12
- package/esm2015/lib/RadialBaseChartDescription.js +215 -183
- package/esm2015/lib/RadialBaseChartDescriptionMetadata.js +4 -0
- package/esm2015/lib/StraightNumericAxisBaseDescription.js +3 -3
- package/esm2015/lib/TimeAxisBaseDescription.js +24 -24
- package/esm2015/lib/TimeXAxisDescription.js +12 -12
- package/esm2015/lib/XYChartDescription.js +215 -183
- package/esm2015/lib/XYChartDescriptionMetadata.js +4 -0
- package/esm5/lib/AxisDescription.js +187 -139
- package/esm5/lib/AxisDescriptionMetadata.js +4 -0
- package/esm5/lib/CategoryAngleAxisDescription.js +21 -21
- package/esm5/lib/CategoryAxisBaseDescription.js +23 -23
- package/esm5/lib/CategoryChartDescription.js +130 -130
- package/esm5/lib/CategoryDateTimeXAxisDescription.js +24 -24
- package/esm5/lib/CategoryXAxisDescription.js +32 -32
- package/esm5/lib/CategoryYAxisDescription.js +32 -32
- package/esm5/lib/DataPieBaseChartDescription.js +107 -107
- package/esm5/lib/DataPieChartDescription.js +35 -35
- package/esm5/lib/FinancialChartDescription.js +176 -176
- package/esm5/lib/NumericAngleAxisDescription.js +6 -6
- package/esm5/lib/NumericAxisBaseDescription.js +83 -83
- package/esm5/lib/NumericRadiusAxisDescription.js +6 -6
- package/esm5/lib/OrdinalTimeXAxisDescription.js +15 -15
- package/esm5/lib/ProportionalCategoryAngleAxisDescription.js +12 -12
- package/esm5/lib/RadialBaseChartDescription.js +231 -183
- package/esm5/lib/RadialBaseChartDescriptionMetadata.js +4 -0
- package/esm5/lib/StraightNumericAxisBaseDescription.js +3 -3
- package/esm5/lib/TimeAxisBaseDescription.js +24 -24
- package/esm5/lib/TimeXAxisDescription.js +12 -12
- package/esm5/lib/XYChartDescription.js +231 -183
- package/esm5/lib/XYChartDescriptionMetadata.js +4 -0
- package/fesm2015/igniteui-angular-core.js +1354 -1246
- package/fesm5/igniteui-angular-core.js +1402 -1246
- package/lib/AxisDescription.d.ts +60 -48
- package/lib/CategoryAngleAxisDescription.d.ts +7 -7
- package/lib/CategoryAxisBaseDescription.d.ts +8 -8
- package/lib/CategoryChartDescription.d.ts +45 -45
- package/lib/CategoryDateTimeXAxisDescription.d.ts +8 -8
- package/lib/CategoryXAxisDescription.d.ts +11 -11
- package/lib/CategoryYAxisDescription.d.ts +11 -11
- package/lib/DataPieBaseChartDescription.d.ts +38 -38
- package/lib/DataPieChartDescription.d.ts +12 -12
- package/lib/FinancialChartDescription.d.ts +61 -61
- package/lib/NumericAngleAxisDescription.d.ts +2 -2
- package/lib/NumericAxisBaseDescription.d.ts +28 -28
- package/lib/NumericRadiusAxisDescription.d.ts +2 -2
- package/lib/OrdinalTimeXAxisDescription.d.ts +5 -5
- package/lib/ProportionalCategoryAngleAxisDescription.d.ts +4 -4
- package/lib/RadialBaseChartDescription.d.ts +77 -65
- package/lib/StraightNumericAxisBaseDescription.d.ts +1 -1
- package/lib/TimeAxisBaseDescription.d.ts +8 -8
- package/lib/TimeXAxisDescription.d.ts +4 -4
- package/lib/XYChartDescription.d.ts +77 -65
- package/package.json +4 -5
|
@@ -13,24 +13,24 @@ export let NumericAngleAxisDescription = /*@__PURE__*/ (() => {
|
|
|
13
13
|
class NumericAngleAxisDescription extends NumericAxisBaseDescription {
|
|
14
14
|
constructor() {
|
|
15
15
|
super();
|
|
16
|
-
this.
|
|
17
|
-
this.
|
|
16
|
+
this.ff = 0;
|
|
17
|
+
this.fh = null;
|
|
18
18
|
}
|
|
19
19
|
get_type() {
|
|
20
20
|
return "NumericAngleAxis";
|
|
21
21
|
}
|
|
22
22
|
get startAngleOffset() {
|
|
23
|
-
return this.
|
|
23
|
+
return this.ff;
|
|
24
24
|
}
|
|
25
25
|
set startAngleOffset(a) {
|
|
26
|
-
this.
|
|
26
|
+
this.ff = a;
|
|
27
27
|
this.g("StartAngleOffset");
|
|
28
28
|
}
|
|
29
29
|
get labelMode() {
|
|
30
|
-
return this.
|
|
30
|
+
return this.fh;
|
|
31
31
|
}
|
|
32
32
|
set labelMode(a) {
|
|
33
|
-
this.
|
|
33
|
+
this.fh = a;
|
|
34
34
|
this.g("LabelMode");
|
|
35
35
|
}
|
|
36
36
|
}
|
|
@@ -13,232 +13,232 @@ export let NumericAxisBaseDescription = /*@__PURE__*/ (() => {
|
|
|
13
13
|
class NumericAxisBaseDescription extends AxisDescription {
|
|
14
14
|
constructor() {
|
|
15
15
|
super();
|
|
16
|
-
this.
|
|
17
|
-
this.
|
|
18
|
-
this.d3 = 0;
|
|
19
|
-
this.d6 = 0;
|
|
20
|
-
this.d8 = 0;
|
|
21
|
-
this.d2 = 0;
|
|
22
|
-
this.d5 = 0;
|
|
23
|
-
this.d7 = 0;
|
|
24
|
-
this.d1 = 0;
|
|
25
|
-
this.en = 0;
|
|
26
|
-
this.ep = 0;
|
|
27
|
-
this.du = false;
|
|
28
|
-
this.ea = 0;
|
|
29
|
-
this.d4 = 0;
|
|
16
|
+
this.e6 = null;
|
|
17
|
+
this.eh = 0;
|
|
30
18
|
this.eb = 0;
|
|
31
|
-
this.
|
|
32
|
-
this.
|
|
33
|
-
this.
|
|
34
|
-
this.
|
|
35
|
-
this.
|
|
36
|
-
this.
|
|
37
|
-
this.
|
|
38
|
-
this.
|
|
39
|
-
this.
|
|
40
|
-
this.
|
|
41
|
-
this.
|
|
42
|
-
this.
|
|
43
|
-
this.
|
|
19
|
+
this.ee = 0;
|
|
20
|
+
this.eg = 0;
|
|
21
|
+
this.ea = 0;
|
|
22
|
+
this.ed = 0;
|
|
23
|
+
this.ef = 0;
|
|
24
|
+
this.d9 = 0;
|
|
25
|
+
this.ev = 0;
|
|
26
|
+
this.ex = 0;
|
|
27
|
+
this.d2 = false;
|
|
28
|
+
this.ei = 0;
|
|
29
|
+
this.ec = 0;
|
|
30
|
+
this.ej = 0;
|
|
31
|
+
this.d1 = false;
|
|
32
|
+
this.dy = false;
|
|
33
|
+
this.dz = false;
|
|
34
|
+
this.ew = 0;
|
|
35
|
+
this.e7 = null;
|
|
36
|
+
this.e1 = null;
|
|
37
|
+
this.dv = null;
|
|
38
|
+
this.d0 = false;
|
|
39
|
+
this.dx = false;
|
|
40
|
+
this.e4 = null;
|
|
41
|
+
this.e3 = null;
|
|
42
|
+
this.e2 = null;
|
|
43
|
+
this.e5 = null;
|
|
44
44
|
}
|
|
45
45
|
get_type() {
|
|
46
46
|
return "NumericAxisBase";
|
|
47
47
|
}
|
|
48
48
|
get autoRangeBufferMode() {
|
|
49
|
-
return this.
|
|
49
|
+
return this.e6;
|
|
50
50
|
}
|
|
51
51
|
set autoRangeBufferMode(a) {
|
|
52
|
-
this.
|
|
52
|
+
this.e6 = a;
|
|
53
53
|
this.g("AutoRangeBufferMode");
|
|
54
54
|
}
|
|
55
55
|
get minimumValue() {
|
|
56
|
-
return this.
|
|
56
|
+
return this.eh;
|
|
57
57
|
}
|
|
58
58
|
set minimumValue(a) {
|
|
59
|
-
this.
|
|
59
|
+
this.eh = a;
|
|
60
60
|
this.g("MinimumValue");
|
|
61
61
|
}
|
|
62
62
|
get actualMinimumValue() {
|
|
63
|
-
return this.
|
|
63
|
+
return this.eb;
|
|
64
64
|
}
|
|
65
65
|
set actualMinimumValue(a) {
|
|
66
|
-
this.
|
|
66
|
+
this.eb = a;
|
|
67
67
|
this.g("ActualMinimumValue");
|
|
68
68
|
}
|
|
69
69
|
get actualVisibleMinimumValue() {
|
|
70
|
-
return this.
|
|
70
|
+
return this.ee;
|
|
71
71
|
}
|
|
72
72
|
set actualVisibleMinimumValue(a) {
|
|
73
|
-
this.
|
|
73
|
+
this.ee = a;
|
|
74
74
|
this.g("ActualVisibleMinimumValue");
|
|
75
75
|
}
|
|
76
76
|
get maximumValue() {
|
|
77
|
-
return this.
|
|
77
|
+
return this.eg;
|
|
78
78
|
}
|
|
79
79
|
set maximumValue(a) {
|
|
80
|
-
this.
|
|
80
|
+
this.eg = a;
|
|
81
81
|
this.g("MaximumValue");
|
|
82
82
|
}
|
|
83
83
|
get actualMaximumValue() {
|
|
84
|
-
return this.
|
|
84
|
+
return this.ea;
|
|
85
85
|
}
|
|
86
86
|
set actualMaximumValue(a) {
|
|
87
|
-
this.
|
|
87
|
+
this.ea = a;
|
|
88
88
|
this.g("ActualMaximumValue");
|
|
89
89
|
}
|
|
90
90
|
get actualVisibleMaximumValue() {
|
|
91
|
-
return this.
|
|
91
|
+
return this.ed;
|
|
92
92
|
}
|
|
93
93
|
set actualVisibleMaximumValue(a) {
|
|
94
|
-
this.
|
|
94
|
+
this.ed = a;
|
|
95
95
|
this.g("ActualVisibleMaximumValue");
|
|
96
96
|
}
|
|
97
97
|
get interval() {
|
|
98
|
-
return this.
|
|
98
|
+
return this.ef;
|
|
99
99
|
}
|
|
100
100
|
set interval(a) {
|
|
101
|
-
this.
|
|
101
|
+
this.ef = a;
|
|
102
102
|
this.g("Interval");
|
|
103
103
|
}
|
|
104
104
|
get actualInterval() {
|
|
105
|
-
return this.
|
|
105
|
+
return this.d9;
|
|
106
106
|
}
|
|
107
107
|
set actualInterval(a) {
|
|
108
|
-
this.
|
|
108
|
+
this.d9 = a;
|
|
109
109
|
this.g("ActualInterval");
|
|
110
110
|
}
|
|
111
111
|
get actualMaxPrecision() {
|
|
112
|
-
return this.
|
|
112
|
+
return this.ev;
|
|
113
113
|
}
|
|
114
114
|
set actualMaxPrecision(a) {
|
|
115
|
-
this.
|
|
115
|
+
this.ev = a;
|
|
116
116
|
this.g("ActualMaxPrecision");
|
|
117
117
|
}
|
|
118
118
|
get maxPrecision() {
|
|
119
|
-
return this.
|
|
119
|
+
return this.ex;
|
|
120
120
|
}
|
|
121
121
|
set maxPrecision(a) {
|
|
122
|
-
this.
|
|
122
|
+
this.ex = a;
|
|
123
123
|
this.g("MaxPrecision");
|
|
124
124
|
}
|
|
125
125
|
get shouldApplyMaxPrecisionWhenZoomed() {
|
|
126
|
-
return this.
|
|
126
|
+
return this.d2;
|
|
127
127
|
}
|
|
128
128
|
set shouldApplyMaxPrecisionWhenZoomed(a) {
|
|
129
|
-
this.
|
|
129
|
+
this.d2 = a;
|
|
130
130
|
this.g("ShouldApplyMaxPrecisionWhenZoomed");
|
|
131
131
|
}
|
|
132
132
|
get minorInterval() {
|
|
133
|
-
return this.
|
|
133
|
+
return this.ei;
|
|
134
134
|
}
|
|
135
135
|
set minorInterval(a) {
|
|
136
|
-
this.
|
|
136
|
+
this.ei = a;
|
|
137
137
|
this.g("MinorInterval");
|
|
138
138
|
}
|
|
139
139
|
get actualMinorInterval() {
|
|
140
|
-
return this.
|
|
140
|
+
return this.ec;
|
|
141
141
|
}
|
|
142
142
|
set actualMinorInterval(a) {
|
|
143
|
-
this.
|
|
143
|
+
this.ec = a;
|
|
144
144
|
this.g("ActualMinorInterval");
|
|
145
145
|
}
|
|
146
146
|
get referenceValue() {
|
|
147
|
-
return this.
|
|
147
|
+
return this.ej;
|
|
148
148
|
}
|
|
149
149
|
set referenceValue(a) {
|
|
150
|
-
this.
|
|
150
|
+
this.ej = a;
|
|
151
151
|
this.g("ReferenceValue");
|
|
152
152
|
}
|
|
153
153
|
get isLogarithmic() {
|
|
154
|
-
return this.
|
|
154
|
+
return this.d1;
|
|
155
155
|
}
|
|
156
156
|
set isLogarithmic(a) {
|
|
157
|
-
this.
|
|
157
|
+
this.d1 = a;
|
|
158
158
|
this.g("IsLogarithmic");
|
|
159
159
|
}
|
|
160
160
|
get actualIsLogarithmic() {
|
|
161
|
-
return this.
|
|
161
|
+
return this.dy;
|
|
162
162
|
}
|
|
163
163
|
set actualIsLogarithmic(a) {
|
|
164
|
-
this.
|
|
164
|
+
this.dy = a;
|
|
165
165
|
this.g("ActualIsLogarithmic");
|
|
166
166
|
}
|
|
167
167
|
get favorLabellingScaleEnd() {
|
|
168
|
-
return this.
|
|
168
|
+
return this.dz;
|
|
169
169
|
}
|
|
170
170
|
set favorLabellingScaleEnd(a) {
|
|
171
|
-
this.
|
|
171
|
+
this.dz = a;
|
|
172
172
|
this.g("FavorLabellingScaleEnd");
|
|
173
173
|
}
|
|
174
174
|
get logarithmBase() {
|
|
175
|
-
return this.
|
|
175
|
+
return this.ew;
|
|
176
176
|
}
|
|
177
177
|
set logarithmBase(a) {
|
|
178
|
-
this.
|
|
178
|
+
this.ew = a;
|
|
179
179
|
this.g("LogarithmBase");
|
|
180
180
|
}
|
|
181
181
|
get formatAbbreviatedLabelRef() {
|
|
182
|
-
return this.
|
|
182
|
+
return this.e7;
|
|
183
183
|
}
|
|
184
184
|
set formatAbbreviatedLabelRef(a) {
|
|
185
|
-
this.
|
|
185
|
+
this.e7 = a;
|
|
186
186
|
this.g("FormatAbbreviatedLabelRef");
|
|
187
187
|
}
|
|
188
188
|
get abbreviatedLabelFormat() {
|
|
189
|
-
return this.
|
|
189
|
+
return this.e1;
|
|
190
190
|
}
|
|
191
191
|
set abbreviatedLabelFormat(a) {
|
|
192
|
-
this.
|
|
192
|
+
this.e1 = a;
|
|
193
193
|
this.g("AbbreviatedLabelFormat");
|
|
194
194
|
}
|
|
195
195
|
get abbreviatedLabelFormatSpecifiers() {
|
|
196
|
-
return this.
|
|
196
|
+
return this.dv;
|
|
197
197
|
}
|
|
198
198
|
set abbreviatedLabelFormatSpecifiers(a) {
|
|
199
|
-
this.
|
|
199
|
+
this.dv = a;
|
|
200
200
|
this.g("AbbreviatedLabelFormatSpecifiers");
|
|
201
201
|
}
|
|
202
202
|
get isFormattingAbbreviatedLargeNumber() {
|
|
203
|
-
return this.
|
|
203
|
+
return this.d0;
|
|
204
204
|
}
|
|
205
205
|
set isFormattingAbbreviatedLargeNumber(a) {
|
|
206
|
-
this.
|
|
206
|
+
this.d0 = a;
|
|
207
207
|
this.g("IsFormattingAbbreviatedLargeNumber");
|
|
208
208
|
}
|
|
209
209
|
get abbreviateLargeNumbers() {
|
|
210
|
-
return this.
|
|
210
|
+
return this.dx;
|
|
211
211
|
}
|
|
212
212
|
set abbreviateLargeNumbers(a) {
|
|
213
|
-
this.
|
|
213
|
+
this.dx = a;
|
|
214
214
|
this.g("AbbreviateLargeNumbers");
|
|
215
215
|
}
|
|
216
216
|
get actualMinimumValueChangeRef() {
|
|
217
|
-
return this.
|
|
217
|
+
return this.e4;
|
|
218
218
|
}
|
|
219
219
|
set actualMinimumValueChangeRef(a) {
|
|
220
|
-
this.
|
|
220
|
+
this.e4 = a;
|
|
221
221
|
this.g("ActualMinimumValueChangeRef");
|
|
222
222
|
}
|
|
223
223
|
get actualMaximumValueChangeRef() {
|
|
224
|
-
return this.
|
|
224
|
+
return this.e3;
|
|
225
225
|
}
|
|
226
226
|
set actualMaximumValueChangeRef(a) {
|
|
227
|
-
this.
|
|
227
|
+
this.e3 = a;
|
|
228
228
|
this.g("ActualMaximumValueChangeRef");
|
|
229
229
|
}
|
|
230
230
|
get actualIntervalChangeRef() {
|
|
231
|
-
return this.
|
|
231
|
+
return this.e2;
|
|
232
232
|
}
|
|
233
233
|
set actualIntervalChangeRef(a) {
|
|
234
|
-
this.
|
|
234
|
+
this.e2 = a;
|
|
235
235
|
this.g("ActualIntervalChangeRef");
|
|
236
236
|
}
|
|
237
237
|
get actualMinorIntervalChangeRef() {
|
|
238
|
-
return this.
|
|
238
|
+
return this.e5;
|
|
239
239
|
}
|
|
240
240
|
set actualMinorIntervalChangeRef(a) {
|
|
241
|
-
this.
|
|
241
|
+
this.e5 = a;
|
|
242
242
|
this.g("ActualMinorIntervalChangeRef");
|
|
243
243
|
}
|
|
244
244
|
}
|
|
@@ -13,24 +13,24 @@ export let NumericRadiusAxisDescription = /*@__PURE__*/ (() => {
|
|
|
13
13
|
class NumericRadiusAxisDescription extends NumericAxisBaseDescription {
|
|
14
14
|
constructor() {
|
|
15
15
|
super();
|
|
16
|
-
this.
|
|
17
|
-
this.
|
|
16
|
+
this.fg = 0;
|
|
17
|
+
this.ff = 0;
|
|
18
18
|
}
|
|
19
19
|
get_type() {
|
|
20
20
|
return "NumericRadiusAxis";
|
|
21
21
|
}
|
|
22
22
|
get radiusExtentScale() {
|
|
23
|
-
return this.
|
|
23
|
+
return this.fg;
|
|
24
24
|
}
|
|
25
25
|
set radiusExtentScale(a) {
|
|
26
|
-
this.
|
|
26
|
+
this.fg = a;
|
|
27
27
|
this.g("RadiusExtentScale");
|
|
28
28
|
}
|
|
29
29
|
get innerRadiusExtentScale() {
|
|
30
|
-
return this.
|
|
30
|
+
return this.ff;
|
|
31
31
|
}
|
|
32
32
|
set innerRadiusExtentScale(a) {
|
|
33
|
-
this.
|
|
33
|
+
this.ff = a;
|
|
34
34
|
this.g("InnerRadiusExtentScale");
|
|
35
35
|
}
|
|
36
36
|
}
|
|
@@ -13,48 +13,48 @@ export let OrdinalTimeXAxisDescription = /*@__PURE__*/ (() => {
|
|
|
13
13
|
class OrdinalTimeXAxisDescription extends CategoryXAxisDescription {
|
|
14
14
|
constructor() {
|
|
15
15
|
super();
|
|
16
|
-
this.
|
|
17
|
-
this.
|
|
18
|
-
this.
|
|
19
|
-
this.
|
|
20
|
-
this.
|
|
16
|
+
this.e3 = null;
|
|
17
|
+
this.e4 = null;
|
|
18
|
+
this.ex = null;
|
|
19
|
+
this.e0 = new Date();
|
|
20
|
+
this.ez = new Date();
|
|
21
21
|
}
|
|
22
22
|
get_type() {
|
|
23
23
|
return "OrdinalTimeXAxis";
|
|
24
24
|
}
|
|
25
25
|
get dateTimeMemberPath() {
|
|
26
|
-
return this.
|
|
26
|
+
return this.e3;
|
|
27
27
|
}
|
|
28
28
|
set dateTimeMemberPath(a) {
|
|
29
|
-
this.
|
|
29
|
+
this.e3 = a;
|
|
30
30
|
this.g("DateTimeMemberPath");
|
|
31
31
|
}
|
|
32
32
|
get labellingMode() {
|
|
33
|
-
return this.
|
|
33
|
+
return this.e4;
|
|
34
34
|
}
|
|
35
35
|
set labellingMode(a) {
|
|
36
|
-
this.
|
|
36
|
+
this.e4 = a;
|
|
37
37
|
this.g("LabellingMode");
|
|
38
38
|
}
|
|
39
39
|
get labelFormats() {
|
|
40
|
-
return this.
|
|
40
|
+
return this.ex;
|
|
41
41
|
}
|
|
42
42
|
set labelFormats(a) {
|
|
43
|
-
this.
|
|
43
|
+
this.ex = a;
|
|
44
44
|
this.g("LabelFormats");
|
|
45
45
|
}
|
|
46
46
|
get minimumValue() {
|
|
47
|
-
return this.
|
|
47
|
+
return this.e0;
|
|
48
48
|
}
|
|
49
49
|
set minimumValue(a) {
|
|
50
|
-
this.
|
|
50
|
+
this.e0 = a;
|
|
51
51
|
this.g("MinimumValue");
|
|
52
52
|
}
|
|
53
53
|
get maximumValue() {
|
|
54
|
-
return this.
|
|
54
|
+
return this.ez;
|
|
55
55
|
}
|
|
56
56
|
set maximumValue(a) {
|
|
57
|
-
this.
|
|
57
|
+
this.ez = a;
|
|
58
58
|
this.g("MaximumValue");
|
|
59
59
|
}
|
|
60
60
|
}
|
|
@@ -13,40 +13,40 @@ export let ProportionalCategoryAngleAxisDescription = /*@__PURE__*/ (() => {
|
|
|
13
13
|
class ProportionalCategoryAngleAxisDescription extends CategoryAngleAxisDescription {
|
|
14
14
|
constructor() {
|
|
15
15
|
super();
|
|
16
|
-
this.
|
|
17
|
-
this.
|
|
18
|
-
this.
|
|
19
|
-
this.
|
|
16
|
+
this.et = null;
|
|
17
|
+
this.ep = 0;
|
|
18
|
+
this.es = null;
|
|
19
|
+
this.er = null;
|
|
20
20
|
}
|
|
21
21
|
get_type() {
|
|
22
22
|
return "ProportionalCategoryAngleAxis";
|
|
23
23
|
}
|
|
24
24
|
get valueMemberPath() {
|
|
25
|
-
return this.
|
|
25
|
+
return this.et;
|
|
26
26
|
}
|
|
27
27
|
set valueMemberPath(a) {
|
|
28
|
-
this.
|
|
28
|
+
this.et = a;
|
|
29
29
|
this.g("ValueMemberPath");
|
|
30
30
|
}
|
|
31
31
|
get othersCategoryThreshold() {
|
|
32
|
-
return this.
|
|
32
|
+
return this.ep;
|
|
33
33
|
}
|
|
34
34
|
set othersCategoryThreshold(a) {
|
|
35
|
-
this.
|
|
35
|
+
this.ep = a;
|
|
36
36
|
this.g("OthersCategoryThreshold");
|
|
37
37
|
}
|
|
38
38
|
get othersCategoryType() {
|
|
39
|
-
return this.
|
|
39
|
+
return this.es;
|
|
40
40
|
}
|
|
41
41
|
set othersCategoryType(a) {
|
|
42
|
-
this.
|
|
42
|
+
this.es = a;
|
|
43
43
|
this.g("OthersCategoryType");
|
|
44
44
|
}
|
|
45
45
|
get othersCategoryText() {
|
|
46
|
-
return this.
|
|
46
|
+
return this.er;
|
|
47
47
|
}
|
|
48
48
|
set othersCategoryText(a) {
|
|
49
|
-
this.
|
|
49
|
+
this.er = a;
|
|
50
50
|
this.g("OthersCategoryText");
|
|
51
51
|
}
|
|
52
52
|
}
|