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.
Files changed (71) hide show
  1. package/bundles/igniteui-angular-core.umd.js +1402 -1246
  2. package/bundles/igniteui-angular-core.umd.min.js +1 -1
  3. package/esm2015/lib/AxisDescription.js +171 -139
  4. package/esm2015/lib/AxisDescriptionMetadata.js +4 -0
  5. package/esm2015/lib/CategoryAngleAxisDescription.js +21 -21
  6. package/esm2015/lib/CategoryAxisBaseDescription.js +23 -23
  7. package/esm2015/lib/CategoryChartDescription.js +130 -130
  8. package/esm2015/lib/CategoryDateTimeXAxisDescription.js +24 -24
  9. package/esm2015/lib/CategoryXAxisDescription.js +32 -32
  10. package/esm2015/lib/CategoryYAxisDescription.js +32 -32
  11. package/esm2015/lib/DataPieBaseChartDescription.js +107 -107
  12. package/esm2015/lib/DataPieChartDescription.js +35 -35
  13. package/esm2015/lib/FinancialChartDescription.js +176 -176
  14. package/esm2015/lib/NumericAngleAxisDescription.js +6 -6
  15. package/esm2015/lib/NumericAxisBaseDescription.js +83 -83
  16. package/esm2015/lib/NumericRadiusAxisDescription.js +6 -6
  17. package/esm2015/lib/OrdinalTimeXAxisDescription.js +15 -15
  18. package/esm2015/lib/ProportionalCategoryAngleAxisDescription.js +12 -12
  19. package/esm2015/lib/RadialBaseChartDescription.js +215 -183
  20. package/esm2015/lib/RadialBaseChartDescriptionMetadata.js +4 -0
  21. package/esm2015/lib/StraightNumericAxisBaseDescription.js +3 -3
  22. package/esm2015/lib/TimeAxisBaseDescription.js +24 -24
  23. package/esm2015/lib/TimeXAxisDescription.js +12 -12
  24. package/esm2015/lib/XYChartDescription.js +215 -183
  25. package/esm2015/lib/XYChartDescriptionMetadata.js +4 -0
  26. package/esm5/lib/AxisDescription.js +187 -139
  27. package/esm5/lib/AxisDescriptionMetadata.js +4 -0
  28. package/esm5/lib/CategoryAngleAxisDescription.js +21 -21
  29. package/esm5/lib/CategoryAxisBaseDescription.js +23 -23
  30. package/esm5/lib/CategoryChartDescription.js +130 -130
  31. package/esm5/lib/CategoryDateTimeXAxisDescription.js +24 -24
  32. package/esm5/lib/CategoryXAxisDescription.js +32 -32
  33. package/esm5/lib/CategoryYAxisDescription.js +32 -32
  34. package/esm5/lib/DataPieBaseChartDescription.js +107 -107
  35. package/esm5/lib/DataPieChartDescription.js +35 -35
  36. package/esm5/lib/FinancialChartDescription.js +176 -176
  37. package/esm5/lib/NumericAngleAxisDescription.js +6 -6
  38. package/esm5/lib/NumericAxisBaseDescription.js +83 -83
  39. package/esm5/lib/NumericRadiusAxisDescription.js +6 -6
  40. package/esm5/lib/OrdinalTimeXAxisDescription.js +15 -15
  41. package/esm5/lib/ProportionalCategoryAngleAxisDescription.js +12 -12
  42. package/esm5/lib/RadialBaseChartDescription.js +231 -183
  43. package/esm5/lib/RadialBaseChartDescriptionMetadata.js +4 -0
  44. package/esm5/lib/StraightNumericAxisBaseDescription.js +3 -3
  45. package/esm5/lib/TimeAxisBaseDescription.js +24 -24
  46. package/esm5/lib/TimeXAxisDescription.js +12 -12
  47. package/esm5/lib/XYChartDescription.js +231 -183
  48. package/esm5/lib/XYChartDescriptionMetadata.js +4 -0
  49. package/fesm2015/igniteui-angular-core.js +1354 -1246
  50. package/fesm5/igniteui-angular-core.js +1402 -1246
  51. package/lib/AxisDescription.d.ts +60 -48
  52. package/lib/CategoryAngleAxisDescription.d.ts +7 -7
  53. package/lib/CategoryAxisBaseDescription.d.ts +8 -8
  54. package/lib/CategoryChartDescription.d.ts +45 -45
  55. package/lib/CategoryDateTimeXAxisDescription.d.ts +8 -8
  56. package/lib/CategoryXAxisDescription.d.ts +11 -11
  57. package/lib/CategoryYAxisDescription.d.ts +11 -11
  58. package/lib/DataPieBaseChartDescription.d.ts +38 -38
  59. package/lib/DataPieChartDescription.d.ts +12 -12
  60. package/lib/FinancialChartDescription.d.ts +61 -61
  61. package/lib/NumericAngleAxisDescription.d.ts +2 -2
  62. package/lib/NumericAxisBaseDescription.d.ts +28 -28
  63. package/lib/NumericRadiusAxisDescription.d.ts +2 -2
  64. package/lib/OrdinalTimeXAxisDescription.d.ts +5 -5
  65. package/lib/ProportionalCategoryAngleAxisDescription.d.ts +4 -4
  66. package/lib/RadialBaseChartDescription.d.ts +77 -65
  67. package/lib/StraightNumericAxisBaseDescription.d.ts +1 -1
  68. package/lib/TimeAxisBaseDescription.d.ts +8 -8
  69. package/lib/TimeXAxisDescription.d.ts +4 -4
  70. package/lib/XYChartDescription.d.ts +77 -65
  71. package/package.json +4 -5
