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
@@ -6,7 +6,8 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
6
6
  */
7
7
  import { AnchoredRadialSeries } from "./AnchoredRadialSeries";
8
8
  import { DependencyProperty } from "igniteui-webcomponents-core";
9
- import { Point_$type, runOn, markType, markDep, fromEnum } from "igniteui-webcomponents-core";
9
+ import { enumGetBox, Point_$type, runOn, typeCast, markType, markDep, fromEnum } from "igniteui-webcomponents-core";
10
+ import { LegendEmptyValuesMode_$type } from "igniteui-webcomponents-core";
10
11
  import { Defaults } from "./Defaults";
11
12
  import { Pool$1 } from "igniteui-webcomponents-core";
12
13
  import { Path } from "igniteui-webcomponents-core";
@@ -23,10 +24,12 @@ import { PieSliceCollisionGeometry } from "igniteui-webcomponents-core";
23
24
  import { Size } from "igniteui-webcomponents-core";
24
25
  import { GeometryUtil } from "igniteui-webcomponents-core";
25
26
  import { MathUtil } from "igniteui-webcomponents-core";
27
+ import { ProportionalCategoryAngleAxis } from "./ProportionalCategoryAngleAxis";
28
+ import { SeriesPointOfInterest } from "./SeriesPointOfInterest";
29
+ import { DataContext } from "igniteui-webcomponents-core";
26
30
  import { PropertyMetadata } from "igniteui-webcomponents-core";
27
31
  import { intDivide, isNaN_ } from "igniteui-webcomponents-core";
28
32
  import { AnchoredRadialSeriesView } from "./AnchoredRadialSeriesView";
29
- import { DataContext } from "igniteui-webcomponents-core";
30
33
  /**
31
34
  * @hidden
32
35
  */
