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.
- package/bundles/igniteui-webcomponents-charts.umd.js +809 -708
- package/bundles/igniteui-webcomponents-charts.umd.min.js +1 -1
- package/esm2015/lib/AnchoredRadialBucketCalculator_combined.js +2 -2
- package/esm2015/lib/CalloutLayer_combined.js +1 -1
- package/esm2015/lib/CategoryBucketCalculator_combined.js +50 -50
- package/esm2015/lib/DataPieBaseChart.js +311 -298
- package/esm2015/lib/DataPieChart.js +73 -73
- package/esm2015/lib/PieChartViewManager_combined.js +11 -1
- package/esm2015/lib/PolarBase_combined.js +24 -24
- package/esm2015/lib/RadialBucketCalculator_combined.js +32 -32
- package/esm2015/lib/RadialPieSeries_combined.js +153 -78
- package/esm2015/lib/ScatterBase_combined.js +20 -20
- package/esm2015/lib/ScatterPolygonSeries_combined.js +20 -20
- package/esm2015/lib/SeriesViewer_combined.js +2 -2
- package/esm2015/lib/StackedSeriesCreatedEventArgs_combined.js +2 -2
- package/esm2015/lib/igc-data-pie-base-chart-component.js +91 -83
- package/esm2015/lib/igc-data-pie-chart-component.js +23 -23
- package/esm2015/lib/igc-pie-chart-base-component.js +1 -1
- package/esm2015/lib/igc-radial-pie-series-component.js +20 -9
- package/esm2015/public_api.js +0 -1
- package/esm5/lib/AnchoredRadialBucketCalculator_combined.js +2 -2
- package/esm5/lib/CalloutLayer_combined.js +1 -1
- package/esm5/lib/CategoryBucketCalculator_combined.js +50 -50
- package/esm5/lib/DataPieBaseChart.js +285 -268
- package/esm5/lib/DataPieChart.js +65 -65
- package/esm5/lib/PieChartViewManager_combined.js +11 -1
- package/esm5/lib/PolarBase_combined.js +24 -24
- package/esm5/lib/RadialBucketCalculator_combined.js +32 -32
- package/esm5/lib/RadialPieSeries_combined.js +160 -76
- package/esm5/lib/ScatterBase_combined.js +20 -20
- package/esm5/lib/ScatterPolygonSeries_combined.js +20 -20
- package/esm5/lib/SeriesViewer_combined.js +2 -2
- package/esm5/lib/StackedSeriesCreatedEventArgs_combined.js +2 -2
- package/esm5/lib/igc-data-pie-base-chart-component.js +95 -83
- package/esm5/lib/igc-data-pie-chart-component.js +23 -23
- package/esm5/lib/igc-pie-chart-base-component.js +1 -1
- package/esm5/lib/igc-radial-pie-series-component.js +24 -9
- package/esm5/public_api.js +0 -1
- package/fesm2015/igniteui-webcomponents-charts.js +826 -744
- package/fesm5/igniteui-webcomponents-charts.js +808 -705
- package/lib/AnchoredRadialBucketCalculator_combined.d.ts +1 -1
- package/lib/CategoryBucketCalculator_combined.d.ts +1 -1
- package/lib/DataPieBaseChart.d.ts +96 -92
- package/lib/DataPieChart.d.ts +26 -26
- package/lib/PieChartViewManager_combined.d.ts +1 -1
- package/lib/PolarBase_combined.d.ts +1 -1
- package/lib/RadialBucketCalculator_combined.d.ts +2 -2
- package/lib/RadialPieSeries_combined.d.ts +18 -12
- package/lib/ScatterBase_combined.d.ts +1 -1
- package/lib/ScatterPolygonSeries_combined.d.ts +1 -1
- package/lib/SeriesViewer_combined.d.ts +1 -1
- package/lib/StackedSeriesCreatedEventArgs_combined.d.ts +1 -1
- package/lib/igc-data-pie-base-chart-component.d.ts +3 -0
- package/lib/igc-pie-chart-base-component.d.ts +1 -1
- package/lib/igc-radial-pie-series-component.d.ts +6 -0
- package/package.json +2 -2
- package/public_api.d.ts +0 -1
- package/esm2015/lib/LegendEmptyValuesMode.js +0 -29
- package/esm5/lib/LegendEmptyValuesMode.js +0 -29
- 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.
|
|
58
|
+
this.adf = a;
|
|
56
59
|
}
|
|
57
60
|
constructor() {
|
|
58
61
|
super();
|
|
59
|
-
this.
|
|
60
|
-
this.
|
|
62
|
+
this.adg = null;
|
|
63
|
+
this.adl = null;
|
|
64
|
+
this.add = 0;
|
|
61
65
|
this.ab = RadialPieSeries.$;
|
|
62
66
|
}
|
|
63
|
-
get
|
|
64
|
-
return this.
|
|
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
|
|
67
|
-
if (this.
|
|
68
|
-
let b = this.
|
|
69
|
-
this.
|
|
70
|
-
this.raisePropertyChanged("
|
|
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
|
|
74
|
-
return this.
|
|
87
|
+
get ade() {
|
|
88
|
+
return this.add;
|
|
75
89
|
}
|
|
76
|
-
set
|
|
77
|
-
if (this.
|
|
78
|
-
let b = this.
|
|
79
|
-
this.
|
|
80
|
-
this.raisePropertyChanged("
|
|
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.
|
|
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.
|
|
152
|
-
let q = this.
|
|
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.
|
|
157
|
-
this.y7.s = this.
|
|
158
|
-
this.y7.k = this.
|
|
159
|
-
this.y7.l = this.
|
|
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.
|
|
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.
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
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.
|
|
348
|
-
c.deregisterColumn(this.
|
|
361
|
+
if (this.adh != null) {
|
|
362
|
+
c.deregisterColumn(this.adh);
|
|
349
363
|
}
|
|
350
364
|
}
|
|
351
365
|
if (d != null) {
|
|
352
|
-
if (this.
|
|
353
|
-
this.
|
|
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.
|
|
360
|
-
this.
|
|
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.
|
|
369
|
-
let c = this.
|
|
370
|
-
let d = this.getEffectiveViewport1(this.
|
|
371
|
-
let e = this.wd(this.
|
|
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
|
-
|
|
377
|
-
|
|
378
|
-
let l =
|
|
379
|
-
let m = i._inner[
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
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 =
|
|
409
|
+
let t = 1.7976931348623157E+308;
|
|
389
410
|
let u = -1.7976931348623157E+308;
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
s = Math.min(s,
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
t = Math.
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
u = Math.max(u,
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
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.
|
|
417
|
-
return
|
|
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:
|
|
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
|
|
118
|
-
let
|
|
119
|
-
|
|
120
|
-
let
|
|
121
|
-
let
|
|
122
|
-
|
|
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((
|
|
125
|
-
if (
|
|
126
|
-
let
|
|
127
|
-
let
|
|
128
|
-
let
|
|
129
|
-
if (
|
|
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
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
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
|
-
|
|
138
|
+
k.g = this.vh(j.ak);
|
|
139
139
|
}
|
|
140
|
-
a.add(
|
|
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
|
|
363
|
-
let
|
|
364
|
-
|
|
365
|
-
let
|
|
366
|
-
let
|
|
367
|
-
|
|
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((
|
|
370
|
-
if (
|
|
371
|
-
let
|
|
372
|
-
let
|
|
373
|
-
let
|
|
374
|
-
if (
|
|
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
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
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
|
-
|
|
383
|
+
k.g = this.vh(j.ak);
|
|
384
384
|
}
|
|
385
|
-
a.add(
|
|
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
|
}
|