igniteui-webcomponents-charts 5.0.1 → 5.0.2

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 (60) hide show
  1. package/bundles/igniteui-webcomponents-charts.umd.js +809 -708
  2. package/bundles/igniteui-webcomponents-charts.umd.min.js +1 -1
  3. package/esm2015/lib/AnchoredRadialBucketCalculator_combined.js +2 -2
  4. package/esm2015/lib/CalloutLayer_combined.js +1 -1
  5. package/esm2015/lib/CategoryBucketCalculator_combined.js +50 -50
  6. package/esm2015/lib/DataPieBaseChart.js +311 -298
  7. package/esm2015/lib/DataPieChart.js +73 -73
  8. package/esm2015/lib/PieChartViewManager_combined.js +11 -1
  9. package/esm2015/lib/PolarBase_combined.js +24 -24
  10. package/esm2015/lib/RadialBucketCalculator_combined.js +32 -32
  11. package/esm2015/lib/RadialPieSeries_combined.js +153 -78
  12. package/esm2015/lib/ScatterBase_combined.js +20 -20
  13. package/esm2015/lib/ScatterPolygonSeries_combined.js +20 -20
  14. package/esm2015/lib/SeriesViewer_combined.js +2 -2
  15. package/esm2015/lib/StackedSeriesCreatedEventArgs_combined.js +2 -2
  16. package/esm2015/lib/igc-data-pie-base-chart-component.js +91 -83
  17. package/esm2015/lib/igc-data-pie-chart-component.js +23 -23
  18. package/esm2015/lib/igc-pie-chart-base-component.js +1 -1
  19. package/esm2015/lib/igc-radial-pie-series-component.js +20 -9
  20. package/esm2015/public_api.js +0 -1
  21. package/esm5/lib/AnchoredRadialBucketCalculator_combined.js +2 -2
  22. package/esm5/lib/CalloutLayer_combined.js +1 -1
  23. package/esm5/lib/CategoryBucketCalculator_combined.js +50 -50
  24. package/esm5/lib/DataPieBaseChart.js +285 -268
  25. package/esm5/lib/DataPieChart.js +65 -65
  26. package/esm5/lib/PieChartViewManager_combined.js +11 -1
  27. package/esm5/lib/PolarBase_combined.js +24 -24
  28. package/esm5/lib/RadialBucketCalculator_combined.js +32 -32
  29. package/esm5/lib/RadialPieSeries_combined.js +160 -76
  30. package/esm5/lib/ScatterBase_combined.js +20 -20
  31. package/esm5/lib/ScatterPolygonSeries_combined.js +20 -20
  32. package/esm5/lib/SeriesViewer_combined.js +2 -2
  33. package/esm5/lib/StackedSeriesCreatedEventArgs_combined.js +2 -2
  34. package/esm5/lib/igc-data-pie-base-chart-component.js +95 -83
  35. package/esm5/lib/igc-data-pie-chart-component.js +23 -23
  36. package/esm5/lib/igc-pie-chart-base-component.js +1 -1
  37. package/esm5/lib/igc-radial-pie-series-component.js +24 -9
  38. package/esm5/public_api.js +0 -1
  39. package/fesm2015/igniteui-webcomponents-charts.js +826 -744
  40. package/fesm5/igniteui-webcomponents-charts.js +808 -705
  41. package/lib/AnchoredRadialBucketCalculator_combined.d.ts +1 -1
  42. package/lib/CategoryBucketCalculator_combined.d.ts +1 -1
  43. package/lib/DataPieBaseChart.d.ts +96 -92
  44. package/lib/DataPieChart.d.ts +26 -26
  45. package/lib/PieChartViewManager_combined.d.ts +1 -1
  46. package/lib/PolarBase_combined.d.ts +1 -1
  47. package/lib/RadialBucketCalculator_combined.d.ts +2 -2
  48. package/lib/RadialPieSeries_combined.d.ts +18 -12
  49. package/lib/ScatterBase_combined.d.ts +1 -1
  50. package/lib/ScatterPolygonSeries_combined.d.ts +1 -1
  51. package/lib/SeriesViewer_combined.d.ts +1 -1
  52. package/lib/StackedSeriesCreatedEventArgs_combined.d.ts +1 -1
  53. package/lib/igc-data-pie-base-chart-component.d.ts +3 -0
  54. package/lib/igc-pie-chart-base-component.d.ts +1 -1
  55. package/lib/igc-radial-pie-series-component.d.ts +6 -0
  56. package/package.json +2 -2
  57. package/public_api.d.ts +0 -1
  58. package/esm2015/lib/LegendEmptyValuesMode.js +0 -29
  59. package/esm5/lib/LegendEmptyValuesMode.js +0 -29
  60. package/lib/LegendEmptyValuesMode.d.ts +0 -22
@@ -10,6 +10,7 @@ import { NumericRadiusAxis } from "./NumericRadiusAxis";
10
10
  import { typeCast, runOn, delegateCombine, enumGetBox, markType } from "igniteui-webcomponents-core";
11
11
  import { PieChartSweepDirection_$type } from "./PieChartSweepDirection";
12
12
  import { CalloutCollisionMode_$type } from "igniteui-webcomponents-core";
13
+ import { LegendEmptyValuesMode_$type } from "igniteui-webcomponents-core";
13
14
  import { OthersCategoryType_$type } from "igniteui-webcomponents-core";
14
15
  import { AxisRangeBufferMode_$type } from "./AxisRangeBufferMode";
15
16
  import { RadialLabelMode_$type } from "igniteui-webcomponents-core";