@@ -52,32 +55,43 @@ export let RadialPieSeries = /*@__PURE__*/ (() => {
52
55
  }
53
56
  qx(a) {
54
57
  super.qx(a);
55
- this.add = a;
58
+ this.adf = a;
56
59
  }
57
60
  constructor() {
58
61
  super();
59
- this.ade = null;
60
- this.adj = null;
62
+ this.adg = null;
63
+ this.adl = null;
64
+ this.add = 0;
61
65
  this.ab = RadialPieSeries.$;
62
66
  }
63
- get adf() {
64
- return this.ade;
67
+ get adh() {
68
+ return this.adg;
69
+ }
70
+ set adh(a) {
71
+ if (this.adg != a) {
72
+ let b = this.adh;
73
+ this.adg = a;
74
+ this.raisePropertyChanged("LegendLabelColumn", b, this.adh);
75
+ }
76
+ }
77
+ get ado() {
78
+ return this.adl;
65
79
  }
66
- set adf(a) {
67
- if (this.ade != a) {
68
- let b = this.adf;
69
- this.ade = a;
70
- this.raisePropertyChanged("LegendLabelColumn", b, this.adf);
80
+ set ado(a) {
81
+ if (this.adl != a) {
82
+ let b = this.adl;
83
+ this.adl = a;
84
+ this.raisePropertyChanged("LegendLabelMemberPath", b, this.adl);
71
85
  }
72
86
  }
73
- get adl() {
74
- return this.adj;
87
+ get ade() {
88
+ return this.add;
75
89
  }
76
- set adl(a) {
77
- if (this.adj != a) {
78
- let b = this.adj;
79
- this.adj = a;
80
- this.raisePropertyChanged("LegendLabelMemberPath", b, this.adj);
90
+ set ade(a) {
91
+ if (this.add != a) {
92
+ let b = this.add;
93
+ this.add = a;
94
+ this.raisePropertyChanged("LegendEmptyValuesMode", enumGetBox(LegendEmptyValuesMode_$type, b), enumGetBox(LegendEmptyValuesMode_$type, this.add));
81
95
  }
82
96
  }
83
97
  preferredCategoryMode(a) {
@@ -120,7 +134,7 @@ export let RadialPieSeries = /*@__PURE__*/ (() => {
120
134
  }
121
135
  let p = o.f._inner[b][0];
122
136
  let q = Math.min(o.f._inner[b][2], h.maxLength);
123
- return this.adg(d, e, f, p - (m * 0.5), p + (m * 0.5), l, q, i);
137
+ return this.adi(d, e, f, p - (m * 0.5), p + (m * 0.5), l, q, i);
124
138
  }
125
139
  }
126
140
  get_eb() {
@@ -148,15 +162,15 @@ export let RadialPieSeries = /*@__PURE__*/ (() => {
148
162
  let m = this.yr.k5(d, e, f);
149
163
  let n = this.yr.cl;
150
164
  let o = { $type: Point_$type, x: 0.5, y: 0.5 };
151
- let p = this.adh;
152
- let q = this.adi;
165
+ let p = this.adj;
166
+ let q = this.adk;
153
167
  let r = (p > 0 && q > 0);
154
168
  let s = this.abx.count;
155
169
  this.y7.a2(this, this.zo(), runOn(this, this.yf), this.zx(b), this.zy(b));
156
- this.y7.r = this.adh;
157
- this.y7.s = this.adi;
158
- this.y7.k = this.adh;
159
- this.y7.l = this.adi;
170
+ this.y7.r = this.adj;
171
+ this.y7.s = this.adk;
172
+ this.y7.k = this.adj;
173
+ this.y7.l = this.adk;
160
174
  let t = false;
161
175
  let u = this.y7.b;
162
176
  if (u != null) {
@@ -198,10 +212,10 @@ export let RadialPieSeries = /*@__PURE__*/ (() => {
198
212
  r = (ah > 0 && ai > 0);
199
213
  let aj = null;
200
214
  if (r) {
201
- aj = this.adr(d, e, f, aa - (m * 0.5), aa + (m * 0.5), l, ab, o, ah, ai);
215
+ aj = this.adu(d, e, f, aa - (m * 0.5), aa + (m * 0.5), l, ab, o, ah, ai);
202
216
  }
203
217
  else {
204
- aj = this.ads(d, e, f, aa - (m * 0.5), aa + (m * 0.5), l, ab, o);
218
+ aj = this.adv(d, e, f, aa - (m * 0.5), aa + (m * 0.5), l, ab, o);
205
219
  }
206
220
  ag.an = aj;
207
221
  this.y7.ad(ag, false, false, false, false);
@@ -215,7 +229,7 @@ export let RadialPieSeries = /*@__PURE__*/ (() => {
215
229
  c.c6.count = x;
216
230
  c.db();
217
231
  }
218
- ads(a, b, c, d, e, f, g, h) {
232
+ adv(a, b, c, d, e, f, g, h) {
219
233
  let i = SliceCoords.b(a, b, c, d, e, f, g, h);
220
234
  let j = new PathFigure();
221
235
  j._startPoint = i.d;
@@ -250,7 +264,7 @@ export let RadialPieSeries = /*@__PURE__*/ (() => {
250
264
  k.c.add(j);
251
265
  return k;
252
266
  }
253
- adg(a, b, c, d, e, f, g, h) {
267
+ adi(a, b, c, d, e, f, g, h) {
254
268
  let i = SliceCoords.b(a, b, c, d, e, f, g, h);
255
269
  if (isNaN_(i.n.width) || isNaN_(d) || isNaN_(e)) {
256
270
  return null;
@@ -259,10 +273,10 @@ export let RadialPieSeries = /*@__PURE__*/ (() => {
259
273
  let k = ViewportUtils.i(0.5, a, b, c);
260
274
  return new PieSliceCollisionGeometry(j, k, i.n.width, i.m.width, d, e);
261
275
  }
262
- adr(a, b, c, d, e, f, g, h, i, j) {
276
+ adu(a, b, c, d, e, f, g, h, i, j) {
263
277
  let k = SliceCoords.a(a, b, c, d, e, f, g, h, i, j);
264
278
  if (k == null) {
265
- return this.ads(a, b, c, d, e, f, g, h);
279
+ return this.adv(a, b, c, d, e, f, g, h);
266
280
  }
267
281
  let l = new PathFigure();
268
282
  l._startPoint = k.d;
@@ -344,20 +358,20 @@ export let RadialPieSeries = /*@__PURE__*/ (() => {
344
358
  break;
345
359
  case "FastItemsSource":
346
360
  if (c != null) {
347
- if (this.adf != null) {
348
- c.deregisterColumn(this.adf);
361
+ if (this.adh != null) {
362
+ c.deregisterColumn(this.adh);
349
363
  }
350
364
  }
351
365
  if (d != null) {
352
- if (this.adl != null) {
353
- this.adf = this.dk(this.adl);
366
+ if (this.ado != null) {
367
+ this.adh = this.dk(this.ado);
354
368
  }
355
369
  }
356
370
  break;
357
371
  case "LegendLabelMemberPath":
358
372
  if (this.dl != null) {
359
- this.dl.deregisterColumn(this.adf);
360
- this.adf = this.dk(this.adl);
373
+ this.dl.deregisterColumn(this.adh);
374
+ this.adh = this.dk(this.ado);
361
375
  this.pc();
362
376
  this.pq();
363
377
  }
@@ -365,62 +379,123 @@ export let RadialPieSeries = /*@__PURE__*/ (() => {
365
379
  }
366
380
  }
367
381
  wh(a) {
368
- let b = this.add.by;
369
- let c = this.add.bx;
370
- let d = this.getEffectiveViewport1(this.add);
371
- let e = this.wd(this.add);
382
+ let b = this.adf.by;
383
+ let c = this.adf.bx;
384
+ let d = this.getEffectiveViewport1(this.adf);
385
+ let e = this.wd(this.adf);
372
386
  let f = this.yw.k2(c, b, d, e);
373
387
  let g = { $type: Point_$type, x: 0.5, y: 0.5 };
374
388
  let h = GeometryUtil.i(g, a);
375
389
  let i = this.y1.f;
376
- for (let j = 0; j < i.count; j++) {
377
- let k = i._inner[j][0];
378
- let l = Math.min(i._inner[j][2], f.maxLength);
379
- let m = i._inner[j][3];
380
- if (h >= k - (m * 0.5) && h <= k + (m * 0.5)) {
381
- let n = Math.max(0, 0.5 * this.yw.no);
382
- let o = n;
383
- o = Math.max(o, f.minLength);
384
- let p = SliceCoords.b(b, c, d, k - (m * 0.5), k + (m * 0.5), o, l, g);
385
- let q = GeometryUtil.q({ $type: Point_$type, x: ViewportUtils.e(g.x, b, c, d), y: ViewportUtils.i(g.y, b, c, d) }, MathUtil.f(k), p.n.width);
386
- let r = 1.7976931348623157E+308;
390
+ let j = 0;
391
+ for (let k = 0; k < i.count; k++) {
392
+ let l = i._inner[k][0];
393
+ let m = Math.min(i._inner[k][2], f.maxLength);
394
+ let n = i._inner[k][3];
395
+ if (isNaN_(n)) {
396
+ continue;
397
+ }
398
+ l = l % 6.28318531;
399
+ if (l < 0) {
400
+ l += 6.28318531;
401
+ }
402
+ if (h >= l - (n * 0.5) && h <= l + (n * 0.5)) {
403
+ let o = Math.max(0, 0.5 * this.yw.no);
404
+ let p = o;
405
+ p = Math.max(p, f.minLength);
406
+ let q = SliceCoords.b(b, c, d, l - (n * 0.5), l + (n * 0.5), p, m, g);
407
+ let r = GeometryUtil.q({ $type: Point_$type, x: ViewportUtils.e(g.x, b, c, d), y: ViewportUtils.i(g.y, b, c, d) }, MathUtil.f(l), q.n.width);
387
408
  let s = 1.7976931348623157E+308;
388
- let t = -1.7976931348623157E+308;
409
+ let t = 1.7976931348623157E+308;
389
410
  let u = -1.7976931348623157E+308;
390
- r = Math.min(r, p.d.x);
391
- r = Math.min(r, p.f.x);
392
- r = Math.min(r, p.h.x);
393
- r = Math.min(r, p.j.x);
394
- r = Math.min(r, q.x);
395
- s = Math.min(s, p.d.y);
396
- s = Math.min(s, p.f.y);
397
- s = Math.min(s, p.h.y);
398
- s = Math.min(s, p.j.y);
399
- s = Math.min(s, q.y);
400
- t = Math.max(t, p.d.x);
401
- t = Math.max(t, p.f.x);
402
- t = Math.max(t, p.h.x);
403
- t = Math.max(t, p.j.x);
404
- t = Math.max(t, q.x);
405
- u = Math.max(u, p.d.y);
406
- u = Math.max(u, p.f.y);
407
- u = Math.max(u, p.h.y);
408
- u = Math.max(u, p.j.y);
409
- u = Math.max(u, q.y);
410
- return new Rect(0, r, s, t - r, u - s);
411
+ let v = -1.7976931348623157E+308;
412
+ s = Math.min(s, q.d.x);
413
+ s = Math.min(s, q.f.x);
414
+ s = Math.min(s, q.h.x);
415
+ s = Math.min(s, q.j.x);
416
+ s = Math.min(s, r.x);
417
+ t = Math.min(t, q.d.y);
418
+ t = Math.min(t, q.f.y);
419
+ t = Math.min(t, q.h.y);
420
+ t = Math.min(t, q.j.y);
421
+ t = Math.min(t, r.y);
422
+ u = Math.max(u, q.d.x);
423
+ u = Math.max(u, q.f.x);
424
+ u = Math.max(u, q.h.x);
425
+ u = Math.max(u, q.j.x);
426
+ u = Math.max(u, r.x);
427
+ v = Math.max(v, q.d.y);
428
+ v = Math.max(v, q.f.y);
429
+ v = Math.max(v, q.h.y);
430
+ v = Math.max(v, q.j.y);
431
+ v = Math.max(v, r.y);
432
+ return new Rect(0, s, t, u - s, v - t);
411
433
  }
434
+ j++;
412
435
  }
413
436
  return new Rect(0, 0, 0, 0, 0);
414
437
  }
415
438
  ks(a) {
416
- if (this.adf != null) {
417
- return this.adf.item(a);
439
+ if (this.yr != null && this.yr.cl && a == this.yr.othersIndex) {
440
+ return null;
441
+ }
442
+ if (this.adh != null) {
443
+ return this.adh.item(a);
418
444
  }
419
445
  return null;
420
446
  }
447
+ d9(a, b, c, d, e) {
448
+ if (super.d9(a, b, c, d, e)) {
449
+ let f = typeCast(ProportionalCategoryAngleAxis.$, this.yr) !== null && this.yr.hasOthersCategory;
450
+ if (e && (this.ade == 1 || (this.ade == 2 && !f))) {
451
+ let g = this.yr;
452
+ let h = new ScalerParams(1, this.c9.vl, this.wl, g.ch);
453
+ h.c = this.getEffectiveViewport1(this.ct);
454
+ let i = this.yw;
455
+ let j = new ScalerParams(1, this.c9.vl, this.wl, i.ch);
456
+ j.c = this.getEffectiveViewport1(this.ct);
457
+ let k = this.zw;
458
+ for (let l = 0; l < this.dl.count; l++) {
459
+ let m = this.dl.item(l);
460
+ let n = NaN;
461
+ if (m != null) {
462
+ n = this.ja(m);
463
+ }
464
+ if (n == 0) {
465
+ let o = new SeriesPointOfInterest();
466
+ o.f = this.aav(n, m, l, d, k, c, b, false);
467
+ o.b = ((() => {
468
+ let $ret = new DataContext();
469
+ $ret.item = m;
470
+ $ret.series = this;
471
+ return $ret;
472
+ })());
473
+ o.g = this.va;
474
+ o.c = l;
475
+ if (this.g7) {
476
+ o.g = this.vh(l);
477
+ }
478
+ let p = false;
479
+ for (let q = 0; q < a.count; q++) {
480
+ if (o.c < a._inner[q].c) {
481
+ a.insert(q, o);
482
+ p = true;
483
+ break;
484
+ }
485
+ }
486
+ if (!p) {
487
+ a.add(o);
488
+ }
489
+ }
490
+ }
491
+ }
492
+ return true;
493
+ }
494
+ return false;
495
+ }
421
496
  }
422
497
  RadialPieSeries.$t = /*@__PURE__*/ markType(RadialPieSeries, 'RadialPieSeries', AnchoredRadialSeries.$);
423
- RadialPieSeries.$$p = /*@__PURE__*/ markDep(DependencyProperty, PropertyMetadata, RadialPieSeries, 'raisePropertyChanged', ['RadiusX:adh:adp', [1, 2], 'RadiusY:adi:adq', [1, 2]]);
498
+ RadialPieSeries.$$p = /*@__PURE__*/ markDep(DependencyProperty, PropertyMetadata, RadialPieSeries, 'raisePropertyChanged', ['RadiusX:adj:ads', [1, 2], 'RadiusY:adk:adt', [1, 2]]);
424
499
  return RadialPieSeries;
425
500
  })();
426
501
  /**
@@ -110,34 +110,34 @@ export let ScatterBase = /*@__PURE__*/ (() => {
110
110
  }
111
111
  return super.mb(a);
112
112
  }
113
- d9(a, b, c, d) {
113
+ d9(a, b, c, d, e) {
114
114
  if (!this.hasMarkers) {
115
115
  return false;
116
116
  }
117
- let e = this.xAxis;
118
- let f = new ScalerParams(1, this.c9.vl, this.wl, e.ch);
119
- f.c = this.getEffectiveViewport1(this.ct);
120
- let g = this.yAxis;
121
- let h = new ScalerParams(1, this.c9.vl, this.wl, g.ch);
122
- h.c = this.getEffectiveViewport1(this.ct);
117
+ let f = this.xAxis;
118
+ let g = new ScalerParams(1, this.c9.vl, this.wl, f.ch);
119
+ g.c = this.getEffectiveViewport1(this.ct);
120
+ let h = this.yAxis;
121
+ let i = new ScalerParams(1, this.c9.vl, this.wl, h.ch);
122
+ i.c = this.getEffectiveViewport1(this.ct);
123
123
  a.clear();
124
- this.wy.cj((i) => {
125
- if (i._visibility == 0) {
126
- let j = new SeriesPointOfInterest();
127
- let k = i.n;
128
- let l = i.o;
129
- if (k < this.wl.left || k > this.wl.right || l < this.wl.top || l > this.wl.bottom) {
124
+ this.wy.cj((j) => {
125
+ if (j._visibility == 0) {
126
+ let k = new SeriesPointOfInterest();
127
+ let l = j.n;
128
+ let m = j.o;
129
+ if (l < this.wl.left || l > this.wl.right || m < this.wl.top || m > this.wl.bottom) {
130
130
  return;
131
131
  }
132
- j.d = e.en(k, f);
133
- j.e = g.en(l, h);
134
- j.b = i.content;
135
- j.g = this.va;
136
- j.c = i.ak;
132
+ k.d = f.en(l, g);
133
+ k.e = h.en(m, i);
134
+ k.b = j.content;
135
+ k.g = this.va;
136
+ k.c = j.ak;
137
137
  if (this.g7) {
138
- j.g = this.vh(i.ak);
138
+ k.g = this.vh(j.ak);
139
139
  }
140
- a.add(j);
140
+ a.add(k);
141
141
  }
142
142
  });
143
143
  return true;
@@ -355,34 +355,34 @@ export let ScatterPolygonSeries = /*@__PURE__*/ (() => {
355
355
  b.h(e);
356
356
  }
357
357
  }
358
- d9(a, b, c, d) {
358
+ d9(a, b, c, d, e) {
359
359
  if (!this.hasMarkers) {
360
360
  return false;
361
361
  }
362
- let e = this.w2;
363
- let f = new ScalerParams(1, this.c9.vl, this.wl, e.ch);
364
- f.c = this.getEffectiveViewport1(this.ct);
365
- let g = this.w4;
366
- let h = new ScalerParams(1, this.c9.vl, this.wl, g.ch);
367
- h.c = this.getEffectiveViewport1(this.ct);
362
+ let f = this.w2;
363
+ let g = new ScalerParams(1, this.c9.vl, this.wl, f.ch);
364
+ g.c = this.getEffectiveViewport1(this.ct);
365
+ let h = this.w4;
366
+ let i = new ScalerParams(1, this.c9.vl, this.wl, h.ch);
367
+ i.c = this.getEffectiveViewport1(this.ct);
368
368
  a.clear();
369
- this.zu.dw((i) => {
370
- if (i._visibility == 0) {
371
- let j = new SeriesPointOfInterest();
372
- let k = i.n;
373
- let l = i.o;
374
- if (k < this.wl.left || k > this.wl.right || l < this.wl.top || l > this.wl.bottom) {
369
+ this.zu.dw((j) => {
370
+ if (j._visibility == 0) {
371
+ let k = new SeriesPointOfInterest();
372
+ let l = j.n;
373
+ let m = j.o;
374
+ if (l < this.wl.left || l > this.wl.right || m < this.wl.top || m > this.wl.bottom) {
375
375
  return;
376
376
  }
377
- j.d = e.en(k, f);
378
- j.e = g.en(l, h);
379
- j.b = i.content;
380
- j.g = this.va;
381
- j.c = i.ak;
377
+ k.d = f.en(l, g);
378
+ k.e = h.en(m, i);
379
+ k.b = j.content;
380
+ k.g = this.va;
381
+ k.c = j.ak;
382
382
  if (this.g7) {
383
- j.g = this.vh(i.ak);
383
+ k.g = this.vh(j.ak);
384
384
  }
385
- a.add(j);
385
+ a.add(k);
386
386
  }
387
387
  });
388
388
  return true;
@@ -15951,7 +15951,7 @@ export let Series = /*@__PURE__*/ (() => {
15951
15951
  }
15952
15952
  return this.kg;
15953
15953
  }
15954
- d9(a, b, c, d) {
15954
+ d9(a, b, c, d, e) {
15955
15955
  return false;
15956
15956
  }
15957
15957
  jb(a) {
@@ -17753,7 +17753,7 @@ export let Series = /*@__PURE__*/ (() => {
17753
17753
  this.hs = new List$1(UIElement.$, 0);
17754
17754
  let b = this.dl;
17755
17755
  let c = new List$1(SeriesPointOfInterest.$, 0);
17756
- this.d9(c, false, false, 0);
17756
+ this.d9(c, false, false, 0, true);
17757
17757
  for (let d = 0; d < c.count; d++) {
17758
17758
  let e = c._inner[d];
17759
17759
  let f = this.vi(e.c);
@@ -4529,9 +4529,9 @@ export let StackedFragmentSeries = /*@__PURE__*/ (() => {
4529
4529
  }
4530
4530
  return null;
4531
4531
  }
4532
- as(a, b, c, d) {
4532
+ as(a, b, c, d, e) {
4533
4533
  if (this.visualSeriesLink != null) {
4534
- return this.visualSeriesLink.d9(a, b, c, d);
4534
+ return this.visualSeriesLink.d9(a, b, c, d, e);
4535
4535
  }
4536
4536
  return false;
4537
4537
  }