@@ -14,8 +14,8 @@ var NumericAngleAxisDescription = /** @class */ /*@__PURE__*/ (function (_super)
14
14
  __extends(NumericAngleAxisDescription, _super);
15
15
  function NumericAngleAxisDescription() {
16
16
  var _this = _super.call(this) || this;
17
- _this.e7 = 0;
18
- _this.e9 = null;
17
+ _this.ff = 0;
18
+ _this.fh = null;
19
19
  return _this;
20
20
  }
21
21
  NumericAngleAxisDescription.prototype.get_type = function () {
@@ -23,10 +23,10 @@ var NumericAngleAxisDescription = /** @class */ /*@__PURE__*/ (function (_super)
23
23
  };
24
24
  Object.defineProperty(NumericAngleAxisDescription.prototype, "startAngleOffset", {
25
25
  get: function () {
26
- return this.e7;
26
+ return this.ff;
27
27
  },
28
28
  set: function (a) {
29
- this.e7 = a;
29
+ this.ff = a;
30
30
  this.g("StartAngleOffset");
31
31
  },
32
32
  enumerable: false,
@@ -34,10 +34,10 @@ var NumericAngleAxisDescription = /** @class */ /*@__PURE__*/ (function (_super)
34
34
  });
35
35
  Object.defineProperty(NumericAngleAxisDescription.prototype, "labelMode", {
36
36
  get: function () {
37
- return this.e9;
37
+ return this.fh;
38
38
  },
39
39
  set: function (a) {
40
- this.e9 = a;
40
+ this.fh = a;
41
41
  this.g("LabelMode");
42
42
  },
43
43
  enumerable: false,
@@ -14,34 +14,34 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
14
14
  __extends(NumericAxisBaseDescription, _super);
15
15
  function NumericAxisBaseDescription() {
16
16
  var _this = _super.call(this) || this;
17
- _this.ey = null;
18
- _this.d9 = 0;
19
- _this.d3 = 0;
20
- _this.d6 = 0;
21
- _this.d8 = 0;
22
- _this.d2 = 0;
23
- _this.d5 = 0;
24
- _this.d7 = 0;
25
- _this.d1 = 0;
26
- _this.en = 0;
27
- _this.ep = 0;
28
- _this.du = false;
29
- _this.ea = 0;
30
- _this.d4 = 0;
17
+ _this.e6 = null;
18
+ _this.eh = 0;
31
19
  _this.eb = 0;
32
- _this.dt = false;
33
- _this.dq = false;
34
- _this.dr = false;
35
- _this.eo = 0;
36
- _this.ez = null;
37
- _this.et = null;
38
- _this.dm = null;
39
- _this.ds = false;
40
- _this.dp = false;
41
- _this.ew = null;
42
- _this.ev = null;
43
- _this.eu = null;
44
- _this.ex = null;
20
+ _this.ee = 0;
21
+ _this.eg = 0;
22
+ _this.ea = 0;
23
+ _this.ed = 0;
24
+ _this.ef = 0;
25
+ _this.d9 = 0;
26
+ _this.ev = 0;
27
+ _this.ex = 0;
28
+ _this.d2 = false;
29
+ _this.ei = 0;
30
+ _this.ec = 0;
31
+ _this.ej = 0;
32
+ _this.d1 = false;
33
+ _this.dy = false;
34
+ _this.dz = false;
35
+ _this.ew = 0;
36
+ _this.e7 = null;
37
+ _this.e1 = null;
38
+ _this.dv = null;
39
+ _this.d0 = false;
40
+ _this.dx = false;
41
+ _this.e4 = null;
42
+ _this.e3 = null;
43
+ _this.e2 = null;
44
+ _this.e5 = null;
45
45
  return _this;
46
46
  }
47
47
  NumericAxisBaseDescription.prototype.get_type = function () {
@@ -49,10 +49,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
49
49
  };
50
50
  Object.defineProperty(NumericAxisBaseDescription.prototype, "autoRangeBufferMode", {
51
51
  get: function () {
52
- return this.ey;
52
+ return this.e6;
53
53
  },
54
54
  set: function (a) {
55
- this.ey = a;
55
+ this.e6 = a;
56
56
  this.g("AutoRangeBufferMode");
57
57
  },
58
58
  enumerable: false,
@@ -60,10 +60,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
60
60
  });
61
61
  Object.defineProperty(NumericAxisBaseDescription.prototype, "minimumValue", {
62
62
  get: function () {
63
- return this.d9;
63
+ return this.eh;
64
64
  },
65
65
  set: function (a) {
66
- this.d9 = a;
66
+ this.eh = a;
67
67
  this.g("MinimumValue");
68
68
  },
69
69
  enumerable: false,
@@ -71,10 +71,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
71
71
  });
72
72
  Object.defineProperty(NumericAxisBaseDescription.prototype, "actualMinimumValue", {
73
73
  get: function () {
74
- return this.d3;
74
+ return this.eb;
75
75
  },
76
76
  set: function (a) {
77
- this.d3 = a;
77
+ this.eb = a;
78
78
  this.g("ActualMinimumValue");
79
79
  },
80
80
  enumerable: false,
@@ -82,10 +82,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
82
82
  });
83
83
  Object.defineProperty(NumericAxisBaseDescription.prototype, "actualVisibleMinimumValue", {
84
84
  get: function () {
85
- return this.d6;
85
+ return this.ee;
86
86
  },
87
87
  set: function (a) {
88
- this.d6 = a;
88
+ this.ee = a;
89
89
  this.g("ActualVisibleMinimumValue");
90
90
  },
91
91
  enumerable: false,
@@ -93,10 +93,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
93
93
  });
94
94
  Object.defineProperty(NumericAxisBaseDescription.prototype, "maximumValue", {
95
95
  get: function () {
96
- return this.d8;
96
+ return this.eg;
97
97
  },
98
98
  set: function (a) {
99
- this.d8 = a;
99
+ this.eg = a;
100
100
  this.g("MaximumValue");
101
101
  },
102
102
  enumerable: false,
@@ -104,10 +104,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
104
104
  });
105
105
  Object.defineProperty(NumericAxisBaseDescription.prototype, "actualMaximumValue", {
106
106
  get: function () {
107
- return this.d2;
107
+ return this.ea;
108
108
  },
109
109
  set: function (a) {
110
- this.d2 = a;
110
+ this.ea = a;
111
111
  this.g("ActualMaximumValue");
112
112
  },
113
113
  enumerable: false,
@@ -115,10 +115,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
115
115
  });
116
116
  Object.defineProperty(NumericAxisBaseDescription.prototype, "actualVisibleMaximumValue", {
117
117
  get: function () {
118
- return this.d5;
118
+ return this.ed;
119
119
  },
120
120
  set: function (a) {
121
- this.d5 = a;
121
+ this.ed = a;
122
122
  this.g("ActualVisibleMaximumValue");
123
123
  },
124
124
  enumerable: false,
@@ -126,10 +126,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
126
126
  });
127
127
  Object.defineProperty(NumericAxisBaseDescription.prototype, "interval", {
128
128
  get: function () {
129
- return this.d7;
129
+ return this.ef;
130
130
  },
131
131
  set: function (a) {
132
- this.d7 = a;
132
+ this.ef = a;
133
133
  this.g("Interval");
134
134
  },
135
135
  enumerable: false,
@@ -137,10 +137,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
137
137
  });
138
138
  Object.defineProperty(NumericAxisBaseDescription.prototype, "actualInterval", {
139
139
  get: function () {
140
- return this.d1;
140
+ return this.d9;
141
141
  },
142
142
  set: function (a) {
143
- this.d1 = a;
143
+ this.d9 = a;
144
144
  this.g("ActualInterval");
145
145
  },
146
146
  enumerable: false,
@@ -148,10 +148,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
148
148
  });
149
149
  Object.defineProperty(NumericAxisBaseDescription.prototype, "actualMaxPrecision", {
150
150
  get: function () {
151
- return this.en;
151
+ return this.ev;
152
152
  },
153
153
  set: function (a) {
154
- this.en = a;
154
+ this.ev = a;
155
155
  this.g("ActualMaxPrecision");
156
156
  },
157
157
  enumerable: false,
@@ -159,10 +159,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
159
159
  });
160
160
  Object.defineProperty(NumericAxisBaseDescription.prototype, "maxPrecision", {
161
161
  get: function () {
162
- return this.ep;
162
+ return this.ex;
163
163
  },
164
164
  set: function (a) {
165
- this.ep = a;
165
+ this.ex = a;
166
166
  this.g("MaxPrecision");
167
167
  },
168
168
  enumerable: false,
@@ -170,10 +170,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
170
170
  });
171
171
  Object.defineProperty(NumericAxisBaseDescription.prototype, "shouldApplyMaxPrecisionWhenZoomed", {
172
172
  get: function () {
173
- return this.du;
173
+ return this.d2;
174
174
  },
175
175
  set: function (a) {
176
- this.du = a;
176
+ this.d2 = a;
177
177
  this.g("ShouldApplyMaxPrecisionWhenZoomed");
178
178
  },
179
179
  enumerable: false,
@@ -181,10 +181,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
181
181
  });
182
182
  Object.defineProperty(NumericAxisBaseDescription.prototype, "minorInterval", {
183
183
  get: function () {
184
- return this.ea;
184
+ return this.ei;
185
185
  },
186
186
  set: function (a) {
187
- this.ea = a;
187
+ this.ei = a;
188
188
  this.g("MinorInterval");
189
189
  },
190
190
  enumerable: false,
@@ -192,10 +192,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
192
192
  });
193
193
  Object.defineProperty(NumericAxisBaseDescription.prototype, "actualMinorInterval", {
194
194
  get: function () {
195
- return this.d4;
195
+ return this.ec;
196
196
  },
197
197
  set: function (a) {
198
- this.d4 = a;
198
+ this.ec = a;
199
199
  this.g("ActualMinorInterval");
200
200
  },
201
201
  enumerable: false,
@@ -203,10 +203,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
203
203
  });
204
204
  Object.defineProperty(NumericAxisBaseDescription.prototype, "referenceValue", {
205
205
  get: function () {
206
- return this.eb;
206
+ return this.ej;
207
207
  },
208
208
  set: function (a) {
209
- this.eb = a;
209
+ this.ej = a;
210
210
  this.g("ReferenceValue");
211
211
  },
212
212
  enumerable: false,
@@ -214,10 +214,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
214
214
  });
215
215
  Object.defineProperty(NumericAxisBaseDescription.prototype, "isLogarithmic", {
216
216
  get: function () {
217
- return this.dt;
217
+ return this.d1;
218
218
  },
219
219
  set: function (a) {
220
- this.dt = a;
220
+ this.d1 = a;
221
221
  this.g("IsLogarithmic");
222
222
  },
223
223
  enumerable: false,
@@ -225,10 +225,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
225
225
  });
226
226
  Object.defineProperty(NumericAxisBaseDescription.prototype, "actualIsLogarithmic", {
227
227
  get: function () {
228
- return this.dq;
228
+ return this.dy;
229
229
  },
230
230
  set: function (a) {
231
- this.dq = a;
231
+ this.dy = a;
232
232
  this.g("ActualIsLogarithmic");
233
233
  },
234
234
  enumerable: false,
@@ -236,10 +236,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
236
236
  });
237
237
  Object.defineProperty(NumericAxisBaseDescription.prototype, "favorLabellingScaleEnd", {
238
238
  get: function () {
239
- return this.dr;
239
+ return this.dz;
240
240
  },
241
241
  set: function (a) {
242
- this.dr = a;
242
+ this.dz = a;
243
243
  this.g("FavorLabellingScaleEnd");
244
244
  },
245
245
  enumerable: false,
@@ -247,10 +247,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
247
247
  });
248
248
  Object.defineProperty(NumericAxisBaseDescription.prototype, "logarithmBase", {
249
249
  get: function () {
250
- return this.eo;
250
+ return this.ew;
251
251
  },
252
252
  set: function (a) {
253
- this.eo = a;
253
+ this.ew = a;
254
254
  this.g("LogarithmBase");
255
255
  },
256
256
  enumerable: false,
@@ -258,10 +258,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
258
258
  });
259
259
  Object.defineProperty(NumericAxisBaseDescription.prototype, "formatAbbreviatedLabelRef", {
260
260
  get: function () {
261
- return this.ez;
261
+ return this.e7;
262
262
  },
263
263
  set: function (a) {
264
- this.ez = a;
264
+ this.e7 = a;
265
265
  this.g("FormatAbbreviatedLabelRef");
266
266
  },
267
267
  enumerable: false,
@@ -269,10 +269,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
269
269
  });
270
270
  Object.defineProperty(NumericAxisBaseDescription.prototype, "abbreviatedLabelFormat", {
271
271
  get: function () {
272
- return this.et;
272
+ return this.e1;
273
273
  },
274
274
  set: function (a) {
275
- this.et = a;
275
+ this.e1 = a;
276
276
  this.g("AbbreviatedLabelFormat");
277
277
  },
278
278
  enumerable: false,
@@ -280,10 +280,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
280
280
  });
281
281
  Object.defineProperty(NumericAxisBaseDescription.prototype, "abbreviatedLabelFormatSpecifiers", {
282
282
  get: function () {
283
- return this.dm;
283
+ return this.dv;
284
284
  },
285
285
  set: function (a) {
286
- this.dm = a;
286
+ this.dv = a;
287
287
  this.g("AbbreviatedLabelFormatSpecifiers");
288
288
  },
289
289
  enumerable: false,
@@ -291,10 +291,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
291
291
  });
292
292
  Object.defineProperty(NumericAxisBaseDescription.prototype, "isFormattingAbbreviatedLargeNumber", {
293
293
  get: function () {
294
- return this.ds;
294
+ return this.d0;
295
295
  },
296
296
  set: function (a) {
297
- this.ds = a;
297
+ this.d0 = a;
298
298
  this.g("IsFormattingAbbreviatedLargeNumber");
299
299
  },
300
300
  enumerable: false,
@@ -302,10 +302,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
302
302
  });
303
303
  Object.defineProperty(NumericAxisBaseDescription.prototype, "abbreviateLargeNumbers", {
304
304
  get: function () {
305
- return this.dp;
305
+ return this.dx;
306
306
  },
307
307
  set: function (a) {
308
- this.dp = a;
308
+ this.dx = a;
309
309
  this.g("AbbreviateLargeNumbers");
310
310
  },
311
311
  enumerable: false,
@@ -313,10 +313,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
313
313
  });
314
314
  Object.defineProperty(NumericAxisBaseDescription.prototype, "actualMinimumValueChangeRef", {
315
315
  get: function () {
316
- return this.ew;
316
+ return this.e4;
317
317
  },
318
318
  set: function (a) {
319
- this.ew = a;
319
+ this.e4 = a;
320
320
  this.g("ActualMinimumValueChangeRef");
321
321
  },
322
322
  enumerable: false,
@@ -324,10 +324,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
324
324
  });
325
325
  Object.defineProperty(NumericAxisBaseDescription.prototype, "actualMaximumValueChangeRef", {
326
326
  get: function () {
327
- return this.ev;
327
+ return this.e3;
328
328
  },
329
329
  set: function (a) {
330
- this.ev = a;
330
+ this.e3 = a;
331
331
  this.g("ActualMaximumValueChangeRef");
332
332
  },
333
333
  enumerable: false,
@@ -335,10 +335,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
335
335
  });
336
336
  Object.defineProperty(NumericAxisBaseDescription.prototype, "actualIntervalChangeRef", {
337
337
  get: function () {
338
- return this.eu;
338
+ return this.e2;
339
339
  },
340
340
  set: function (a) {
341
- this.eu = a;
341
+ this.e2 = a;
342
342
  this.g("ActualIntervalChangeRef");
343
343
  },
344
344
  enumerable: false,
@@ -346,10 +346,10 @@ var NumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super)
346
346
  });
347
347
  Object.defineProperty(NumericAxisBaseDescription.prototype, "actualMinorIntervalChangeRef", {
348
348
  get: function () {
349
- return this.ex;
349
+ return this.e5;
350
350
  },
351
351
  set: function (a) {
352
- this.ex = a;
352
+ this.e5 = a;
353
353
  this.g("ActualMinorIntervalChangeRef");
354
354
  },
355
355
  enumerable: false,
@@ -14,8 +14,8 @@ var NumericRadiusAxisDescription = /** @class */ /*@__PURE__*/ (function (_super
14
14
  __extends(NumericRadiusAxisDescription, _super);
15
15
  function NumericRadiusAxisDescription() {
16
16
  var _this = _super.call(this) || this;
17
- _this.e8 = 0;
18
- _this.e7 = 0;
17
+ _this.fg = 0;
18
+ _this.ff = 0;
19
19
  return _this;
20
20
  }
21
21
  NumericRadiusAxisDescription.prototype.get_type = function () {
@@ -23,10 +23,10 @@ var NumericRadiusAxisDescription = /** @class */ /*@__PURE__*/ (function (_super
23
23
  };
24
24
  Object.defineProperty(NumericRadiusAxisDescription.prototype, "radiusExtentScale", {
25
25
  get: function () {
26
- return this.e8;
26
+ return this.fg;
27
27
  },
28
28
  set: function (a) {
29
- this.e8 = a;
29
+ this.fg = a;
30
30
  this.g("RadiusExtentScale");
31
31
  },
32
32
  enumerable: false,
@@ -34,10 +34,10 @@ var NumericRadiusAxisDescription = /** @class */ /*@__PURE__*/ (function (_super
34
34
  });
35
35
  Object.defineProperty(NumericRadiusAxisDescription.prototype, "innerRadiusExtentScale", {
36
36
  get: function () {
37
- return this.e7;
37
+ return this.ff;
38
38
  },
39
39
  set: function (a) {
40
- this.e7 = a;
40
+ this.ff = a;
41
41
  this.g("InnerRadiusExtentScale");
42
42
  },
43
43
  enumerable: false,
@@ -14,11 +14,11 @@ var OrdinalTimeXAxisDescription = /** @class */ /*@__PURE__*/ (function (_super)
14
14
  __extends(OrdinalTimeXAxisDescription, _super);
15
15
  function OrdinalTimeXAxisDescription() {
16
16
  var _this = _super.call(this) || this;
17
- _this.ev = null;
18
- _this.ew = null;
19
- _this.ep = null;
20
- _this.es = new Date();
21
- _this.er = new Date();
17
+ _this.e3 = null;
18
+ _this.e4 = null;
19
+ _this.ex = null;
20
+ _this.e0 = new Date();
21
+ _this.ez = new Date();
22
22
  return _this;
23
23
  }
24
24
  OrdinalTimeXAxisDescription.prototype.get_type = function () {
@@ -26,10 +26,10 @@ var OrdinalTimeXAxisDescription = /** @class */ /*@__PURE__*/ (function (_super)
26
26
  };
27
27
  Object.defineProperty(OrdinalTimeXAxisDescription.prototype, "dateTimeMemberPath", {
28
28
  get: function () {
29
- return this.ev;
29
+ return this.e3;
30
30
  },
31
31
  set: function (a) {
32
- this.ev = a;
32
+ this.e3 = a;
33
33
  this.g("DateTimeMemberPath");
34
34
  },
35
35
  enumerable: false,
@@ -37,10 +37,10 @@ var OrdinalTimeXAxisDescription = /** @class */ /*@__PURE__*/ (function (_super)
37
37
  });
38
38
  Object.defineProperty(OrdinalTimeXAxisDescription.prototype, "labellingMode", {
39
39
  get: function () {
40
- return this.ew;
40
+ return this.e4;
41
41
  },
42
42
  set: function (a) {
43
- this.ew = a;
43
+ this.e4 = a;
44
44
  this.g("LabellingMode");
45
45
  },
46
46
  enumerable: false,
@@ -48,10 +48,10 @@ var OrdinalTimeXAxisDescription = /** @class */ /*@__PURE__*/ (function (_super)
48
48
  });
49
49
  Object.defineProperty(OrdinalTimeXAxisDescription.prototype, "labelFormats", {
50
50
  get: function () {
51
- return this.ep;
51
+ return this.ex;
52
52
  },
53
53
  set: function (a) {
54
- this.ep = a;
54
+ this.ex = a;
55
55
  this.g("LabelFormats");
56
56
  },
57
57
  enumerable: false,
@@ -59,10 +59,10 @@ var OrdinalTimeXAxisDescription = /** @class */ /*@__PURE__*/ (function (_super)
59
59
  });
60
60
  Object.defineProperty(OrdinalTimeXAxisDescription.prototype, "minimumValue", {
61
61
  get: function () {
62
- return this.es;
62
+ return this.e0;
63
63
  },
64
64
  set: function (a) {
65
- this.es = a;
65
+ this.e0 = a;
66
66
  this.g("MinimumValue");
67
67
  },
68
68
  enumerable: false,
@@ -70,10 +70,10 @@ var OrdinalTimeXAxisDescription = /** @class */ /*@__PURE__*/ (function (_super)
70
70
  });
71
71
  Object.defineProperty(OrdinalTimeXAxisDescription.prototype, "maximumValue", {
72
72
  get: function () {
73
- return this.er;
73
+ return this.ez;
74
74
  },
75
75
  set: function (a) {
76
- this.er = a;
76
+ this.ez = a;
77
77
  this.g("MaximumValue");
78
78
  },
79
79
  enumerable: false,
@@ -14,10 +14,10 @@ var ProportionalCategoryAngleAxisDescription = /** @class */ /*@__PURE__*/ (func
14
14
  __extends(ProportionalCategoryAngleAxisDescription, _super);
15
15
  function ProportionalCategoryAngleAxisDescription() {
16
16
  var _this = _super.call(this) || this;
17
- _this.el = null;
18
- _this.eh = 0;
19
- _this.ek = null;
20
- _this.ej = null;
17
+ _this.et = null;
18
+ _this.ep = 0;
19
+ _this.es = null;
20
+ _this.er = null;
21
21
  return _this;
22
22
  }
23
23
  ProportionalCategoryAngleAxisDescription.prototype.get_type = function () {
@@ -25,10 +25,10 @@ var ProportionalCategoryAngleAxisDescription = /** @class */ /*@__PURE__*/ (func
25
25
  };
26
26
  Object.defineProperty(ProportionalCategoryAngleAxisDescription.prototype, "valueMemberPath", {
27
27
  get: function () {
28
- return this.el;
28
+ return this.et;
29
29
  },
30
30
  set: function (a) {
31
- this.el = a;
31
+ this.et = a;
32
32
  this.g("ValueMemberPath");
33
33
  },
34
34
  enumerable: false,
@@ -36,10 +36,10 @@ var ProportionalCategoryAngleAxisDescription = /** @class */ /*@__PURE__*/ (func
36
36
  });
37
37
  Object.defineProperty(ProportionalCategoryAngleAxisDescription.prototype, "othersCategoryThreshold", {
38
38
  get: function () {
39
- return this.eh;
39
+ return this.ep;
40
40
  },
41
41
  set: function (a) {
42
- this.eh = a;
42
+ this.ep = a;
43
43
  this.g("OthersCategoryThreshold");
44
44
  },
45
45
  enumerable: false,
@@ -47,10 +47,10 @@ var ProportionalCategoryAngleAxisDescription = /** @class */ /*@__PURE__*/ (func
47
47
  });
48
48
  Object.defineProperty(ProportionalCategoryAngleAxisDescription.prototype, "othersCategoryType", {
49
49
  get: function () {
50
- return this.ek;
50
+ return this.es;
51
51
  },
52
52
  set: function (a) {
53
- this.ek = a;
53
+ this.es = a;
54
54
  this.g("OthersCategoryType");
55
55
  },
56
56
  enumerable: false,
@@ -58,10 +58,10 @@ var ProportionalCategoryAngleAxisDescription = /** @class */ /*@__PURE__*/ (func
58
58
  });
59
59
  Object.defineProperty(ProportionalCategoryAngleAxisDescription.prototype, "othersCategoryText", {
60
60
  get: function () {
61
- return this.ej;
61
+ return this.er;
62
62
  },
63
63
  set: function (a) {
64
- this.ej = a;
64
+ this.er = a;
65
65
  this.g("OthersCategoryText");
66
66
  },
67
67
  enumerable: false,