@@ -26,48 +27,49 @@ export let DataPieBaseChart = /*@__PURE__*/ (() => {
26
27
  class DataPieBaseChart extends RadialBaseChart {
27
28
  constructor() {
28
29
  super();
29
- this.aic = null;
30
+ this.aie = null;
30
31
  this.agk = null;
31
- this.ah8 = null;
32
- this.agi = null;
33
32
  this.aia = null;
33
+ this.agi = null;
34
+ this.aic = null;
34
35
  this.agj = null;
35
- this.ah7 = null;
36
+ this.ah9 = null;
36
37
  this.agh = null;
37
- this.ahj = 0;
38
- this.agz = 0;
38
+ this.ahl = 0;
39
+ this.ag1 = 0;
39
40
  this.agr = 6;
40
- this.ajx = null;
41
- this.ajw = null;
42
- this.aid = null;
43
- this.ah6 = null;
44
- this.agx = 1;
45
- this.ahk = 3;
46
- this.ah9 = null;
47
- this.ah5 = null;
48
- this.aha = true;
41
+ this.aj0 = null;
42
+ this.ajz = null;
43
+ this.aif = null;
44
+ this.ah8 = null;
45
+ this.agv = 0;
46
+ this.agz = 1;
47
+ this.ahm = 3;
48
+ this.aib = null;
49
+ this.ah7 = null;
50
+ this.ahc = true;
49
51
  this.agp = 0;
50
- this.ahh = 0;
51
- this.ahi = 0;
52
- this.ahn = 0;
53
- this.ahb = false;
54
- this.ah3 = 10;
55
- this.ahp = NaN;
52
+ this.ahj = 0;
53
+ this.ahk = 0;
54
+ this.ahp = 0;
55
+ this.ahd = false;
56
+ this.ah5 = 10;
57
+ this.ahr = NaN;
58
+ this.ahq = NaN;
59
+ this.ahs = 0;
60
+ this.ahn = NaN;
56
61
  this.aho = NaN;
57
- this.ahq = 0;
58
- this.ahl = NaN;
59
- this.ahm = NaN;
60
- this.aib = " - ";
61
- this.ag4 = 0;
62
- this.ag3 = 0;
63
- this.ag8 = true;
64
- this.ag9 = true;
62
+ this.aid = " - ";
63
+ this.ag6 = 0;
64
+ this.ag5 = 0;
65
+ this.aha = true;
66
+ this.ahb = true;
65
67
  this.agt = 0;
66
68
  }
67
- ajs(a) {
68
- this.ajt((b, c) => a(b));
69
+ ajv(a) {
70
+ this.ajw((b, c) => a(b));
69
71
  }
70
- ajt(a) {
72
+ ajw(a) {
71
73
  if (this.dataChart == null) {
72
74
  return;
73
75
  }
@@ -78,10 +80,10 @@ export let DataPieBaseChart = /*@__PURE__*/ (() => {
78
80
  }
79
81
  }
80
82
  }
81
- ajq(a) {
82
- this.ajr((b, c) => a(b));
83
+ ajt(a) {
84
+ this.aju((b, c) => a(b));
83
85
  }
84
- ajr(a) {
86
+ aju(a) {
85
87
  if (this.dataChart == null) {
86
88
  return;
87
89
  }
@@ -95,16 +97,16 @@ export let DataPieBaseChart = /*@__PURE__*/ (() => {
95
97
  wg() {
96
98
  let a = this.bj.dataSeries != null ? this.bj.dataSeries.count : 0;
97
99
  super.wg();
98
- if (this.aij != null) {
99
- let b = this.aij;
100
+ if (this.ail != null) {
101
+ let b = this.ail;
100
102
  this.angleAxis.f1 = b;
101
103
  }
102
104
  else {
103
105
  this.angleAxis.f1 = this.ab2 == null ? RadialBaseChart.adj(this.angleAxis, this.bj.dataSeries) : this.ab2;
104
106
  }
105
107
  this.angleAxis.itemsSource = this.dataChart != null && this.dataChart.series.count > 0 ? this.dataChart.series._inner[0].itemsSource : null;
106
- if (this.ajn != null) {
107
- this.angleAxis.og = this.ajn;
108
+ if (this.ajq != null) {
109
+ this.angleAxis.og = this.ajq;
108
110
  }
109
111
  else {
110
112
  this.angleAxis.og = (this.dataChart != null && this.dataChart.series.count > 0 && typeCast(RadialPieSeries.$, this.dataChart.series._inner[0]) !== null) ? this.dataChart.series._inner[0].acm : null;
@@ -129,42 +131,42 @@ export let DataPieBaseChart = /*@__PURE__*/ (() => {
129
131
  return true;
130
132
  }
131
133
  wh() {
132
- this.valueAxis.lj = this.ahg;
133
- this.valueAxis.ma = this.ah4;
134
+ this.valueAxis.lj = this.ahi;
135
+ this.valueAxis.ma = this.ah6;
134
136
  }
135
137
  get angleAxis() {
136
- return this.ag1;
138
+ return this.ag3;
137
139
  }
138
140
  set angleAxis(a) {
139
141
  let b = this.angleAxis;
140
142
  if (a != b) {
141
- this.ag1 = a;
143
+ this.ag3 = a;
142
144
  this.vl("AngleAxis", b, this.angleAxis);
143
145
  }
144
146
  }
145
147
  get valueAxis() {
146
- return this.agv;
148
+ return this.agx;
147
149
  }
148
150
  set valueAxis(a) {
149
151
  let b = this.valueAxis;
150
152
  if (a != b) {
151
- this.agv = a;
153
+ this.agx = a;
152
154
  this.vl("ValueAxis", b, this.valueAxis);
153
155
  }
154
156
  }
155
- get_ahd() {
157
+ get_ahf() {
156
158
  return false;
157
159
  }
158
- get ahd() {
159
- return this.get_ahd();
160
+ get ahf() {
161
+ return this.get_ahf();
160
162
  }
161
163
  dg(a, b) {
162
164
  let c = null;
163
165
  if (b == 34) {
164
- c = this.ag7(a, b);
166
+ c = this.ag9(a, b);
165
167
  }
166
168
  if (a.index > 0) {
167
- if (!this.ahd) {
169
+ if (!this.ahf) {
168
170
  if (c != null) {
169
171
  c.o0();
170
172
  }
@@ -176,11 +178,11 @@ export let DataPieBaseChart = /*@__PURE__*/ (() => {
176
178
  uy(a, b) {
177
179
  super.uy(a, b);
178
180
  if (this.g0(a) && this.ci.isCalloutLayer(a)) {
179
- if (this.ajz != null) {
180
- this.ci.setCalloutLightColor(a, this.ajz);
181
+ if (this.aj2 != null) {
182
+ this.ci.setCalloutLightColor(a, this.aj2);
181
183
  }
182
- if (this.ajy != null) {
183
- this.ci.setCalloutDarkColor(a, this.ajy);
184
+ if (this.aj1 != null) {
185
+ this.ci.setCalloutDarkColor(a, this.aj1);
184
186
  }
185
187
  let c = this.ak;
186
188
  if (this.ags != 0) {
@@ -189,7 +191,7 @@ export let DataPieBaseChart = /*@__PURE__*/ (() => {
189
191
  this.ci.setCollisionMode(a, c);
190
192
  }
191
193
  }
192
- ag7(a, b) {
194
+ ag9(a, b) {
193
195
  let c = null;
194
196
  if (b == 34) {
195
197
  c = this.di(34);
@@ -197,30 +199,31 @@ export let DataPieBaseChart = /*@__PURE__*/ (() => {
197
199
  else {
198
200
  c = this.di(34);
199
201
  }
200
- if (this.ajn != null) {
201
- c.acm = this.ajn;
202
+ if (this.ajq != null) {
203
+ c.acm = this.ajq;
202
204
  }
203
205
  else {
204
206
  c.acm = a.getMemberPathFor(0);
205
207
  }
206
- if (this.ail != null) {
207
- c.adl = this.ail;
208
+ if (this.aio != null) {
209
+ c.ado = this.aio;
208
210
  }
211
+ c.ade = this.agw;
209
212
  c.yr = this.angleAxis;
210
213
  c.yw = this.valueAxis;
211
214
  c.g7 = true;
212
215
  c.ab6 = true;
213
- c.aas = this.ai7;
216
+ c.aas = this.aja;
214
217
  c.yj = this.ago;
215
- c.aap = this.ai0;
218
+ c.aap = this.ai3;
216
219
  c.yi = this.agn;
217
- c.aai = this.air;
220
+ c.aai = this.aiu;
218
221
  c.yg = this.agm;
219
- c.aam = this.ain;
222
+ c.aam = this.aiq;
220
223
  c.yh = this.agl;
221
- c.y5 = this.ag6;
222
- c.y6 = this.ag5;
223
- c.z4 = this.ai5;
224
+ c.y5 = this.ag8;
225
+ c.y6 = this.ag7;
226
+ c.z4 = this.ai8;
224
227
  return c;
225
228
  }
226
229
  zm() {
@@ -233,12 +236,12 @@ export let DataPieBaseChart = /*@__PURE__*/ (() => {
233
236
  this.angleAxis = new ProportionalCategoryAngleAxis();
234
237
  this.angleAxis.name = "angleAxis";
235
238
  let a = this.angleAxis;
236
- a.propertyChanged = delegateCombine(a.propertyChanged, runOn(this, this.aju));
239
+ a.propertyChanged = delegateCombine(a.propertyChanged, runOn(this, this.ajx));
237
240
  this.angleAxis.k2 = 0;
238
241
  this.valueAxis = new NumericRadiusAxis();
239
242
  this.valueAxis.name = "valueAxis";
240
243
  let b = this.valueAxis;
241
- b.propertyChanged = delegateCombine(b.propertyChanged, runOn(this, this.ajv));
244
+ b.propertyChanged = delegateCombine(b.propertyChanged, runOn(this, this.ajy));
242
245
  if (this.angleAxis.az == null) {
243
246
  this.angleAxis.az = new AxisLabelSettings();
244
247
  }
@@ -246,7 +249,7 @@ export let DataPieBaseChart = /*@__PURE__*/ (() => {
246
249
  this.valueAxis.az = new AxisLabelSettings();
247
250
  }
248
251
  }
249
- aju(a, b) {
252
+ ajx(a, b) {
250
253
  switch (b.propertyName) {
251
254
  case "ActualMinimumValue":
252
255
  this.v2("AngleAxisActualMinimum");
@@ -256,7 +259,7 @@ export let DataPieBaseChart = /*@__PURE__*/ (() => {
256
259
  break;
257
260
  }
258
261
  }
259
- ajv(a, b) {
262
+ ajy(a, b) {
260
263
  switch (b.propertyName) {
261
264
  case "ActualMinimumValue":
262
265
  this.v2("ValueAxisActualMinimum");
@@ -274,11 +277,11 @@ export let DataPieBaseChart = /*@__PURE__*/ (() => {
274
277
  }
275
278
  aet(a) {
276
279
  super.aet(a);
277
- a.lb = this.ahe;
278
- a.le = this.ahf;
279
- a.ny = this.aht;
280
- if (!isNaN_(this.ahv)) {
281
- a.nz = this.ahv;
280
+ a.lb = this.ahg;
281
+ a.le = this.ahh;
282
+ a.ny = this.ahv;
283
+ if (!isNaN_(this.ahx)) {
284
+ a.nz = this.ahx;
282
285
  }
283
286
  else {
284
287
  a.nz = 0.65;
@@ -286,14 +289,14 @@ export let DataPieBaseChart = /*@__PURE__*/ (() => {
286
289
  }
287
290
  aer(a) {
288
291
  super.aer(a);
289
- a.oa = this.aiw;
290
- a.nu = this.agy;
291
- a.n7 = this.ahu;
292
- if (!isNaN_(this.ahw)) {
293
- a.nb = this.ahw;
294
- }
295
- if (this.ag0 != 0) {
296
- if (this.ag0 == 1) {
292
+ a.oa = this.aiz;
293
+ a.nu = this.ag0;
294
+ a.n7 = this.ahw;
295
+ if (!isNaN_(this.ahy)) {
296
+ a.nb = this.ahy;
297
+ }
298
+ if (this.ag2 != 0) {
299
+ if (this.ag2 == 1) {
297
300
  a.ch = false;
298
301
  }
299
302
  else {
@@ -312,42 +315,42 @@ export let DataPieBaseChart = /*@__PURE__*/ (() => {
312
315
  });
313
316
  break;
314
317
  case "SliceLabelContentSeparator":
315
- this.ajq((d) => d.z4 = this.ai5);
318
+ this.ajt((d) => d.z4 = this.ai8);
316
319
  break;
317
320
  case "SliceLabelContentMode":
318
- this.ajq((d) => d.y5 = this.ag6);
321
+ this.ajt((d) => d.y5 = this.ag8);
319
322
  break;
320
323
  case "LegendSliceLabelContentMode":
321
- this.ajq((d) => d.y6 = this.ag5);
324
+ this.ajt((d) => d.y6 = this.ag7);
322
325
  break;
323
326
  case "SliceLabelFormat":
324
- this.ajq((d) => d.aas = this.ai7);
327
+ this.ajt((d) => d.aas = this.aja);
325
328
  break;
326
329
  case "SliceLabelFormatSpecifiers":
327
- this.ajq((d) => d.yj = this.ago);
330
+ this.ajt((d) => d.yj = this.ago);
328
331
  break;
329
332
  case "OthersSliceLabelFormat":
330
- this.ajq((d) => d.aap = this.ai0);
333
+ this.ajt((d) => d.aap = this.ai3);
331
334
  break;
332
335
  case "OthersSliceLabelFormatSpecifiers":
333
- this.ajq((d) => d.yi = this.agn);
336
+ this.ajt((d) => d.yi = this.agn);
334
337
  break;
335
338
  case "LegendSliceLabelFormat":
336
- this.ajq((d) => d.aai = this.ai7);
339
+ this.ajt((d) => d.aai = this.aja);
337
340
  break;
338
341
  case "LegendSliceLabelFormatSpecifiers":
339
- this.ajq((d) => d.yg = this.ago);
342
+ this.ajt((d) => d.yg = this.ago);
340
343
  break;
341
344
  case "LegendOthersSliceLabelFormat":
342
- this.ajq((d) => d.aam = this.ain);
345
+ this.ajt((d) => d.aam = this.aiq);
343
346
  break;
344
347
  case "LegendOthersSliceLabelFormatSpecifiers":
345
- this.ajq((d) => d.yh = this.agl);
348
+ this.ajt((d) => d.yh = this.agl);
346
349
  break;
347
350
  case "SweepDirection":
348
351
  if (this.angleAxis != null) {
349
- if (this.ag0 != 0) {
350
- if (this.ag0 == 1) {
352
+ if (this.ag2 != 0) {
353
+ if (this.ag2 == 1) {
351
354
  this.angleAxis.ch = false;
352
355
  }
353
356
  else {
@@ -361,45 +364,45 @@ export let DataPieBaseChart = /*@__PURE__*/ (() => {
361
364
  break;
362
365
  case "StartAngle":
363
366
  if (this.angleAxis != null) {
364
- this.angleAxis.nb = isNaN_(this.ahw) ? 0 : this.ahw;
367
+ this.angleAxis.nb = isNaN_(this.ahy) ? 0 : this.ahy;
365
368
  }
366
369
  break;
367
370
  case "RadiusExtent":
368
371
  if (this.valueAxis != null) {
369
- this.valueAxis.nz = isNaN_(this.ahv) ? 0.65 : this.ahv;
372
+ this.valueAxis.nz = isNaN_(this.ahx) ? 0.65 : this.ahx;
370
373
  }
371
374
  break;
372
375
  case "OthersCategoryText":
373
376
  if (this.angleAxis != null) {
374
- this.angleAxis.oa = this.aiw;
377
+ this.angleAxis.oa = this.aiz;
375
378
  }
376
379
  break;
377
380
  case "OthersCategoryType":
378
381
  if (this.angleAxis != null) {
379
- this.angleAxis.nu = this.agy;
382
+ this.angleAxis.nu = this.ag0;
380
383
  }
381
384
  break;
382
385
  case "OthersCategoryThreshold":
383
386
  if (this.angleAxis != null) {
384
- this.angleAxis.n7 = this.ahu;
387
+ this.angleAxis.n7 = this.ahw;
385
388
  }
386
389
  break;
387
390
  case "InnerExtent":
388
391
  if (this.valueAxis != null) {
389
- this.valueAxis.ny = this.aht;
392
+ this.valueAxis.ny = this.ahv;
390
393
  }
391
394
  break;
392
395
  case "LightSliceLabelColor":
393
396
  this.ui((d) => {
394
397
  if (d.em) {
395
- this.ci.setCalloutLightColor(d, this.ajz);
398
+ this.ci.setCalloutLightColor(d, this.aj2);
396
399
  }
397
400
  });
398
401
  break;
399
402
  case "DarkSliceLabelColor":
400
403
  this.ui((d) => {
401
404
  if (d.em) {
402
- this.ci.setCalloutDarkColor(d, this.ajy);
405
+ this.ci.setCalloutDarkColor(d, this.aj1);
403
406
  }
404
407
  });
405
408
  break;
@@ -408,10 +411,10 @@ export let DataPieBaseChart = /*@__PURE__*/ (() => {
408
411
  this.um((d) => {
409
412
  if (typeCast(AnchoredRadialSeries.$, d) !== null) {
410
413
  let e = d;
411
- e.acm = this.ajn;
414
+ e.acm = this.ajq;
412
415
  }
413
416
  });
414
- this.angleAxis.og = this.ajn;
417
+ this.angleAxis.og = this.ajq;
415
418
  }
416
419
  else {
417
420
  this.vr();
@@ -419,7 +422,7 @@ export let DataPieBaseChart = /*@__PURE__*/ (() => {
419
422
  break;
420
423
  case "LabelMemberPath":
421
424
  if (c != null) {
422
- let d = this.aij;
425
+ let d = this.ail;
423
426
  this.angleAxis.f1 = d;
424
427
  }
425
428
  else {
@@ -427,51 +430,51 @@ export let DataPieBaseChart = /*@__PURE__*/ (() => {
427
430
  }
428
431
  break;
429
432
  case "AngleAxisInterval":
430
- this.angleAxis.m8 = this.ahr;
433
+ this.angleAxis.m8 = this.aht;
431
434
  break;
432
435
  case "ValueAxisInterval":
433
- this.valueAxis.l2 = this.ahz;
436
+ this.valueAxis.l2 = this.ah1;
434
437
  break;
435
438
  case "ValueAxisFavorLabellingScaleEnd":
436
- this.valueAxis.le = this.ahf;
439
+ this.valueAxis.le = this.ahh;
437
440
  break;
438
441
  case "ValueAxisAutoRangeBufferMode":
439
442
  this.valueAxis.kv = this.agq;
440
443
  break;
441
444
  case "AngleAxisMinorInterval":
442
- this.angleAxis.m9 = this.ahs;
445
+ this.angleAxis.m9 = this.ahu;
443
446
  break;
444
447
  case "ValueAxisMinorInterval":
445
- this.valueAxis.l7 = this.ah2;
448
+ this.valueAxis.l7 = this.ah4;
446
449
  break;
447
450
  case "ValueAxisIsLogarithmic":
448
- this.valueAxis.lj = this.ahg;
451
+ this.valueAxis.lj = this.ahi;
449
452
  break;
450
453
  case "ValueAxisLogarithmBase":
451
- this.valueAxis.ma = this.ah4;
454
+ this.valueAxis.ma = this.ah6;
452
455
  break;
453
456
  case "ValueAxisMinimumValue":
454
- this.valueAxis.l6 = this.ah1;
457
+ this.valueAxis.l6 = this.ah3;
455
458
  break;
456
459
  case "ValueAxisMaximumValue":
457
- this.valueAxis.l5 = this.ah0;
460
+ this.valueAxis.l5 = this.ah2;
458
461
  break;
459
462
  case "MarkerCollision":
460
463
  this.un((e, f) => this.t3(e, f));
461
464
  break;
462
465
  case "ValueAxisAbbreviateLargeNumbers":
463
- this.ae0((e) => e.lb = this.ahe);
466
+ this.ae0((e) => e.lb = this.ahg);
464
467
  break;
465
468
  }
466
469
  }
467
- get ai7() {
468
- return this.aic;
470
+ get aja() {
471
+ return this.aie;
469
472
  }
470
- set ai7(a) {
471
- let b = this.ai7;
473
+ set aja(a) {
474
+ let b = this.aja;
472
475
  if (a != b) {
473
- this.aic = a;
474
- this.vl("SliceLabelFormat", b, this.ai7);
476
+ this.aie = a;
477
+ this.vl("SliceLabelFormat", b, this.aja);
475
478
  }
476
479
  }
477
480
  get ago() {
@@ -484,14 +487,14 @@ export let DataPieBaseChart = /*@__PURE__*/ (() => {
484
487
  this.vl("SliceLabelFormatSpecifiers", b, this.ago);
485
488
  }
486
489
  }
487
- get air() {
488
- return this.ah8;
490
+ get aiu() {
491
+ return this.aia;
489
492
  }
490
- set air(a) {
491
- let b = this.air;
493
+ set aiu(a) {
494
+ let b = this.aiu;
492
495
  if (a != b) {
493
- this.ah8 = a;
494
- this.vl("LegendSliceLabelFormat", b, this.air);
496
+ this.aia = a;
497
+ this.vl("LegendSliceLabelFormat", b, this.aiu);
495
498
  }
496
499
  }
497
500
  get agm() {
@@ -504,14 +507,14 @@ export let DataPieBaseChart = /*@__PURE__*/ (() => {
504
507
  this.vl("LegendSliceLabelFormatSpecifiers", b, this.agm);
505
508
  }
506
509
  }
507
- get ai0() {
508
- return this.aia;
510
+ get ai3() {
511
+ return this.aic;
509
512
  }
510
- set ai0(a) {
511
- let b = this.ai0;
513
+ set ai3(a) {
514
+ let b = this.ai3;
512
515
  if (a != b) {
513
- this.aia = a;
514
- this.vl("OthersSliceLabelFormat", b, this.ai0);
516
+ this.aic = a;
517
+ this.vl("OthersSliceLabelFormat", b, this.ai3);
515
518
  }
516
519
  }
517
520
  get agn() {
@@ -524,14 +527,14 @@ export let DataPieBaseChart = /*@__PURE__*/ (() => {
524
527
  this.vl("OthersSliceLabelFormatSpecifiers", b, this.agn);
525
528
  }
526
529
  }
527
- get ain() {
528
- return this.ah7;
530
+ get aiq() {
531
+ return this.ah9;
529
532
  }
530
- set ain(a) {
531
- let b = this.ain;
533
+ set aiq(a) {
534
+ let b = this.aiq;
532
535
  if (a != b) {
533
- this.ah7 = a;
534
- this.vl("LegendOthersSliceLabelFormat", b, this.ain);
536
+ this.ah9 = a;
537
+ this.vl("LegendOthersSliceLabelFormat", b, this.aiq);
535
538
  }
536
539
  }
537
540
  get agl() {
@@ -544,24 +547,24 @@ export let DataPieBaseChart = /*@__PURE__*/ (() => {
544
547
  this.vl("LegendOthersSliceLabelFormatSpecifiers", b, this.agl);
545
548
  }
546
549
  }
547
- get aht() {
548
- return this.ahj;
550
+ get ahv() {
551
+ return this.ahl;
549
552
  }
550
- set aht(a) {
551
- let b = this.aht;
553
+ set ahv(a) {
554
+ let b = this.ahv;
552
555
  if (a != b) {
553
- this.ahj = a;
554
- this.vl("InnerExtent", b, this.aht);
556
+ this.ahl = a;
557
+ this.vl("InnerExtent", b, this.ahv);
555
558
  }
556
559
  }
557
- get ag0() {
558
- return this.agz;
560
+ get ag2() {
561
+ return this.ag1;
559
562
  }
560
- set ag0(a) {
561
- let b = this.ag0;
563
+ set ag2(a) {
564
+ let b = this.ag2;
562
565
  if (a != b) {
563
- this.agz = a;
564
- this.vl("SweepDirection", enumGetBox(PieChartSweepDirection_$type, b), enumGetBox(PieChartSweepDirection_$type, this.ag0));
566
+ this.ag1 = a;
567
+ this.vl("SweepDirection", enumGetBox(PieChartSweepDirection_$type, b), enumGetBox(PieChartSweepDirection_$type, this.ag2));
565
568
  }
566
569
  }
567
570
  get ags() {
@@ -574,94 +577,104 @@ export let DataPieBaseChart = /*@__PURE__*/ (() => {
574
577
  this.vl("SliceLabelPositionMode", enumGetBox(CalloutCollisionMode_$type, b), enumGetBox(CalloutCollisionMode_$type, this.ags));
575
578
  }
576
579
  }
577
- get ajz() {
578
- return this.ajx;
580
+ get aj2() {
581
+ return this.aj0;
579
582
  }
580
- set ajz(a) {
581
- let b = this.ajz;
583
+ set aj2(a) {
584
+ let b = this.aj2;
582
585
  if (a != b) {
583
- this.ajx = a;
584
- this.vl("LightSliceLabelColor", b, this.ajz);
586
+ this.aj0 = a;
587
+ this.vl("LightSliceLabelColor", b, this.aj2);
585
588
  }
586
589
  }
587
- get ajy() {
588
- return this.ajw;
590
+ get aj1() {
591
+ return this.ajz;
589
592
  }
590
- set ajy(a) {
591
- let b = this.ajy;
593
+ set aj1(a) {
594
+ let b = this.aj1;
592
595
  if (a != b) {
593
- this.ajw = a;
594
- this.vl("DarkSliceLabelColor", b, this.ajy);
596
+ this.ajz = a;
597
+ this.vl("DarkSliceLabelColor", b, this.aj1);
595
598
  }
596
599
  }
597
- get ajn() {
598
- return this.aid;
600
+ get ajq() {
601
+ return this.aif;
599
602
  }
600
- set ajn(a) {
601
- let b = this.ajn;
603
+ set ajq(a) {
604
+ let b = this.ajq;
602
605
  if (a != b) {
603
- this.aid = a;
604
- this.vl("ValueMemberPath", b, this.ajn);
606
+ this.aif = a;
607
+ this.vl("ValueMemberPath", b, this.ajq);
605
608
  }
606
609
  }
607
- get ail() {
608
- return this.ah6;
610
+ get aio() {
611
+ return this.ah8;
609
612
  }
610
- set ail(a) {
611
- let b = this.ah6;
613
+ set aio(a) {
614
+ let b = this.ah8;
612
615
  if (a != b) {
613
- this.ah6 = a;
614
- this.vl("LegendLabelMemberPath", b, this.ah6);
616
+ this.ah8 = a;
617
+ this.vl("LegendLabelMemberPath", b, this.ah8);
615
618
  }
616
619
  }
617
- get agy() {
618
- return this.agx;
620
+ get agw() {
621
+ return this.agv;
619
622
  }
620
- set agy(a) {
621
- let b = this.agy;
623
+ set agw(a) {
624
+ let b = this.agv;
622
625
  if (a != b) {
623
- this.agx = a;
624
- this.vl("OthersCategoryType", enumGetBox(OthersCategoryType_$type, b), enumGetBox(OthersCategoryType_$type, this.agy));
626
+ this.agv = a;
627
+ this.vl("LegendEmptyValuesMode", enumGetBox(LegendEmptyValuesMode_$type, b), this.ah8);
625
628
  }
626
629
  }
627
- get ahu() {
628
- return this.ahk;
630
+ get ag0() {
631
+ return this.agz;
629
632
  }
630
- set ahu(a) {
631
- let b = this.ahu;
633
+ set ag0(a) {
634
+ let b = this.ag0;
632
635
  if (a != b) {
633
- this.ahk = a;
634
- this.vl("OthersCategoryThreshold", b, this.ahu);
636
+ this.agz = a;
637
+ this.vl("OthersCategoryType", enumGetBox(OthersCategoryType_$type, b), enumGetBox(OthersCategoryType_$type, this.ag0));
635
638
  }
636
639
  }
637
- get aiw() {
638
- return this.ah9;
640
+ get ahw() {
641
+ return this.ahm;
639
642
  }
640
- set aiw(a) {
641
- let b = this.aiw;
643
+ set ahw(a) {
644
+ let b = this.ahw;
642
645
  if (a != b) {
643
- this.ah9 = a;
644
- this.vl("OthersCategoryText", b, this.aiw);
646
+ this.ahm = a;
647
+ this.vl("OthersCategoryThreshold", b, this.ahw);
645
648
  }
646
649
  }
647
- get aij() {
648
- return this.ah5;
650
+ get aiz() {
651
+ return this.aib;
649
652
  }
650
- set aij(a) {
651
- let b = this.aij;
653
+ set aiz(a) {
654
+ let b = this.aiz;
652
655
  if (a != b) {
653
- this.ah5 = a;
654
- this.vl("LabelMemberPath", b, this.aij);
656
+ this.aib = a;
657
+ this.vl("OthersCategoryText", b, this.aiz);
655
658
  }
656
659
  }
657
- get ahf() {
658
- return this.aha;
660
+ get ail() {
661
+ return this.ah7;
659
662
  }
660
- set ahf(a) {
661
- let b = this.ahf;
663
+ set ail(a) {
664
+ let b = this.ail;
662
665
  if (a != b) {
663
- this.aha = a;
664
- this.vl("ValueAxisFavorLabellingScaleEnd", b, this.ahf);
666
+ this.ah7 = a;
667
+ this.vl("LabelMemberPath", b, this.ail);
668
+ }
669
+ }
670
+ get ahh() {
671
+ return this.ahc;
672
+ }
673
+ set ahh(a) {
674
+ let b = this.ahh;
675
+ if (a != b) {
676
+ this.ahc = a;
677
+ this.vl("ValueAxisFavorLabellingScaleEnd", b, this.ahh);
665
678
  }
666
679
  }
667
680
  get agq() {
@@ -674,74 +687,64 @@ export let DataPieBaseChart = /*@__PURE__*/ (() => {
674
687
  this.vl("ValueAxisAutoRangeBufferMode", enumGetBox(AxisRangeBufferMode_$type, b), enumGetBox(AxisRangeBufferMode_$type, this.agq));
675
688
  }
676
689
  }
677
- get ahr() {
678
- return this.ahh;
679
- }
680
- set ahr(a) {
681
- let b = this.ahr;
682
- if (a != b) {
683
- this.ahh = a;
684
- this.vl("AngleAxisInterval", b, this.ahr);
685
- }
686
- }
687
- get ahs() {
688
- return this.ahi;
690
+ get aht() {
691
+ return this.ahj;
689
692
  }
690
- set ahs(a) {
691
- let b = this.ahs;
693
+ set aht(a) {
694
+ let b = this.aht;
692
695
  if (a != b) {
693
- this.ahi = a;
694
- this.vl("AngleAxisMinorInterval", b, this.ahs);
696
+ this.ahj = a;
697
+ this.vl("AngleAxisInterval", b, this.aht);
695
698
  }
696
699
  }
697
- get ahz() {
698
- return this.ahn;
700
+ get ahu() {
701
+ return this.ahk;
699
702
  }
700
- set ahz(a) {
701
- let b = this.ahz;
703
+ set ahu(a) {
704
+ let b = this.ahu;
702
705
  if (a != b) {
703
- this.ahn = a;
704
- this.vl("ValueAxisInterval", b, this.ahz);
706
+ this.ahk = a;
707
+ this.vl("AngleAxisMinorInterval", b, this.ahu);
705
708
  }
706
709
  }
707
- get ahg() {
708
- return this.ahb;
710
+ get ah1() {
711
+ return this.ahp;
709
712
  }
710
- set ahg(a) {
711
- let b = this.ahg;
713
+ set ah1(a) {
714
+ let b = this.ah1;
712
715
  if (a != b) {
713
- this.ahb = a;
714
- this.vl("ValueAxisIsLogarithmic", b, this.ahg);
716
+ this.ahp = a;
717
+ this.vl("ValueAxisInterval", b, this.ah1);
715
718
  }
716
719
  }
717
- get ah4() {
718
- return this.ah3;
720
+ get ahi() {
721
+ return this.ahd;
719
722
  }
720
- set ah4(a) {
721
- let b = this.ah4;
723
+ set ahi(a) {
724
+ let b = this.ahi;
722
725
  if (a != b) {
723
- this.ah3 = a;
724
- this.vl("ValueAxisLogarithmBase", b, this.ah4);
726
+ this.ahd = a;
727
+ this.vl("ValueAxisIsLogarithmic", b, this.ahi);
725
728
  }
726
729
  }
727
- get ah1() {
728
- return this.ahp;
730
+ get ah6() {
731
+ return this.ah5;
729
732
  }
730
- set ah1(a) {
731
- let b = this.ah1;
733
+ set ah6(a) {
734
+ let b = this.ah6;
732
735
  if (a != b) {
733
- this.ahp = a;
734
- this.vl("ValueAxisMinimumValue", b, this.ah1);
736
+ this.ah5 = a;
737
+ this.vl("ValueAxisLogarithmBase", b, this.ah6);
735
738
  }
736
739
  }
737
- get ah0() {
738
- return this.aho;
740
+ get ah3() {
741
+ return this.ahr;
739
742
  }
740
- set ah0(a) {
741
- let b = this.ah0;
743
+ set ah3(a) {
744
+ let b = this.ah3;
742
745
  if (a != b) {
743
- this.aho = a;
744
- this.vl("ValueAxisMaximumValue", b, this.ah0);
746
+ this.ahr = a;
747
+ this.vl("ValueAxisMinimumValue", b, this.ah3);
745
748
  }
746
749
  }
747
750
  get ah2() {
@@ -751,83 +754,93 @@ export let DataPieBaseChart = /*@__PURE__*/ (() => {
751
754
  let b = this.ah2;
752
755
  if (a != b) {
753
756
  this.ahq = a;
754
- this.vl("ValueAxisMinorInterval", b, this.ah2);
757
+ this.vl("ValueAxisMaximumValue", b, this.ah2);
755
758
  }
756
759
  }
757
- get ahy() {
760
+ get ah4() {
761
+ return this.ahs;
762
+ }
763
+ set ah4(a) {
764
+ let b = this.ah4;
765
+ if (a != b) {
766
+ this.ahs = a;
767
+ this.vl("ValueAxisMinorInterval", b, this.ah4);
768
+ }
769
+ }
770
+ get ah0() {
758
771
  return this.valueAxis.ly;
759
772
  }
760
- get ahx() {
773
+ get ahz() {
761
774
  return this.valueAxis.lx;
762
775
  }
763
- get ahv() {
764
- return this.ahl;
776
+ get ahx() {
777
+ return this.ahn;
765
778
  }
766
- set ahv(a) {
767
- let b = this.ahv;
779
+ set ahx(a) {
780
+ let b = this.ahx;
768
781
  if (a != b) {
769
- this.ahl = a;
770
- this.vl("RadiusExtent", b, this.ahv);
782
+ this.ahn = a;
783
+ this.vl("RadiusExtent", b, this.ahx);
771
784
  }
772
785
  }
773
- get ahw() {
774
- return this.ahm;
786
+ get ahy() {
787
+ return this.aho;
775
788
  }
776
- set ahw(a) {
777
- let b = this.ahw;
789
+ set ahy(a) {
790
+ let b = this.ahy;
778
791
  if (a != b) {
779
- this.ahm = a;
780
- this.vl("StartAngle", b, this.ahw);
792
+ this.aho = a;
793
+ this.vl("StartAngle", b, this.ahy);
781
794
  }
782
795
  }
783
- get ai5() {
784
- return this.aib;
796
+ get ai8() {
797
+ return this.aid;
785
798
  }
786
- set ai5(a) {
787
- let b = this.ai5;
799
+ set ai8(a) {
800
+ let b = this.ai8;
788
801
  if (a != b) {
789
- this.aib = a;
790
- this.vl("SliceLabelContentSeparator", b, this.ai5);
802
+ this.aid = a;
803
+ this.vl("SliceLabelContentSeparator", b, this.ai8);
791
804
  }
792
805
  }
793
- get ag6() {
794
- return this.ag4;
806
+ get ag8() {
807
+ return this.ag6;
795
808
  }
796
- set ag6(a) {
797
- let b = this.ag6;
809
+ set ag8(a) {
810
+ let b = this.ag8;
798
811
  if (a != b) {
799
- this.ag4 = a;
800
- this.vl("SliceLabelContentMode", enumGetBox(RadialLabelMode_$type, b), enumGetBox(RadialLabelMode_$type, this.ag6));
812
+ this.ag6 = a;
813
+ this.vl("SliceLabelContentMode", enumGetBox(RadialLabelMode_$type, b), enumGetBox(RadialLabelMode_$type, this.ag8));
801
814
  }
802
815
  }
803
- get ag5() {
804
- return this.ag3;
816
+ get ag7() {
817
+ return this.ag5;
805
818
  }
806
- set ag5(a) {
807
- let b = this.ag5;
819
+ set ag7(a) {
820
+ let b = this.ag7;
808
821
  if (a != b) {
809
- this.ag3 = a;
810
- this.vl("LegendSliceLabelContentMode", enumGetBox(RadialLabelMode_$type, b), enumGetBox(RadialLabelMode_$type, this.ag5));
822
+ this.ag5 = a;
823
+ this.vl("LegendSliceLabelContentMode", enumGetBox(RadialLabelMode_$type, b), enumGetBox(RadialLabelMode_$type, this.ag7));
811
824
  }
812
825
  }
813
- get ahc() {
814
- return this.ag8;
826
+ get ahe() {
827
+ return this.aha;
815
828
  }
816
- set ahc(a) {
817
- let b = this.ahc;
829
+ set ahe(a) {
830
+ let b = this.ahe;
818
831
  if (a != b) {
819
- this.ag8 = a;
820
- this.vl("AngleAxisFavorLabellingScaleEnd", b, this.ahc);
832
+ this.aha = a;
833
+ this.vl("AngleAxisFavorLabellingScaleEnd", b, this.ahe);
821
834
  }
822
835
  }
823
- get ahe() {
824
- return this.ag9;
836
+ get ahg() {
837
+ return this.ahb;
825
838
  }
826
- set ahe(a) {
827
- let b = this.ahe;
839
+ set ahg(a) {
840
+ let b = this.ahg;
828
841
  if (a != b) {
829
- this.ag9 = a;
830
- this.vl("ValueAxisAbbreviateLargeNumbers", b, this.ahe);
842
+ this.ahb = a;
843
+ this.vl("ValueAxisAbbreviateLargeNumbers", b, this.ahg);
831
844
  }
832
845
  }
833
846
  get agu() {