igniteui-webcomponents-charts 4.3.0 → 4.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-webcomponents-charts.umd.js +600 -570
- package/bundles/igniteui-webcomponents-charts.umd.min.js +1 -1
- package/esm2015/lib/SortingTrendLineManager.js +4 -4
- package/esm2015/lib/StackedSeriesCreatedEventArgs_combined.js +232 -218
- package/esm2015/lib/igc-stacked-fragment-series-component.js +75 -75
- package/esm5/lib/SortingTrendLineManager.js +4 -4
- package/esm5/lib/StackedSeriesCreatedEventArgs_combined.js +521 -491
- package/esm5/lib/igc-stacked-fragment-series-component.js +75 -75
- package/fesm2015/igniteui-webcomponents-charts.js +311 -297
- package/fesm5/igniteui-webcomponents-charts.js +600 -570
- package/lib/StackedSeriesCreatedEventArgs_combined.d.ts +59 -58
- package/package.json +2 -2
|
@@ -92504,9 +92504,9 @@
|
|
|
92504
92504
|
if (this.c(b)) {
|
|
92505
92505
|
this.d.clear();
|
|
92506
92506
|
this.a = TrendFitCalculator.a(j, b, g, this.a, c.count, function (k) { return (k + 1); }, function (k) { return c.item(k); }, function (k) {
|
|
92507
|
-
var l = igniteuiWebcomponentsCore.truncate(Math.floor(k));
|
|
92508
|
-
var m = igniteuiWebcomponentsCore.truncate(Math.ceil(k));
|
|
92509
|
-
var n = k - l;
|
|
92507
|
+
var l = igniteuiWebcomponentsCore.truncate(Math.floor(k - 1));
|
|
92508
|
+
var m = igniteuiWebcomponentsCore.truncate(Math.ceil(k - 1));
|
|
92509
|
+
var n = (k - 1) - l;
|
|
92510
92510
|
var o;
|
|
92511
92511
|
if (m <= i) {
|
|
92512
92512
|
o = _this.h(l) + n * (_this.h(m) - _this.h(l));
|
|
@@ -92515,7 +92515,7 @@
|
|
|
92515
92515
|
o = _this.h(l) + n * (_this.h(igniteuiWebcomponentsCore.truncate(i)) - _this.h(l));
|
|
92516
92516
|
}
|
|
92517
92517
|
return e(o);
|
|
92518
|
-
}, f, h, i);
|
|
92518
|
+
}, f, h + 1, i + 1);
|
|
92519
92519
|
}
|
|
92520
92520
|
if (this.b(b)) {
|
|
92521
92521
|
this.a = null;
|
|
@@ -195349,70 +195349,70 @@
|
|
|
195349
195349
|
}
|
|
195350
195350
|
Object.defineProperty(StackedSeriesCreatedEventArgs.prototype, "brush", {
|
|
195351
195351
|
get: function () {
|
|
195352
|
-
return this.c.
|
|
195352
|
+
return this.c.kc;
|
|
195353
195353
|
},
|
|
195354
195354
|
set: function (a) {
|
|
195355
|
-
this.c.
|
|
195355
|
+
this.c.kc = a;
|
|
195356
195356
|
},
|
|
195357
195357
|
enumerable: false,
|
|
195358
195358
|
configurable: true
|
|
195359
195359
|
});
|
|
195360
195360
|
Object.defineProperty(StackedSeriesCreatedEventArgs.prototype, "legendItemTemplate", {
|
|
195361
195361
|
get: function () {
|
|
195362
|
-
return this.c.
|
|
195362
|
+
return this.c.ha;
|
|
195363
195363
|
},
|
|
195364
195364
|
set: function (a) {
|
|
195365
|
-
this.c.
|
|
195365
|
+
this.c.ha = a;
|
|
195366
195366
|
},
|
|
195367
195367
|
enumerable: false,
|
|
195368
195368
|
configurable: true
|
|
195369
195369
|
});
|
|
195370
195370
|
Object.defineProperty(StackedSeriesCreatedEventArgs.prototype, "legendItemBadgeTemplate", {
|
|
195371
195371
|
get: function () {
|
|
195372
|
-
return this.c.
|
|
195372
|
+
return this.c.g9;
|
|
195373
195373
|
},
|
|
195374
195374
|
set: function (a) {
|
|
195375
|
-
this.c.
|
|
195375
|
+
this.c.g9 = a;
|
|
195376
195376
|
},
|
|
195377
195377
|
enumerable: false,
|
|
195378
195378
|
configurable: true
|
|
195379
195379
|
});
|
|
195380
195380
|
Object.defineProperty(StackedSeriesCreatedEventArgs.prototype, "legendItemVisibility", {
|
|
195381
195381
|
get: function () {
|
|
195382
|
-
return this.c.
|
|
195382
|
+
return this.c.k7;
|
|
195383
195383
|
},
|
|
195384
195384
|
set: function (a) {
|
|
195385
|
-
this.c.
|
|
195385
|
+
this.c.k7 = a;
|
|
195386
195386
|
},
|
|
195387
195387
|
enumerable: false,
|
|
195388
195388
|
configurable: true
|
|
195389
195389
|
});
|
|
195390
195390
|
Object.defineProperty(StackedSeriesCreatedEventArgs.prototype, "outline", {
|
|
195391
195391
|
get: function () {
|
|
195392
|
-
return this.c.
|
|
195392
|
+
return this.c.kg;
|
|
195393
195393
|
},
|
|
195394
195394
|
set: function (a) {
|
|
195395
|
-
this.c.
|
|
195395
|
+
this.c.kg = a;
|
|
195396
195396
|
},
|
|
195397
195397
|
enumerable: false,
|
|
195398
195398
|
configurable: true
|
|
195399
195399
|
});
|
|
195400
195400
|
Object.defineProperty(StackedSeriesCreatedEventArgs.prototype, "dashArray", {
|
|
195401
195401
|
get: function () {
|
|
195402
|
-
return this.c.
|
|
195402
|
+
return this.c.kl;
|
|
195403
195403
|
},
|
|
195404
195404
|
set: function (a) {
|
|
195405
|
-
this.c.
|
|
195405
|
+
this.c.kl = a;
|
|
195406
195406
|
},
|
|
195407
195407
|
enumerable: false,
|
|
195408
195408
|
configurable: true
|
|
195409
195409
|
});
|
|
195410
195410
|
Object.defineProperty(StackedSeriesCreatedEventArgs.prototype, "dashCap", {
|
|
195411
195411
|
get: function () {
|
|
195412
|
-
return this.c.
|
|
195412
|
+
return this.c.ko;
|
|
195413
195413
|
},
|
|
195414
195414
|
set: function (a) {
|
|
195415
|
-
this.c.
|
|
195415
|
+
this.c.ko = a;
|
|
195416
195416
|
},
|
|
195417
195417
|
enumerable: false,
|
|
195418
195418
|
configurable: true
|
|
@@ -195466,40 +195466,40 @@
|
|
|
195466
195466
|
});
|
|
195467
195467
|
Object.defineProperty(StackedSeriesCreatedEventArgs.prototype, "markerBrush", {
|
|
195468
195468
|
get: function () {
|
|
195469
|
-
return this.c.
|
|
195469
|
+
return this.c.kd;
|
|
195470
195470
|
},
|
|
195471
195471
|
set: function (a) {
|
|
195472
|
-
this.c.
|
|
195472
|
+
this.c.kd = a;
|
|
195473
195473
|
},
|
|
195474
195474
|
enumerable: false,
|
|
195475
195475
|
configurable: true
|
|
195476
195476
|
});
|
|
195477
195477
|
Object.defineProperty(StackedSeriesCreatedEventArgs.prototype, "markerOutline", {
|
|
195478
195478
|
get: function () {
|
|
195479
|
-
return this.c.
|
|
195479
|
+
return this.c.ke;
|
|
195480
195480
|
},
|
|
195481
195481
|
set: function (a) {
|
|
195482
|
-
this.c.
|
|
195482
|
+
this.c.ke = a;
|
|
195483
195483
|
},
|
|
195484
195484
|
enumerable: false,
|
|
195485
195485
|
configurable: true
|
|
195486
195486
|
});
|
|
195487
195487
|
Object.defineProperty(StackedSeriesCreatedEventArgs.prototype, "markerStyle", {
|
|
195488
195488
|
get: function () {
|
|
195489
|
-
return this.c.
|
|
195489
|
+
return this.c.k4;
|
|
195490
195490
|
},
|
|
195491
195491
|
set: function (a) {
|
|
195492
|
-
this.c.
|
|
195492
|
+
this.c.k4 = a;
|
|
195493
195493
|
},
|
|
195494
195494
|
enumerable: false,
|
|
195495
195495
|
configurable: true
|
|
195496
195496
|
});
|
|
195497
195497
|
Object.defineProperty(StackedSeriesCreatedEventArgs.prototype, "markerTemplate", {
|
|
195498
195498
|
get: function () {
|
|
195499
|
-
return this.c.
|
|
195499
|
+
return this.c.hb;
|
|
195500
195500
|
},
|
|
195501
195501
|
set: function (a) {
|
|
195502
|
-
this.c.
|
|
195502
|
+
this.c.hb = a;
|
|
195503
195503
|
},
|
|
195504
195504
|
enumerable: false,
|
|
195505
195505
|
configurable: true
|
|
@@ -195526,10 +195526,10 @@
|
|
|
195526
195526
|
});
|
|
195527
195527
|
Object.defineProperty(StackedSeriesCreatedEventArgs.prototype, "lineCap", {
|
|
195528
195528
|
get: function () {
|
|
195529
|
-
return this.c.
|
|
195529
|
+
return this.c.kn;
|
|
195530
195530
|
},
|
|
195531
195531
|
set: function (a) {
|
|
195532
|
-
this.c.
|
|
195532
|
+
this.c.kp = a;
|
|
195533
195533
|
},
|
|
195534
195534
|
enumerable: false,
|
|
195535
195535
|
configurable: true
|
|
@@ -195741,7 +195741,7 @@
|
|
|
195741
195741
|
if (e.visualSeriesLink == this) {
|
|
195742
195742
|
return a;
|
|
195743
195743
|
}
|
|
195744
|
-
if (this.parentSeries.a2 == null || e.
|
|
195744
|
+
if (this.parentSeries.a2 == null || e.k6 != 0 || e.k5 != 0) {
|
|
195745
195745
|
continue;
|
|
195746
195746
|
}
|
|
195747
195747
|
a++;
|
|
@@ -195773,7 +195773,7 @@
|
|
|
195773
195773
|
break;
|
|
195774
195774
|
case "ActualBrush":
|
|
195775
195775
|
if (this.logicalSeriesLink != null) {
|
|
195776
|
-
this.logicalSeriesLink.
|
|
195776
|
+
this.logicalSeriesLink.j7 = this.o5;
|
|
195777
195777
|
}
|
|
195778
195778
|
break;
|
|
195779
195779
|
}
|
|
@@ -197559,7 +197559,7 @@
|
|
|
197559
197559
|
switch (b) {
|
|
197560
197560
|
case "ActualBrush":
|
|
197561
197561
|
if (this.logicalSeriesLink != null) {
|
|
197562
|
-
this.logicalSeriesLink.
|
|
197562
|
+
this.logicalSeriesLink.j7 = this.o5;
|
|
197563
197563
|
}
|
|
197564
197564
|
break;
|
|
197565
197565
|
}
|
|
@@ -197957,7 +197957,7 @@
|
|
|
197957
197957
|
try {
|
|
197958
197958
|
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
197959
197959
|
var a = _c.value;
|
|
197960
|
-
a.
|
|
197960
|
+
a.gf();
|
|
197961
197961
|
}
|
|
197962
197962
|
}
|
|
197963
197963
|
catch (e_1_1) {
|
|
@@ -198129,11 +198129,11 @@
|
|
|
198129
198129
|
if (this.tu != null && !this.tu.c.contains(e)) {
|
|
198130
198130
|
e.parentSeries = this;
|
|
198131
198131
|
e.fv();
|
|
198132
|
-
e.gl();
|
|
198133
198132
|
e.gm();
|
|
198134
|
-
e.g0();
|
|
198135
198133
|
e.gn();
|
|
198134
|
+
e.g1();
|
|
198136
198135
|
e.go();
|
|
198136
|
+
e.gp();
|
|
198137
198137
|
e.fr();
|
|
198138
198138
|
e.fs();
|
|
198139
198139
|
e.fu();
|
|
@@ -198142,37 +198142,38 @@
|
|
|
198142
198142
|
e.f2();
|
|
198143
198143
|
e.f3();
|
|
198144
198144
|
e.f4();
|
|
198145
|
+
e.gd();
|
|
198146
|
+
e.gf();
|
|
198147
|
+
e.f7();
|
|
198148
|
+
e.ga();
|
|
198145
198149
|
e.gc();
|
|
198150
|
+
e.gd();
|
|
198146
198151
|
e.ge();
|
|
198147
|
-
e.f6();
|
|
198148
|
-
e.f9();
|
|
198149
198152
|
e.gb();
|
|
198150
|
-
e.
|
|
198151
|
-
e.
|
|
198152
|
-
e.
|
|
198153
|
-
e.f7();
|
|
198154
|
-
e.gy();
|
|
198153
|
+
e.f8();
|
|
198154
|
+
e.gz();
|
|
198155
|
+
e.g3();
|
|
198155
198156
|
e.g2();
|
|
198156
|
-
e.g1();
|
|
198157
|
-
e.gf();
|
|
198158
198157
|
e.gg();
|
|
198159
198158
|
e.gh();
|
|
198159
|
+
e.gi();
|
|
198160
198160
|
e.fq();
|
|
198161
|
-
e.gj();
|
|
198162
198161
|
e.gk();
|
|
198162
|
+
e.gl();
|
|
198163
198163
|
e.f5();
|
|
198164
|
-
e.
|
|
198165
|
-
e.
|
|
198166
|
-
e.f8();
|
|
198167
|
-
e.gi();
|
|
198164
|
+
e.gq();
|
|
198165
|
+
e.f6();
|
|
198168
198166
|
e.gs();
|
|
198167
|
+
e.f9();
|
|
198168
|
+
e.gj();
|
|
198169
198169
|
e.gt();
|
|
198170
|
+
e.gu();
|
|
198170
198171
|
e.fy();
|
|
198172
|
+
e.gy();
|
|
198173
|
+
e.gv();
|
|
198171
198174
|
e.gx();
|
|
198172
|
-
e.
|
|
198173
|
-
e.
|
|
198174
|
-
e.gz();
|
|
198175
|
-
e.g4();
|
|
198175
|
+
e.g0();
|
|
198176
|
+
e.g5();
|
|
198176
198177
|
if (!this.tw) {
|
|
198177
198178
|
this.tu.c.insert(d, e);
|
|
198178
198179
|
d++;
|
|
@@ -198594,7 +198595,7 @@
|
|
|
198594
198595
|
}
|
|
198595
198596
|
};
|
|
198596
198597
|
StackedSeriesBase.prototype.l9 = function (a, b, c, d) {
|
|
198597
|
-
var e_11, _a, e_12, _b, e_13, _c, e_14, _d, e_15, _e, e_16, _f, e_17, _g, e_18, _h, e_19, _j, e_20, _k, e_21, _l, e_22, _m, e_23, _o, e_24, _p, e_25, _q, e_26, _r, e_27, _s, e_28, _t, e_29, _u, e_30, _v, e_31, _w, e_32, _x, e_33, _y, e_34, _z, e_35, _0, e_36, _1, e_37, _2, e_38, _3, e_39, _4, e_40, _5, e_41, _6, e_42, _7, e_43, _8, e_44, _9, e_45, _10, e_46, _11, e_47, _12, e_48, _13, e_49, _14, e_50, _15, e_51, _16, e_52, _17, e_53, _18, e_54, _19, e_55, _20;
|
|
198598
|
+
var e_11, _a, e_12, _b, e_13, _c, e_14, _d, e_15, _e, e_16, _f, e_17, _g, e_18, _h, e_19, _j, e_20, _k, e_21, _l, e_22, _m, e_23, _o, e_24, _p, e_25, _q, e_26, _r, e_27, _s, e_28, _t, e_29, _u, e_30, _v, e_31, _w, e_32, _x, e_33, _y, e_34, _z, e_35, _0, e_36, _1, e_37, _2, e_38, _3, e_39, _4, e_40, _5, e_41, _6, e_42, _7, e_43, _8, e_44, _9, e_45, _10, e_46, _11, e_47, _12, e_48, _13, e_49, _14, e_50, _15, e_51, _16, e_52, _17, e_53, _18, e_54, _19, e_55, _20, e_56, _21;
|
|
198598
198599
|
_super.prototype.l9.call(this, a, b, c, d);
|
|
198599
198600
|
switch (b) {
|
|
198600
198601
|
case "SeriesViewer":
|
|
@@ -198608,8 +198609,8 @@
|
|
|
198608
198609
|
}
|
|
198609
198610
|
if (this.tq != null) {
|
|
198610
198611
|
try {
|
|
198611
|
-
for (var
|
|
198612
|
-
var e =
|
|
198612
|
+
for (var _22 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _23 = _22.next(); !_23.done; _23 = _22.next()) {
|
|
198613
|
+
var e = _23.value;
|
|
198613
198614
|
e.ae = this.ce;
|
|
198614
198615
|
}
|
|
198615
198616
|
}
|
|
@@ -198618,8 +198619,8 @@
|
|
|
198618
198619
|
}
|
|
198619
198620
|
finally {
|
|
198620
198621
|
try {
|
|
198621
|
-
if (
|
|
198622
|
-
_a.call(
|
|
198622
|
+
if (_23 && !_23.done && (_a = _22.return))
|
|
198623
|
+
_a.call(_22);
|
|
198623
198624
|
}
|
|
198624
198625
|
finally {
|
|
198625
198626
|
if (e_11)
|
|
@@ -198632,8 +198633,8 @@
|
|
|
198632
198633
|
case "ItemsSource":
|
|
198633
198634
|
if (this.tq != null) {
|
|
198634
198635
|
try {
|
|
198635
|
-
for (var
|
|
198636
|
-
var f =
|
|
198636
|
+
for (var _24 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _25 = _24.next(); !_25.done; _25 = _24.next()) {
|
|
198637
|
+
var f = _25.value;
|
|
198637
198638
|
if (f.itemsSource == null) {
|
|
198638
198639
|
if (f.visualSeriesLink != null) {
|
|
198639
198640
|
f.visualSeriesLink.itemsSource = d;
|
|
@@ -198646,8 +198647,8 @@
|
|
|
198646
198647
|
}
|
|
198647
198648
|
finally {
|
|
198648
198649
|
try {
|
|
198649
|
-
if (
|
|
198650
|
-
_b.call(
|
|
198650
|
+
if (_25 && !_25.done && (_b = _24.return))
|
|
198651
|
+
_b.call(_24);
|
|
198651
198652
|
}
|
|
198652
198653
|
finally {
|
|
198653
198654
|
if (e_12)
|
|
@@ -198675,9 +198676,9 @@
|
|
|
198675
198676
|
break;
|
|
198676
198677
|
case StackedSeriesBase.$$p[2]:
|
|
198677
198678
|
try {
|
|
198678
|
-
for (var
|
|
198679
|
-
var g =
|
|
198680
|
-
g.
|
|
198679
|
+
for (var _26 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _27 = _26.next(); !_27.done; _27 = _26.next()) {
|
|
198680
|
+
var g = _27.value;
|
|
198681
|
+
g.g5();
|
|
198681
198682
|
}
|
|
198682
198683
|
}
|
|
198683
198684
|
catch (e_13_1) {
|
|
@@ -198685,8 +198686,8 @@
|
|
|
198685
198686
|
}
|
|
198686
198687
|
finally {
|
|
198687
198688
|
try {
|
|
198688
|
-
if (
|
|
198689
|
-
_c.call(
|
|
198689
|
+
if (_27 && !_27.done && (_c = _26.return))
|
|
198690
|
+
_c.call(_26);
|
|
198690
198691
|
}
|
|
198691
198692
|
finally {
|
|
198692
198693
|
if (e_13)
|
|
@@ -198696,8 +198697,8 @@
|
|
|
198696
198697
|
break;
|
|
198697
198698
|
case "Brush":
|
|
198698
198699
|
try {
|
|
198699
|
-
for (var
|
|
198700
|
-
var h =
|
|
198700
|
+
for (var _28 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _29 = _28.next(); !_29.done; _29 = _28.next()) {
|
|
198701
|
+
var h = _29.value;
|
|
198701
198702
|
h.fr();
|
|
198702
198703
|
}
|
|
198703
198704
|
}
|
|
@@ -198706,8 +198707,8 @@
|
|
|
198706
198707
|
}
|
|
198707
198708
|
finally {
|
|
198708
198709
|
try {
|
|
198709
|
-
if (
|
|
198710
|
-
_d.call(
|
|
198710
|
+
if (_29 && !_29.done && (_d = _28.return))
|
|
198711
|
+
_d.call(_28);
|
|
198711
198712
|
}
|
|
198712
198713
|
finally {
|
|
198713
198714
|
if (e_14)
|
|
@@ -198717,8 +198718,8 @@
|
|
|
198717
198718
|
break;
|
|
198718
198719
|
case "DashArray":
|
|
198719
198720
|
try {
|
|
198720
|
-
for (var
|
|
198721
|
-
var i =
|
|
198721
|
+
for (var _30 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _31 = _30.next(); !_31.done; _31 = _30.next()) {
|
|
198722
|
+
var i = _31.value;
|
|
198722
198723
|
i.fs();
|
|
198723
198724
|
}
|
|
198724
198725
|
}
|
|
@@ -198727,8 +198728,8 @@
|
|
|
198727
198728
|
}
|
|
198728
198729
|
finally {
|
|
198729
198730
|
try {
|
|
198730
|
-
if (
|
|
198731
|
-
_e.call(
|
|
198731
|
+
if (_31 && !_31.done && (_e = _30.return))
|
|
198732
|
+
_e.call(_30);
|
|
198732
198733
|
}
|
|
198733
198734
|
finally {
|
|
198734
198735
|
if (e_15)
|
|
@@ -198738,8 +198739,8 @@
|
|
|
198738
198739
|
break;
|
|
198739
198740
|
case "HighlightingFadeOpacity":
|
|
198740
198741
|
try {
|
|
198741
|
-
for (var
|
|
198742
|
-
var j =
|
|
198742
|
+
for (var _32 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _33 = _32.next(); !_33.done; _33 = _32.next()) {
|
|
198743
|
+
var j = _33.value;
|
|
198743
198744
|
j.fu();
|
|
198744
198745
|
}
|
|
198745
198746
|
}
|
|
@@ -198748,8 +198749,8 @@
|
|
|
198748
198749
|
}
|
|
198749
198750
|
finally {
|
|
198750
198751
|
try {
|
|
198751
|
-
if (
|
|
198752
|
-
_f.call(
|
|
198752
|
+
if (_33 && !_33.done && (_f = _32.return))
|
|
198753
|
+
_f.call(_32);
|
|
198753
198754
|
}
|
|
198754
198755
|
finally {
|
|
198755
198756
|
if (e_16)
|
|
@@ -198759,8 +198760,8 @@
|
|
|
198759
198760
|
break;
|
|
198760
198761
|
case "DashCap":
|
|
198761
198762
|
try {
|
|
198762
|
-
for (var
|
|
198763
|
-
var k =
|
|
198763
|
+
for (var _34 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _35 = _34.next(); !_35.done; _35 = _34.next()) {
|
|
198764
|
+
var k = _35.value;
|
|
198764
198765
|
k.ft();
|
|
198765
198766
|
}
|
|
198766
198767
|
}
|
|
@@ -198769,8 +198770,8 @@
|
|
|
198769
198770
|
}
|
|
198770
198771
|
finally {
|
|
198771
198772
|
try {
|
|
198772
|
-
if (
|
|
198773
|
-
_g.call(
|
|
198773
|
+
if (_35 && !_35.done && (_g = _34.return))
|
|
198774
|
+
_g.call(_34);
|
|
198774
198775
|
}
|
|
198775
198776
|
finally {
|
|
198776
198777
|
if (e_17)
|
|
@@ -198780,8 +198781,8 @@
|
|
|
198780
198781
|
break;
|
|
198781
198782
|
case "IsDropShadowEnabled":
|
|
198782
198783
|
try {
|
|
198783
|
-
for (var
|
|
198784
|
-
var l =
|
|
198784
|
+
for (var _36 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _37 = _36.next(); !_37.done; _37 = _36.next()) {
|
|
198785
|
+
var l = _37.value;
|
|
198785
198786
|
l.fv();
|
|
198786
198787
|
}
|
|
198787
198788
|
}
|
|
@@ -198790,8 +198791,8 @@
|
|
|
198790
198791
|
}
|
|
198791
198792
|
finally {
|
|
198792
198793
|
try {
|
|
198793
|
-
if (
|
|
198794
|
-
_h.call(
|
|
198794
|
+
if (_37 && !_37.done && (_h = _36.return))
|
|
198795
|
+
_h.call(_36);
|
|
198795
198796
|
}
|
|
198796
198797
|
finally {
|
|
198797
198798
|
if (e_18)
|
|
@@ -198801,9 +198802,9 @@
|
|
|
198801
198802
|
break;
|
|
198802
198803
|
case "ShadowBlur":
|
|
198803
198804
|
try {
|
|
198804
|
-
for (var
|
|
198805
|
-
var m =
|
|
198806
|
-
m.
|
|
198805
|
+
for (var _38 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _39 = _38.next(); !_39.done; _39 = _38.next()) {
|
|
198806
|
+
var m = _39.value;
|
|
198807
|
+
m.gm();
|
|
198807
198808
|
}
|
|
198808
198809
|
}
|
|
198809
198810
|
catch (e_19_1) {
|
|
@@ -198811,8 +198812,8 @@
|
|
|
198811
198812
|
}
|
|
198812
198813
|
finally {
|
|
198813
198814
|
try {
|
|
198814
|
-
if (
|
|
198815
|
-
_j.call(
|
|
198815
|
+
if (_39 && !_39.done && (_j = _38.return))
|
|
198816
|
+
_j.call(_38);
|
|
198816
198817
|
}
|
|
198817
198818
|
finally {
|
|
198818
198819
|
if (e_19)
|
|
@@ -198822,9 +198823,9 @@
|
|
|
198822
198823
|
break;
|
|
198823
198824
|
case "ShadowColor":
|
|
198824
198825
|
try {
|
|
198825
|
-
for (var
|
|
198826
|
-
var n =
|
|
198827
|
-
n.
|
|
198826
|
+
for (var _40 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _41 = _40.next(); !_41.done; _41 = _40.next()) {
|
|
198827
|
+
var n = _41.value;
|
|
198828
|
+
n.gn();
|
|
198828
198829
|
}
|
|
198829
198830
|
}
|
|
198830
198831
|
catch (e_20_1) {
|
|
@@ -198832,8 +198833,8 @@
|
|
|
198832
198833
|
}
|
|
198833
198834
|
finally {
|
|
198834
198835
|
try {
|
|
198835
|
-
if (
|
|
198836
|
-
_k.call(
|
|
198836
|
+
if (_41 && !_41.done && (_k = _40.return))
|
|
198837
|
+
_k.call(_40);
|
|
198837
198838
|
}
|
|
198838
198839
|
finally {
|
|
198839
198840
|
if (e_20)
|
|
@@ -198843,9 +198844,9 @@
|
|
|
198843
198844
|
break;
|
|
198844
198845
|
case "UseSingleShadow":
|
|
198845
198846
|
try {
|
|
198846
|
-
for (var
|
|
198847
|
-
var o =
|
|
198848
|
-
o.
|
|
198847
|
+
for (var _42 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _43 = _42.next(); !_43.done; _43 = _42.next()) {
|
|
198848
|
+
var o = _43.value;
|
|
198849
|
+
o.g1();
|
|
198849
198850
|
}
|
|
198850
198851
|
}
|
|
198851
198852
|
catch (e_21_1) {
|
|
@@ -198853,8 +198854,8 @@
|
|
|
198853
198854
|
}
|
|
198854
198855
|
finally {
|
|
198855
198856
|
try {
|
|
198856
|
-
if (
|
|
198857
|
-
_l.call(
|
|
198857
|
+
if (_43 && !_43.done && (_l = _42.return))
|
|
198858
|
+
_l.call(_42);
|
|
198858
198859
|
}
|
|
198859
198860
|
finally {
|
|
198860
198861
|
if (e_21)
|
|
@@ -198864,9 +198865,9 @@
|
|
|
198864
198865
|
break;
|
|
198865
198866
|
case "ShadowOffsetX":
|
|
198866
198867
|
try {
|
|
198867
|
-
for (var
|
|
198868
|
-
var p =
|
|
198869
|
-
p.
|
|
198868
|
+
for (var _44 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _45 = _44.next(); !_45.done; _45 = _44.next()) {
|
|
198869
|
+
var p = _45.value;
|
|
198870
|
+
p.go();
|
|
198870
198871
|
}
|
|
198871
198872
|
}
|
|
198872
198873
|
catch (e_22_1) {
|
|
@@ -198874,8 +198875,8 @@
|
|
|
198874
198875
|
}
|
|
198875
198876
|
finally {
|
|
198876
198877
|
try {
|
|
198877
|
-
if (
|
|
198878
|
-
_m.call(
|
|
198878
|
+
if (_45 && !_45.done && (_m = _44.return))
|
|
198879
|
+
_m.call(_44);
|
|
198879
198880
|
}
|
|
198880
198881
|
finally {
|
|
198881
198882
|
if (e_22)
|
|
@@ -198885,9 +198886,9 @@
|
|
|
198885
198886
|
break;
|
|
198886
198887
|
case "ShadowOffsetY":
|
|
198887
198888
|
try {
|
|
198888
|
-
for (var
|
|
198889
|
-
var q =
|
|
198890
|
-
q.
|
|
198889
|
+
for (var _46 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _47 = _46.next(); !_47.done; _47 = _46.next()) {
|
|
198890
|
+
var q = _47.value;
|
|
198891
|
+
q.gp();
|
|
198891
198892
|
}
|
|
198892
198893
|
}
|
|
198893
198894
|
catch (e_23_1) {
|
|
@@ -198895,8 +198896,8 @@
|
|
|
198895
198896
|
}
|
|
198896
198897
|
finally {
|
|
198897
198898
|
try {
|
|
198898
|
-
if (
|
|
198899
|
-
_o.call(
|
|
198899
|
+
if (_47 && !_47.done && (_o = _46.return))
|
|
198900
|
+
_o.call(_46);
|
|
198900
198901
|
}
|
|
198901
198902
|
finally {
|
|
198902
198903
|
if (e_23)
|
|
@@ -198906,8 +198907,8 @@
|
|
|
198906
198907
|
break;
|
|
198907
198908
|
case "IsHitTestVisible":
|
|
198908
198909
|
try {
|
|
198909
|
-
for (var
|
|
198910
|
-
var r =
|
|
198910
|
+
for (var _48 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _49 = _48.next(); !_49.done; _49 = _48.next()) {
|
|
198911
|
+
var r = _49.value;
|
|
198911
198912
|
r.fw();
|
|
198912
198913
|
}
|
|
198913
198914
|
}
|
|
@@ -198916,8 +198917,8 @@
|
|
|
198916
198917
|
}
|
|
198917
198918
|
finally {
|
|
198918
198919
|
try {
|
|
198919
|
-
if (
|
|
198920
|
-
_p.call(
|
|
198920
|
+
if (_49 && !_49.done && (_p = _48.return))
|
|
198921
|
+
_p.call(_48);
|
|
198921
198922
|
}
|
|
198922
198923
|
finally {
|
|
198923
198924
|
if (e_24)
|
|
@@ -198927,8 +198928,8 @@
|
|
|
198927
198928
|
break;
|
|
198928
198929
|
case "LegendItemBadgeTemplate":
|
|
198929
198930
|
try {
|
|
198930
|
-
for (var
|
|
198931
|
-
var s =
|
|
198931
|
+
for (var _50 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _51 = _50.next(); !_51.done; _51 = _50.next()) {
|
|
198932
|
+
var s = _51.value;
|
|
198932
198933
|
s.f2();
|
|
198933
198934
|
}
|
|
198934
198935
|
}
|
|
@@ -198937,8 +198938,8 @@
|
|
|
198937
198938
|
}
|
|
198938
198939
|
finally {
|
|
198939
198940
|
try {
|
|
198940
|
-
if (
|
|
198941
|
-
_q.call(
|
|
198941
|
+
if (_51 && !_51.done && (_q = _50.return))
|
|
198942
|
+
_q.call(_50);
|
|
198942
198943
|
}
|
|
198943
198944
|
finally {
|
|
198944
198945
|
if (e_25)
|
|
@@ -198948,8 +198949,8 @@
|
|
|
198948
198949
|
break;
|
|
198949
198950
|
case "LegendItemTemplate":
|
|
198950
198951
|
try {
|
|
198951
|
-
for (var
|
|
198952
|
-
var t =
|
|
198952
|
+
for (var _52 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _53 = _52.next(); !_53.done; _53 = _52.next()) {
|
|
198953
|
+
var t = _53.value;
|
|
198953
198954
|
t.f3();
|
|
198954
198955
|
}
|
|
198955
198956
|
}
|
|
@@ -198958,8 +198959,8 @@
|
|
|
198958
198959
|
}
|
|
198959
198960
|
finally {
|
|
198960
198961
|
try {
|
|
198961
|
-
if (
|
|
198962
|
-
_r.call(
|
|
198962
|
+
if (_53 && !_53.done && (_r = _52.return))
|
|
198963
|
+
_r.call(_52);
|
|
198963
198964
|
}
|
|
198964
198965
|
finally {
|
|
198965
198966
|
if (e_26)
|
|
@@ -198969,8 +198970,8 @@
|
|
|
198969
198970
|
break;
|
|
198970
198971
|
case "LegendItemVisibility":
|
|
198971
198972
|
try {
|
|
198972
|
-
for (var
|
|
198973
|
-
var u =
|
|
198973
|
+
for (var _54 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _55 = _54.next(); !_55.done; _55 = _54.next()) {
|
|
198974
|
+
var u = _55.value;
|
|
198974
198975
|
u.f4();
|
|
198975
198976
|
}
|
|
198976
198977
|
}
|
|
@@ -198979,8 +198980,8 @@
|
|
|
198979
198980
|
}
|
|
198980
198981
|
finally {
|
|
198981
198982
|
try {
|
|
198982
|
-
if (
|
|
198983
|
-
_s.call(
|
|
198983
|
+
if (_55 && !_55.done && (_s = _54.return))
|
|
198984
|
+
_s.call(_54);
|
|
198984
198985
|
}
|
|
198985
198986
|
finally {
|
|
198986
198987
|
if (e_27)
|
|
@@ -198990,8 +198991,8 @@
|
|
|
198990
198991
|
break;
|
|
198991
198992
|
case "LegendItemBadgeShape":
|
|
198992
198993
|
try {
|
|
198993
|
-
for (var
|
|
198994
|
-
var v =
|
|
198994
|
+
for (var _56 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _57 = _56.next(); !_57.done; _57 = _56.next()) {
|
|
198995
|
+
var v = _57.value;
|
|
198995
198996
|
v.f1();
|
|
198996
198997
|
}
|
|
198997
198998
|
}
|
|
@@ -199000,8 +199001,8 @@
|
|
|
199000
199001
|
}
|
|
199001
199002
|
finally {
|
|
199002
199003
|
try {
|
|
199003
|
-
if (
|
|
199004
|
-
_t.call(
|
|
199004
|
+
if (_57 && !_57.done && (_t = _56.return))
|
|
199005
|
+
_t.call(_56);
|
|
199005
199006
|
}
|
|
199006
199007
|
finally {
|
|
199007
199008
|
if (e_28)
|
|
@@ -199011,8 +199012,8 @@
|
|
|
199011
199012
|
break;
|
|
199012
199013
|
case "LegendItemBadgeMode":
|
|
199013
199014
|
try {
|
|
199014
|
-
for (var
|
|
199015
|
-
var w =
|
|
199015
|
+
for (var _58 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _59 = _58.next(); !_59.done; _59 = _58.next()) {
|
|
199016
|
+
var w = _59.value;
|
|
199016
199017
|
w.f0();
|
|
199017
199018
|
}
|
|
199018
199019
|
}
|
|
@@ -199021,8 +199022,8 @@
|
|
|
199021
199022
|
}
|
|
199022
199023
|
finally {
|
|
199023
199024
|
try {
|
|
199024
|
-
if (
|
|
199025
|
-
_u.call(
|
|
199025
|
+
if (_59 && !_59.done && (_u = _58.return))
|
|
199026
|
+
_u.call(_58);
|
|
199026
199027
|
}
|
|
199027
199028
|
finally {
|
|
199028
199029
|
if (e_29)
|
|
@@ -199032,9 +199033,9 @@
|
|
|
199032
199033
|
break;
|
|
199033
199034
|
case "MarkerTemplate":
|
|
199034
199035
|
try {
|
|
199035
|
-
for (var
|
|
199036
|
-
var x =
|
|
199037
|
-
x.
|
|
199036
|
+
for (var _60 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _61 = _60.next(); !_61.done; _61 = _60.next()) {
|
|
199037
|
+
var x = _61.value;
|
|
199038
|
+
x.gd();
|
|
199038
199039
|
}
|
|
199039
199040
|
}
|
|
199040
199041
|
catch (e_30_1) {
|
|
@@ -199042,8 +199043,8 @@
|
|
|
199042
199043
|
}
|
|
199043
199044
|
finally {
|
|
199044
199045
|
try {
|
|
199045
|
-
if (
|
|
199046
|
-
_v.call(
|
|
199046
|
+
if (_61 && !_61.done && (_v = _60.return))
|
|
199047
|
+
_v.call(_60);
|
|
199047
199048
|
}
|
|
199048
199049
|
finally {
|
|
199049
199050
|
if (e_30)
|
|
@@ -199053,9 +199054,9 @@
|
|
|
199053
199054
|
break;
|
|
199054
199055
|
case "MarkerType":
|
|
199055
199056
|
try {
|
|
199056
|
-
for (var
|
|
199057
|
-
var y =
|
|
199058
|
-
y.
|
|
199057
|
+
for (var _62 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _63 = _62.next(); !_63.done; _63 = _62.next()) {
|
|
199058
|
+
var y = _63.value;
|
|
199059
|
+
y.gf();
|
|
199059
199060
|
}
|
|
199060
199061
|
}
|
|
199061
199062
|
catch (e_31_1) {
|
|
@@ -199063,8 +199064,8 @@
|
|
|
199063
199064
|
}
|
|
199064
199065
|
finally {
|
|
199065
199066
|
try {
|
|
199066
|
-
if (
|
|
199067
|
-
_w.call(
|
|
199067
|
+
if (_63 && !_63.done && (_w = _62.return))
|
|
199068
|
+
_w.call(_62);
|
|
199068
199069
|
}
|
|
199069
199070
|
finally {
|
|
199070
199071
|
if (e_31)
|
|
@@ -199074,9 +199075,9 @@
|
|
|
199074
199075
|
break;
|
|
199075
199076
|
case "MarkerThickness":
|
|
199076
199077
|
try {
|
|
199077
|
-
for (var
|
|
199078
|
-
var z =
|
|
199079
|
-
z.
|
|
199078
|
+
for (var _64 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _65 = _64.next(); !_65.done; _65 = _64.next()) {
|
|
199079
|
+
var z = _65.value;
|
|
199080
|
+
z.ge();
|
|
199080
199081
|
}
|
|
199081
199082
|
}
|
|
199082
199083
|
catch (e_32_1) {
|
|
@@ -199084,8 +199085,8 @@
|
|
|
199084
199085
|
}
|
|
199085
199086
|
finally {
|
|
199086
199087
|
try {
|
|
199087
|
-
if (
|
|
199088
|
-
_x.call(
|
|
199088
|
+
if (_65 && !_65.done && (_x = _64.return))
|
|
199089
|
+
_x.call(_64);
|
|
199089
199090
|
}
|
|
199090
199091
|
finally {
|
|
199091
199092
|
if (e_32)
|
|
@@ -199095,9 +199096,9 @@
|
|
|
199095
199096
|
break;
|
|
199096
199097
|
case "MarkerBrush":
|
|
199097
199098
|
try {
|
|
199098
|
-
for (var
|
|
199099
|
-
var aa =
|
|
199100
|
-
aa.
|
|
199099
|
+
for (var _66 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _67 = _66.next(); !_67.done; _67 = _66.next()) {
|
|
199100
|
+
var aa = _67.value;
|
|
199101
|
+
aa.f7();
|
|
199101
199102
|
}
|
|
199102
199103
|
}
|
|
199103
199104
|
catch (e_33_1) {
|
|
@@ -199105,8 +199106,8 @@
|
|
|
199105
199106
|
}
|
|
199106
199107
|
finally {
|
|
199107
199108
|
try {
|
|
199108
|
-
if (
|
|
199109
|
-
_y.call(
|
|
199109
|
+
if (_67 && !_67.done && (_y = _66.return))
|
|
199110
|
+
_y.call(_66);
|
|
199110
199111
|
}
|
|
199111
199112
|
finally {
|
|
199112
199113
|
if (e_33)
|
|
@@ -199116,9 +199117,9 @@
|
|
|
199116
199117
|
break;
|
|
199117
199118
|
case "MarkerOutline":
|
|
199118
199119
|
try {
|
|
199119
|
-
for (var
|
|
199120
|
-
var ab =
|
|
199121
|
-
ab.
|
|
199120
|
+
for (var _68 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _69 = _68.next(); !_69.done; _69 = _68.next()) {
|
|
199121
|
+
var ab = _69.value;
|
|
199122
|
+
ab.ga();
|
|
199122
199123
|
}
|
|
199123
199124
|
}
|
|
199124
199125
|
catch (e_34_1) {
|
|
@@ -199126,8 +199127,8 @@
|
|
|
199126
199127
|
}
|
|
199127
199128
|
finally {
|
|
199128
199129
|
try {
|
|
199129
|
-
if (
|
|
199130
|
-
_z.call(
|
|
199130
|
+
if (_69 && !_69.done && (_z = _68.return))
|
|
199131
|
+
_z.call(_68);
|
|
199131
199132
|
}
|
|
199132
199133
|
finally {
|
|
199133
199134
|
if (e_34)
|
|
@@ -199137,9 +199138,9 @@
|
|
|
199137
199138
|
break;
|
|
199138
199139
|
case "MarkerOutlineMode":
|
|
199139
199140
|
try {
|
|
199140
|
-
for (var
|
|
199141
|
-
var ac =
|
|
199142
|
-
ac.
|
|
199141
|
+
for (var _70 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _71 = _70.next(); !_71.done; _71 = _70.next()) {
|
|
199142
|
+
var ac = _71.value;
|
|
199143
|
+
ac.gb();
|
|
199143
199144
|
}
|
|
199144
199145
|
}
|
|
199145
199146
|
catch (e_35_1) {
|
|
@@ -199147,8 +199148,8 @@
|
|
|
199147
199148
|
}
|
|
199148
199149
|
finally {
|
|
199149
199150
|
try {
|
|
199150
|
-
if (
|
|
199151
|
-
_0.call(
|
|
199151
|
+
if (_71 && !_71.done && (_0 = _70.return))
|
|
199152
|
+
_0.call(_70);
|
|
199152
199153
|
}
|
|
199153
199154
|
finally {
|
|
199154
199155
|
if (e_35)
|
|
@@ -199158,9 +199159,9 @@
|
|
|
199158
199159
|
break;
|
|
199159
199160
|
case "MarkerFillMode":
|
|
199160
199161
|
try {
|
|
199161
|
-
for (var
|
|
199162
|
-
var ad =
|
|
199163
|
-
ad.
|
|
199162
|
+
for (var _72 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _73 = _72.next(); !_73.done; _73 = _72.next()) {
|
|
199163
|
+
var ad = _73.value;
|
|
199164
|
+
ad.f8();
|
|
199164
199165
|
}
|
|
199165
199166
|
}
|
|
199166
199167
|
catch (e_36_1) {
|
|
@@ -199168,8 +199169,8 @@
|
|
|
199168
199169
|
}
|
|
199169
199170
|
finally {
|
|
199170
199171
|
try {
|
|
199171
|
-
if (
|
|
199172
|
-
_1.call(
|
|
199172
|
+
if (_73 && !_73.done && (_1 = _72.return))
|
|
199173
|
+
_1.call(_72);
|
|
199173
199174
|
}
|
|
199174
199175
|
finally {
|
|
199175
199176
|
if (e_36)
|
|
@@ -199179,9 +199180,9 @@
|
|
|
199179
199180
|
break;
|
|
199180
199181
|
case "MarkerStyle":
|
|
199181
199182
|
try {
|
|
199182
|
-
for (var
|
|
199183
|
-
var ae =
|
|
199184
|
-
ae.
|
|
199183
|
+
for (var _74 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _75 = _74.next(); !_75.done; _75 = _74.next()) {
|
|
199184
|
+
var ae = _75.value;
|
|
199185
|
+
ae.gc();
|
|
199185
199186
|
}
|
|
199186
199187
|
}
|
|
199187
199188
|
catch (e_37_1) {
|
|
@@ -199189,8 +199190,8 @@
|
|
|
199189
199190
|
}
|
|
199190
199191
|
finally {
|
|
199191
199192
|
try {
|
|
199192
|
-
if (
|
|
199193
|
-
_2.call(
|
|
199193
|
+
if (_75 && !_75.done && (_2 = _74.return))
|
|
199194
|
+
_2.call(_74);
|
|
199194
199195
|
}
|
|
199195
199196
|
finally {
|
|
199196
199197
|
if (e_37)
|
|
@@ -199200,9 +199201,9 @@
|
|
|
199200
199201
|
break;
|
|
199201
199202
|
case "Opacity":
|
|
199202
199203
|
try {
|
|
199203
|
-
for (var
|
|
199204
|
-
var af =
|
|
199205
|
-
af.
|
|
199204
|
+
for (var _76 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _77 = _76.next(); !_77.done; _77 = _76.next()) {
|
|
199205
|
+
var af = _77.value;
|
|
199206
|
+
af.gg();
|
|
199206
199207
|
}
|
|
199207
199208
|
}
|
|
199208
199209
|
catch (e_38_1) {
|
|
@@ -199210,8 +199211,8 @@
|
|
|
199210
199211
|
}
|
|
199211
199212
|
finally {
|
|
199212
199213
|
try {
|
|
199213
|
-
if (
|
|
199214
|
-
_3.call(
|
|
199214
|
+
if (_77 && !_77.done && (_3 = _76.return))
|
|
199215
|
+
_3.call(_76);
|
|
199215
199216
|
}
|
|
199216
199217
|
finally {
|
|
199217
199218
|
if (e_38)
|
|
@@ -199221,9 +199222,9 @@
|
|
|
199221
199222
|
break;
|
|
199222
199223
|
case "OpacityMask":
|
|
199223
199224
|
try {
|
|
199224
|
-
for (var
|
|
199225
|
-
var ag =
|
|
199226
|
-
ag.
|
|
199225
|
+
for (var _78 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _79 = _78.next(); !_79.done; _79 = _78.next()) {
|
|
199226
|
+
var ag = _79.value;
|
|
199227
|
+
ag.gh();
|
|
199227
199228
|
}
|
|
199228
199229
|
}
|
|
199229
199230
|
catch (e_39_1) {
|
|
@@ -199231,8 +199232,8 @@
|
|
|
199231
199232
|
}
|
|
199232
199233
|
finally {
|
|
199233
199234
|
try {
|
|
199234
|
-
if (
|
|
199235
|
-
_4.call(
|
|
199235
|
+
if (_79 && !_79.done && (_4 = _78.return))
|
|
199236
|
+
_4.call(_78);
|
|
199236
199237
|
}
|
|
199237
199238
|
finally {
|
|
199238
199239
|
if (e_39)
|
|
@@ -199242,8 +199243,8 @@
|
|
|
199242
199243
|
break;
|
|
199243
199244
|
case "AreaFillOpacity":
|
|
199244
199245
|
try {
|
|
199245
|
-
for (var
|
|
199246
|
-
var ah =
|
|
199246
|
+
for (var _80 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _81 = _80.next(); !_81.done; _81 = _80.next()) {
|
|
199247
|
+
var ah = _81.value;
|
|
199247
199248
|
ah.fq();
|
|
199248
199249
|
}
|
|
199249
199250
|
}
|
|
@@ -199252,8 +199253,8 @@
|
|
|
199252
199253
|
}
|
|
199253
199254
|
finally {
|
|
199254
199255
|
try {
|
|
199255
|
-
if (
|
|
199256
|
-
_5.call(
|
|
199256
|
+
if (_81 && !_81.done && (_5 = _80.return))
|
|
199257
|
+
_5.call(_80);
|
|
199257
199258
|
}
|
|
199258
199259
|
finally {
|
|
199259
199260
|
if (e_40)
|
|
@@ -199263,9 +199264,9 @@
|
|
|
199263
199264
|
break;
|
|
199264
199265
|
case "Outline":
|
|
199265
199266
|
try {
|
|
199266
|
-
for (var
|
|
199267
|
-
var ai =
|
|
199268
|
-
ai.
|
|
199267
|
+
for (var _82 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _83 = _82.next(); !_83.done; _83 = _82.next()) {
|
|
199268
|
+
var ai = _83.value;
|
|
199269
|
+
ai.gi();
|
|
199269
199270
|
}
|
|
199270
199271
|
}
|
|
199271
199272
|
catch (e_41_1) {
|
|
@@ -199273,8 +199274,8 @@
|
|
|
199273
199274
|
}
|
|
199274
199275
|
finally {
|
|
199275
199276
|
try {
|
|
199276
|
-
if (
|
|
199277
|
-
_6.call(
|
|
199277
|
+
if (_83 && !_83.done && (_6 = _82.return))
|
|
199278
|
+
_6.call(_82);
|
|
199278
199279
|
}
|
|
199279
199280
|
finally {
|
|
199280
199281
|
if (e_41)
|
|
@@ -199284,8 +199285,8 @@
|
|
|
199284
199285
|
break;
|
|
199285
199286
|
case "LineCap":
|
|
199286
199287
|
try {
|
|
199287
|
-
for (var
|
|
199288
|
-
var aj =
|
|
199288
|
+
for (var _84 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _85 = _84.next(); !_85.done; _85 = _84.next()) {
|
|
199289
|
+
var aj = _85.value;
|
|
199289
199290
|
aj.f5();
|
|
199290
199291
|
}
|
|
199291
199292
|
}
|
|
@@ -199294,8 +199295,8 @@
|
|
|
199294
199295
|
}
|
|
199295
199296
|
finally {
|
|
199296
199297
|
try {
|
|
199297
|
-
if (
|
|
199298
|
-
_7.call(
|
|
199298
|
+
if (_85 && !_85.done && (_7 = _84.return))
|
|
199299
|
+
_7.call(_84);
|
|
199299
199300
|
}
|
|
199300
199301
|
finally {
|
|
199301
199302
|
if (e_42)
|
|
@@ -199305,9 +199306,9 @@
|
|
|
199305
199306
|
break;
|
|
199306
199307
|
case "OutlineMode":
|
|
199307
199308
|
try {
|
|
199308
|
-
for (var
|
|
199309
|
-
var ak =
|
|
199310
|
-
ak.
|
|
199309
|
+
for (var _86 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _87 = _86.next(); !_87.done; _87 = _86.next()) {
|
|
199310
|
+
var ak = _87.value;
|
|
199311
|
+
ak.gj();
|
|
199311
199312
|
}
|
|
199312
199313
|
}
|
|
199313
199314
|
catch (e_43_1) {
|
|
@@ -199315,8 +199316,8 @@
|
|
|
199315
199316
|
}
|
|
199316
199317
|
finally {
|
|
199317
199318
|
try {
|
|
199318
|
-
if (
|
|
199319
|
-
_8.call(
|
|
199319
|
+
if (_87 && !_87.done && (_8 = _86.return))
|
|
199320
|
+
_8.call(_86);
|
|
199320
199321
|
}
|
|
199321
199322
|
finally {
|
|
199322
199323
|
if (e_43)
|
|
@@ -199326,9 +199327,9 @@
|
|
|
199326
199327
|
break;
|
|
199327
199328
|
case "MarkerFillOpacity":
|
|
199328
199329
|
try {
|
|
199329
|
-
for (var
|
|
199330
|
-
var al =
|
|
199331
|
-
al.
|
|
199330
|
+
for (var _88 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _89 = _88.next(); !_89.done; _89 = _88.next()) {
|
|
199331
|
+
var al = _89.value;
|
|
199332
|
+
al.f9();
|
|
199332
199333
|
}
|
|
199333
199334
|
}
|
|
199334
199335
|
catch (e_44_1) {
|
|
@@ -199336,8 +199337,8 @@
|
|
|
199336
199337
|
}
|
|
199337
199338
|
finally {
|
|
199338
199339
|
try {
|
|
199339
|
-
if (
|
|
199340
|
-
_9.call(
|
|
199340
|
+
if (_89 && !_89.done && (_9 = _88.return))
|
|
199341
|
+
_9.call(_88);
|
|
199341
199342
|
}
|
|
199342
199343
|
finally {
|
|
199343
199344
|
if (e_44)
|
|
@@ -199347,9 +199348,9 @@
|
|
|
199347
199348
|
break;
|
|
199348
199349
|
case "Thickness":
|
|
199349
199350
|
try {
|
|
199350
|
-
for (var
|
|
199351
|
-
var am =
|
|
199352
|
-
am.
|
|
199351
|
+
for (var _90 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _91 = _90.next(); !_91.done; _91 = _90.next()) {
|
|
199352
|
+
var am = _91.value;
|
|
199353
|
+
am.gq();
|
|
199353
199354
|
}
|
|
199354
199355
|
}
|
|
199355
199356
|
catch (e_45_1) {
|
|
@@ -199357,8 +199358,8 @@
|
|
|
199357
199358
|
}
|
|
199358
199359
|
finally {
|
|
199359
199360
|
try {
|
|
199360
|
-
if (
|
|
199361
|
-
_10.call(
|
|
199361
|
+
if (_91 && !_91.done && (_10 = _90.return))
|
|
199362
|
+
_10.call(_90);
|
|
199362
199363
|
}
|
|
199363
199364
|
finally {
|
|
199364
199365
|
if (e_45)
|
|
@@ -199366,11 +199367,11 @@
|
|
|
199366
199367
|
}
|
|
199367
199368
|
}
|
|
199368
199369
|
break;
|
|
199369
|
-
case "
|
|
199370
|
+
case "LineJoin":
|
|
199370
199371
|
try {
|
|
199371
|
-
for (var
|
|
199372
|
-
var an =
|
|
199373
|
-
an.
|
|
199372
|
+
for (var _92 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _93 = _92.next(); !_93.done; _93 = _92.next()) {
|
|
199373
|
+
var an = _93.value;
|
|
199374
|
+
an.f6();
|
|
199374
199375
|
}
|
|
199375
199376
|
}
|
|
199376
199377
|
catch (e_46_1) {
|
|
@@ -199378,8 +199379,8 @@
|
|
|
199378
199379
|
}
|
|
199379
199380
|
finally {
|
|
199380
199381
|
try {
|
|
199381
|
-
if (
|
|
199382
|
-
_11.call(
|
|
199382
|
+
if (_93 && !_93.done && (_11 = _92.return))
|
|
199383
|
+
_11.call(_92);
|
|
199383
199384
|
}
|
|
199384
199385
|
finally {
|
|
199385
199386
|
if (e_46)
|
|
@@ -199387,11 +199388,11 @@
|
|
|
199387
199388
|
}
|
|
199388
199389
|
}
|
|
199389
199390
|
break;
|
|
199390
|
-
case "
|
|
199391
|
+
case "ToolTip":
|
|
199391
199392
|
try {
|
|
199392
|
-
for (var
|
|
199393
|
-
var ao =
|
|
199394
|
-
ao.
|
|
199393
|
+
for (var _94 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _95 = _94.next(); !_95.done; _95 = _94.next()) {
|
|
199394
|
+
var ao = _95.value;
|
|
199395
|
+
ao.gs();
|
|
199395
199396
|
}
|
|
199396
199397
|
}
|
|
199397
199398
|
catch (e_47_1) {
|
|
@@ -199399,8 +199400,8 @@
|
|
|
199399
199400
|
}
|
|
199400
199401
|
finally {
|
|
199401
199402
|
try {
|
|
199402
|
-
if (
|
|
199403
|
-
_12.call(
|
|
199403
|
+
if (_95 && !_95.done && (_12 = _94.return))
|
|
199404
|
+
_12.call(_94);
|
|
199404
199405
|
}
|
|
199405
199406
|
finally {
|
|
199406
199407
|
if (e_47)
|
|
@@ -199408,11 +199409,11 @@
|
|
|
199408
199409
|
}
|
|
199409
199410
|
}
|
|
199410
199411
|
break;
|
|
199411
|
-
case "
|
|
199412
|
+
case "TransitionEasingFunction":
|
|
199412
199413
|
try {
|
|
199413
|
-
for (var
|
|
199414
|
-
var ap =
|
|
199415
|
-
ap.
|
|
199414
|
+
for (var _96 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _97 = _96.next(); !_97.done; _97 = _96.next()) {
|
|
199415
|
+
var ap = _97.value;
|
|
199416
|
+
ap.gu();
|
|
199416
199417
|
}
|
|
199417
199418
|
}
|
|
199418
199419
|
catch (e_48_1) {
|
|
@@ -199420,8 +199421,8 @@
|
|
|
199420
199421
|
}
|
|
199421
199422
|
finally {
|
|
199422
199423
|
try {
|
|
199423
|
-
if (
|
|
199424
|
-
_13.call(
|
|
199424
|
+
if (_97 && !_97.done && (_13 = _96.return))
|
|
199425
|
+
_13.call(_96);
|
|
199425
199426
|
}
|
|
199426
199427
|
finally {
|
|
199427
199428
|
if (e_48)
|
|
@@ -199429,11 +199430,11 @@
|
|
|
199429
199430
|
}
|
|
199430
199431
|
}
|
|
199431
199432
|
break;
|
|
199432
|
-
case "
|
|
199433
|
+
case "TransitionDuration":
|
|
199433
199434
|
try {
|
|
199434
|
-
for (var
|
|
199435
|
-
var aq =
|
|
199436
|
-
aq.
|
|
199435
|
+
for (var _98 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _99 = _98.next(); !_99.done; _99 = _98.next()) {
|
|
199436
|
+
var aq = _99.value;
|
|
199437
|
+
aq.gt();
|
|
199437
199438
|
}
|
|
199438
199439
|
}
|
|
199439
199440
|
catch (e_49_1) {
|
|
@@ -199441,8 +199442,8 @@
|
|
|
199441
199442
|
}
|
|
199442
199443
|
finally {
|
|
199443
199444
|
try {
|
|
199444
|
-
if (
|
|
199445
|
-
_14.call(
|
|
199445
|
+
if (_99 && !_99.done && (_14 = _98.return))
|
|
199446
|
+
_14.call(_98);
|
|
199446
199447
|
}
|
|
199447
199448
|
finally {
|
|
199448
199449
|
if (e_49)
|
|
@@ -199450,11 +199451,11 @@
|
|
|
199450
199451
|
}
|
|
199451
199452
|
}
|
|
199452
199453
|
break;
|
|
199453
|
-
case "
|
|
199454
|
+
case "IsTransitionInEnabled":
|
|
199454
199455
|
try {
|
|
199455
|
-
for (var
|
|
199456
|
-
var ar =
|
|
199457
|
-
ar.
|
|
199456
|
+
for (var _100 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _101 = _100.next(); !_101.done; _101 = _100.next()) {
|
|
199457
|
+
var ar = _101.value;
|
|
199458
|
+
ar.fy();
|
|
199458
199459
|
}
|
|
199459
199460
|
}
|
|
199460
199461
|
catch (e_50_1) {
|
|
@@ -199462,8 +199463,8 @@
|
|
|
199462
199463
|
}
|
|
199463
199464
|
finally {
|
|
199464
199465
|
try {
|
|
199465
|
-
if (
|
|
199466
|
-
_15.call(
|
|
199466
|
+
if (_101 && !_101.done && (_15 = _100.return))
|
|
199467
|
+
_15.call(_100);
|
|
199467
199468
|
}
|
|
199468
199469
|
finally {
|
|
199469
199470
|
if (e_50)
|
|
@@ -199471,11 +199472,11 @@
|
|
|
199471
199472
|
}
|
|
199472
199473
|
}
|
|
199473
199474
|
break;
|
|
199474
|
-
case "
|
|
199475
|
+
case "TransitionInMode":
|
|
199475
199476
|
try {
|
|
199476
|
-
for (var
|
|
199477
|
-
var as =
|
|
199478
|
-
as.
|
|
199477
|
+
for (var _102 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _103 = _102.next(); !_103.done; _103 = _102.next()) {
|
|
199478
|
+
var as = _103.value;
|
|
199479
|
+
as.gx();
|
|
199479
199480
|
}
|
|
199480
199481
|
}
|
|
199481
199482
|
catch (e_51_1) {
|
|
@@ -199483,8 +199484,8 @@
|
|
|
199483
199484
|
}
|
|
199484
199485
|
finally {
|
|
199485
199486
|
try {
|
|
199486
|
-
if (
|
|
199487
|
-
_16.call(
|
|
199487
|
+
if (_103 && !_103.done && (_16 = _102.return))
|
|
199488
|
+
_16.call(_102);
|
|
199488
199489
|
}
|
|
199489
199490
|
finally {
|
|
199490
199491
|
if (e_51)
|
|
@@ -199492,10 +199493,10 @@
|
|
|
199492
199493
|
}
|
|
199493
199494
|
}
|
|
199494
199495
|
break;
|
|
199495
|
-
case "
|
|
199496
|
+
case "TransitionInDuration":
|
|
199496
199497
|
try {
|
|
199497
|
-
for (var
|
|
199498
|
-
var at =
|
|
199498
|
+
for (var _104 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _105 = _104.next(); !_105.done; _105 = _104.next()) {
|
|
199499
|
+
var at = _105.value;
|
|
199499
199500
|
at.fy();
|
|
199500
199501
|
}
|
|
199501
199502
|
}
|
|
@@ -199504,8 +199505,8 @@
|
|
|
199504
199505
|
}
|
|
199505
199506
|
finally {
|
|
199506
199507
|
try {
|
|
199507
|
-
if (
|
|
199508
|
-
_17.call(
|
|
199508
|
+
if (_105 && !_105.done && (_17 = _104.return))
|
|
199509
|
+
_17.call(_104);
|
|
199509
199510
|
}
|
|
199510
199511
|
finally {
|
|
199511
199512
|
if (e_52)
|
|
@@ -199513,11 +199514,11 @@
|
|
|
199513
199514
|
}
|
|
199514
199515
|
}
|
|
199515
199516
|
break;
|
|
199516
|
-
case "
|
|
199517
|
+
case "TransitionInSpeedType":
|
|
199517
199518
|
try {
|
|
199518
|
-
for (var
|
|
199519
|
-
var au =
|
|
199520
|
-
au.
|
|
199519
|
+
for (var _106 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _107 = _106.next(); !_107.done; _107 = _106.next()) {
|
|
199520
|
+
var au = _107.value;
|
|
199521
|
+
au.fy();
|
|
199521
199522
|
}
|
|
199522
199523
|
}
|
|
199523
199524
|
catch (e_53_1) {
|
|
@@ -199525,8 +199526,8 @@
|
|
|
199525
199526
|
}
|
|
199526
199527
|
finally {
|
|
199527
199528
|
try {
|
|
199528
|
-
if (
|
|
199529
|
-
_18.call(
|
|
199529
|
+
if (_107 && !_107.done && (_18 = _106.return))
|
|
199530
|
+
_18.call(_106);
|
|
199530
199531
|
}
|
|
199531
199532
|
finally {
|
|
199532
199533
|
if (e_53)
|
|
@@ -199534,11 +199535,11 @@
|
|
|
199534
199535
|
}
|
|
199535
199536
|
}
|
|
199536
199537
|
break;
|
|
199537
|
-
case "
|
|
199538
|
+
case "TransitionInEasingFunction":
|
|
199538
199539
|
try {
|
|
199539
|
-
for (var
|
|
199540
|
-
var av =
|
|
199541
|
-
av.
|
|
199540
|
+
for (var _108 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _109 = _108.next(); !_109.done; _109 = _108.next()) {
|
|
199541
|
+
var av = _109.value;
|
|
199542
|
+
av.gw();
|
|
199542
199543
|
}
|
|
199543
199544
|
}
|
|
199544
199545
|
catch (e_54_1) {
|
|
@@ -199546,8 +199547,8 @@
|
|
|
199546
199547
|
}
|
|
199547
199548
|
finally {
|
|
199548
199549
|
try {
|
|
199549
|
-
if (
|
|
199550
|
-
_19.call(
|
|
199550
|
+
if (_109 && !_109.done && (_19 = _108.return))
|
|
199551
|
+
_19.call(_108);
|
|
199551
199552
|
}
|
|
199552
199553
|
finally {
|
|
199553
199554
|
if (e_54)
|
|
@@ -199555,11 +199556,11 @@
|
|
|
199555
199556
|
}
|
|
199556
199557
|
}
|
|
199557
199558
|
break;
|
|
199558
|
-
case "
|
|
199559
|
+
case "UseLightweightMarkers":
|
|
199559
199560
|
try {
|
|
199560
|
-
for (var
|
|
199561
|
-
var aw =
|
|
199562
|
-
aw.
|
|
199561
|
+
for (var _110 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _111 = _110.next(); !_111.done; _111 = _110.next()) {
|
|
199562
|
+
var aw = _111.value;
|
|
199563
|
+
aw.g0();
|
|
199563
199564
|
}
|
|
199564
199565
|
}
|
|
199565
199566
|
catch (e_55_1) {
|
|
@@ -199567,8 +199568,8 @@
|
|
|
199567
199568
|
}
|
|
199568
199569
|
finally {
|
|
199569
199570
|
try {
|
|
199570
|
-
if (
|
|
199571
|
-
_20.call(
|
|
199571
|
+
if (_111 && !_111.done && (_20 = _110.return))
|
|
199572
|
+
_20.call(_110);
|
|
199572
199573
|
}
|
|
199573
199574
|
finally {
|
|
199574
199575
|
if (e_55)
|
|
@@ -199576,6 +199577,27 @@
|
|
|
199576
199577
|
}
|
|
199577
199578
|
}
|
|
199578
199579
|
break;
|
|
199580
|
+
case "UseHighMarkerFidelity":
|
|
199581
|
+
try {
|
|
199582
|
+
for (var _112 = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _113 = _112.next(); !_113.done; _113 = _112.next()) {
|
|
199583
|
+
var ax = _113.value;
|
|
199584
|
+
ax.gz();
|
|
199585
|
+
}
|
|
199586
|
+
}
|
|
199587
|
+
catch (e_56_1) {
|
|
199588
|
+
e_56 = { error: e_56_1 };
|
|
199589
|
+
}
|
|
199590
|
+
finally {
|
|
199591
|
+
try {
|
|
199592
|
+
if (_113 && !_113.done && (_21 = _112.return))
|
|
199593
|
+
_21.call(_112);
|
|
199594
|
+
}
|
|
199595
|
+
finally {
|
|
199596
|
+
if (e_56)
|
|
199597
|
+
throw e_56.error;
|
|
199598
|
+
}
|
|
199599
|
+
}
|
|
199600
|
+
break;
|
|
199579
199601
|
}
|
|
199580
199602
|
};
|
|
199581
199603
|
Object.defineProperty(StackedSeriesBase.prototype, "currentCategoryMode", {
|
|
@@ -199623,7 +199645,7 @@
|
|
|
199623
199645
|
return false;
|
|
199624
199646
|
};
|
|
199625
199647
|
StackedSeriesBase.prototype.mp = function (a, b) {
|
|
199626
|
-
var
|
|
199648
|
+
var e_57, _a;
|
|
199627
199649
|
var c = this.e3;
|
|
199628
199650
|
_super.prototype.mp.call(this, a, b);
|
|
199629
199651
|
if (!c) {
|
|
@@ -199640,8 +199662,8 @@
|
|
|
199640
199662
|
d.visualSeriesLink.mp(a, b);
|
|
199641
199663
|
}
|
|
199642
199664
|
}
|
|
199643
|
-
catch (
|
|
199644
|
-
|
|
199665
|
+
catch (e_57_1) {
|
|
199666
|
+
e_57 = { error: e_57_1 };
|
|
199645
199667
|
}
|
|
199646
199668
|
finally {
|
|
199647
199669
|
try {
|
|
@@ -199649,14 +199671,14 @@
|
|
|
199649
199671
|
_a.call(_b);
|
|
199650
199672
|
}
|
|
199651
199673
|
finally {
|
|
199652
|
-
if (
|
|
199653
|
-
throw
|
|
199674
|
+
if (e_57)
|
|
199675
|
+
throw e_57.error;
|
|
199654
199676
|
}
|
|
199655
199677
|
}
|
|
199656
199678
|
this.e3 = false;
|
|
199657
199679
|
};
|
|
199658
199680
|
StackedSeriesBase.prototype.mm = function (a, b, c, d, e) {
|
|
199659
|
-
var
|
|
199681
|
+
var e_58, _a;
|
|
199660
199682
|
_super.prototype.mm.call(this, a, b, c, d, e);
|
|
199661
199683
|
var f = this.a7.a$h.item(d);
|
|
199662
199684
|
f.cr.g(this.fx);
|
|
@@ -199677,8 +199699,8 @@
|
|
|
199677
199699
|
g.visualSeriesLink.mm(a, b, c, d, e);
|
|
199678
199700
|
}
|
|
199679
199701
|
}
|
|
199680
|
-
catch (
|
|
199681
|
-
|
|
199702
|
+
catch (e_58_1) {
|
|
199703
|
+
e_58 = { error: e_58_1 };
|
|
199682
199704
|
}
|
|
199683
199705
|
finally {
|
|
199684
199706
|
try {
|
|
@@ -199686,13 +199708,13 @@
|
|
|
199686
199708
|
_a.call(_b);
|
|
199687
199709
|
}
|
|
199688
199710
|
finally {
|
|
199689
|
-
if (
|
|
199690
|
-
throw
|
|
199711
|
+
if (e_58)
|
|
199712
|
+
throw e_58.error;
|
|
199691
199713
|
}
|
|
199692
199714
|
}
|
|
199693
199715
|
};
|
|
199694
199716
|
StackedSeriesBase.prototype.hx = function () {
|
|
199695
|
-
var
|
|
199717
|
+
var e_59, _a;
|
|
199696
199718
|
var a = this.a9.exportStackedVisualData(this, this.p7);
|
|
199697
199719
|
try {
|
|
199698
199720
|
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.series)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
@@ -199702,8 +199724,8 @@
|
|
|
199702
199724
|
this.a9.addSubSeriesVisualData(a, c);
|
|
199703
199725
|
}
|
|
199704
199726
|
}
|
|
199705
|
-
catch (
|
|
199706
|
-
|
|
199727
|
+
catch (e_59_1) {
|
|
199728
|
+
e_59 = { error: e_59_1 };
|
|
199707
199729
|
}
|
|
199708
199730
|
finally {
|
|
199709
199731
|
try {
|
|
@@ -199711,8 +199733,8 @@
|
|
|
199711
199733
|
_a.call(_b);
|
|
199712
199734
|
}
|
|
199713
199735
|
finally {
|
|
199714
|
-
if (
|
|
199715
|
-
throw
|
|
199736
|
+
if (e_59)
|
|
199737
|
+
throw e_59.error;
|
|
199716
199738
|
}
|
|
199717
199739
|
}
|
|
199718
199740
|
this.lc(a);
|
|
@@ -199779,7 +199801,7 @@
|
|
|
199779
199801
|
return this.yAxis != null && this.yAxis.c0();
|
|
199780
199802
|
};
|
|
199781
199803
|
HorizontalStackedSeriesBase.prototype.my = function () {
|
|
199782
|
-
var
|
|
199804
|
+
var e_60, _a;
|
|
199783
199805
|
var a = (igniteuiWebcomponentsCore.typeCast(XamDataChart.$, this.ce));
|
|
199784
199806
|
if (a != null) {
|
|
199785
199807
|
this.fu = igniteuiWebcomponentsCore.isNaN_(this.f3) ? a.ua.fp : this.f3;
|
|
@@ -199789,8 +199811,8 @@
|
|
|
199789
199811
|
b.fq();
|
|
199790
199812
|
}
|
|
199791
199813
|
}
|
|
199792
|
-
catch (
|
|
199793
|
-
|
|
199814
|
+
catch (e_60_1) {
|
|
199815
|
+
e_60 = { error: e_60_1 };
|
|
199794
199816
|
}
|
|
199795
199817
|
finally {
|
|
199796
199818
|
try {
|
|
@@ -199798,8 +199820,8 @@
|
|
|
199798
199820
|
_a.call(_b);
|
|
199799
199821
|
}
|
|
199800
199822
|
finally {
|
|
199801
|
-
if (
|
|
199802
|
-
throw
|
|
199823
|
+
if (e_60)
|
|
199824
|
+
throw e_60.error;
|
|
199803
199825
|
}
|
|
199804
199826
|
}
|
|
199805
199827
|
}
|
|
@@ -200094,7 +200116,7 @@
|
|
|
200094
200116
|
return 2;
|
|
200095
200117
|
};
|
|
200096
200118
|
StackedBarSeries.prototype.s0 = function () {
|
|
200097
|
-
var
|
|
200119
|
+
var e_61, _a;
|
|
200098
200120
|
var a = 0;
|
|
200099
200121
|
try {
|
|
200100
200122
|
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.ce.series)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
@@ -200108,8 +200130,8 @@
|
|
|
200108
200130
|
}
|
|
200109
200131
|
}
|
|
200110
200132
|
}
|
|
200111
|
-
catch (
|
|
200112
|
-
|
|
200133
|
+
catch (e_61_1) {
|
|
200134
|
+
e_61 = { error: e_61_1 };
|
|
200113
200135
|
}
|
|
200114
200136
|
finally {
|
|
200115
200137
|
try {
|
|
@@ -200117,8 +200139,8 @@
|
|
|
200117
200139
|
_a.call(_b);
|
|
200118
200140
|
}
|
|
200119
200141
|
finally {
|
|
200120
|
-
if (
|
|
200121
|
-
throw
|
|
200142
|
+
if (e_61)
|
|
200143
|
+
throw e_61.error;
|
|
200122
200144
|
}
|
|
200123
200145
|
}
|
|
200124
200146
|
return -1;
|
|
@@ -200292,7 +200314,7 @@
|
|
|
200292
200314
|
return this.yAxis.k3(this.b1.bv, this.b1.bu, this.getEffectiveViewport1(this.b1));
|
|
200293
200315
|
};
|
|
200294
200316
|
StackedBarSeries.prototype.ue = function (a, b, c, d) {
|
|
200295
|
-
var
|
|
200317
|
+
var e_62, _a;
|
|
200296
200318
|
var e = igniteuiWebcomponentsCore.typeCast(BarFragment.$, a);
|
|
200297
200319
|
var f = igniteuiWebcomponentsCore.typeCast(ColumnFragmentView.$, c);
|
|
200298
200320
|
if (!this.fd(c.bu, c.bv, c) || e == null || f == null) {
|
|
@@ -200348,8 +200370,8 @@
|
|
|
200348
200370
|
r++;
|
|
200349
200371
|
}
|
|
200350
200372
|
}
|
|
200351
|
-
catch (
|
|
200352
|
-
|
|
200373
|
+
catch (e_62_1) {
|
|
200374
|
+
e_62 = { error: e_62_1 };
|
|
200353
200375
|
}
|
|
200354
200376
|
finally {
|
|
200355
200377
|
try {
|
|
@@ -200357,14 +200379,14 @@
|
|
|
200357
200379
|
_a.call(_b);
|
|
200358
200380
|
}
|
|
200359
200381
|
finally {
|
|
200360
|
-
if (
|
|
200361
|
-
throw
|
|
200382
|
+
if (e_62)
|
|
200383
|
+
throw e_62.error;
|
|
200362
200384
|
}
|
|
200363
200385
|
}
|
|
200364
200386
|
f.db.count = h;
|
|
200365
200387
|
};
|
|
200366
200388
|
StackedBarSeries.prototype.l9 = function (a, b, c, d) {
|
|
200367
|
-
var
|
|
200389
|
+
var e_63, _a;
|
|
200368
200390
|
_super.prototype.l9.call(this, a, b, c, d);
|
|
200369
200391
|
switch (b) {
|
|
200370
200392
|
case StackedBarSeries.$$p[0]:
|
|
@@ -200372,12 +200394,12 @@
|
|
|
200372
200394
|
try {
|
|
200373
200395
|
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
200374
200396
|
var e = _c.value;
|
|
200375
|
-
e.gj();
|
|
200376
200397
|
e.gk();
|
|
200398
|
+
e.gl();
|
|
200377
200399
|
}
|
|
200378
200400
|
}
|
|
200379
|
-
catch (
|
|
200380
|
-
|
|
200401
|
+
catch (e_63_1) {
|
|
200402
|
+
e_63 = { error: e_63_1 };
|
|
200381
200403
|
}
|
|
200382
200404
|
finally {
|
|
200383
200405
|
try {
|
|
@@ -200385,8 +200407,8 @@
|
|
|
200385
200407
|
_a.call(_b);
|
|
200386
200408
|
}
|
|
200387
200409
|
finally {
|
|
200388
|
-
if (
|
|
200389
|
-
throw
|
|
200410
|
+
if (e_63)
|
|
200411
|
+
throw e_63.error;
|
|
200390
200412
|
}
|
|
200391
200413
|
}
|
|
200392
200414
|
this.mn(false);
|
|
@@ -200486,7 +200508,7 @@
|
|
|
200486
200508
|
return this.xAxis.k3(this.b1.bv, this.b1.bu, a);
|
|
200487
200509
|
};
|
|
200488
200510
|
StackedColumnSeries.prototype.ue = function (a, b, c, d) {
|
|
200489
|
-
var
|
|
200511
|
+
var e_64, _a;
|
|
200490
200512
|
var e = igniteuiWebcomponentsCore.typeCast(ColumnFragment.$, a);
|
|
200491
200513
|
var f = igniteuiWebcomponentsCore.typeCast(ColumnFragmentView.$, c);
|
|
200492
200514
|
if (!this.fd(c.bu, c.bv, c) || e == null || f == null) {
|
|
@@ -200546,8 +200568,8 @@
|
|
|
200546
200568
|
s++;
|
|
200547
200569
|
}
|
|
200548
200570
|
}
|
|
200549
|
-
catch (
|
|
200550
|
-
|
|
200571
|
+
catch (e_64_1) {
|
|
200572
|
+
e_64 = { error: e_64_1 };
|
|
200551
200573
|
}
|
|
200552
200574
|
finally {
|
|
200553
200575
|
try {
|
|
@@ -200555,14 +200577,14 @@
|
|
|
200555
200577
|
_a.call(_b);
|
|
200556
200578
|
}
|
|
200557
200579
|
finally {
|
|
200558
|
-
if (
|
|
200559
|
-
throw
|
|
200580
|
+
if (e_64)
|
|
200581
|
+
throw e_64.error;
|
|
200560
200582
|
}
|
|
200561
200583
|
}
|
|
200562
200584
|
f.db.count = i;
|
|
200563
200585
|
};
|
|
200564
200586
|
StackedColumnSeries.prototype.l9 = function (a, b, c, d) {
|
|
200565
|
-
var
|
|
200587
|
+
var e_65, _a;
|
|
200566
200588
|
_super.prototype.l9.call(this, a, b, c, d);
|
|
200567
200589
|
switch (b) {
|
|
200568
200590
|
case StackedColumnSeries.$$p[0]:
|
|
@@ -200570,12 +200592,12 @@
|
|
|
200570
200592
|
try {
|
|
200571
200593
|
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.tq)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
200572
200594
|
var e = _c.value;
|
|
200573
|
-
e.gj();
|
|
200574
200595
|
e.gk();
|
|
200596
|
+
e.gl();
|
|
200575
200597
|
}
|
|
200576
200598
|
}
|
|
200577
|
-
catch (
|
|
200578
|
-
|
|
200599
|
+
catch (e_65_1) {
|
|
200600
|
+
e_65 = { error: e_65_1 };
|
|
200579
200601
|
}
|
|
200580
200602
|
finally {
|
|
200581
200603
|
try {
|
|
@@ -200583,8 +200605,8 @@
|
|
|
200583
200605
|
_a.call(_b);
|
|
200584
200606
|
}
|
|
200585
200607
|
finally {
|
|
200586
|
-
if (
|
|
200587
|
-
throw
|
|
200608
|
+
if (e_65)
|
|
200609
|
+
throw e_65.error;
|
|
200588
200610
|
}
|
|
200589
200611
|
}
|
|
200590
200612
|
this.mn(false);
|
|
@@ -200662,7 +200684,7 @@
|
|
|
200662
200684
|
return 0;
|
|
200663
200685
|
};
|
|
200664
200686
|
StackedSplineAreaSeries.prototype.l9 = function (a, b, c, d) {
|
|
200665
|
-
var
|
|
200687
|
+
var e_66, _a;
|
|
200666
200688
|
_super.prototype.l9.call(this, a, b, c, d);
|
|
200667
200689
|
switch (b) {
|
|
200668
200690
|
case StackedSplineAreaSeries.$$p[0]:
|
|
@@ -200672,8 +200694,8 @@
|
|
|
200672
200694
|
e.fx();
|
|
200673
200695
|
}
|
|
200674
200696
|
}
|
|
200675
|
-
catch (
|
|
200676
|
-
|
|
200697
|
+
catch (e_66_1) {
|
|
200698
|
+
e_66 = { error: e_66_1 };
|
|
200677
200699
|
}
|
|
200678
200700
|
finally {
|
|
200679
200701
|
try {
|
|
@@ -200681,8 +200703,8 @@
|
|
|
200681
200703
|
_a.call(_b);
|
|
200682
200704
|
}
|
|
200683
200705
|
finally {
|
|
200684
|
-
if (
|
|
200685
|
-
throw
|
|
200706
|
+
if (e_66)
|
|
200707
|
+
throw e_66.error;
|
|
200686
200708
|
}
|
|
200687
200709
|
}
|
|
200688
200710
|
break;
|
|
@@ -200848,13 +200870,13 @@
|
|
|
200848
200870
|
}
|
|
200849
200871
|
return NaN;
|
|
200850
200872
|
};
|
|
200851
|
-
StackedFragmentSeries.prototype.
|
|
200873
|
+
StackedFragmentSeries.prototype.kv = function (a, b, c) {
|
|
200852
200874
|
if (this.visualSeriesLink != null) {
|
|
200853
200875
|
return this.visualSeriesLink.ps(a, b, c);
|
|
200854
200876
|
}
|
|
200855
200877
|
return { $type: igniteuiWebcomponentsCore.Point_$type, x: NaN, y: NaN };
|
|
200856
200878
|
};
|
|
200857
|
-
StackedFragmentSeries.prototype.
|
|
200879
|
+
StackedFragmentSeries.prototype.kz = function (a) {
|
|
200858
200880
|
if (this.visualSeriesLink != null) {
|
|
200859
200881
|
return this.visualSeriesLink.p3(a);
|
|
200860
200882
|
}
|
|
@@ -200866,7 +200888,7 @@
|
|
|
200866
200888
|
}
|
|
200867
200889
|
return null;
|
|
200868
200890
|
};
|
|
200869
|
-
StackedFragmentSeries.prototype.
|
|
200891
|
+
StackedFragmentSeries.prototype.k0 = function (a) {
|
|
200870
200892
|
if (this.visualSeriesLink != null) {
|
|
200871
200893
|
return this.visualSeriesLink.p4(a);
|
|
200872
200894
|
}
|
|
@@ -200878,13 +200900,13 @@
|
|
|
200878
200900
|
}
|
|
200879
200901
|
return null;
|
|
200880
200902
|
};
|
|
200881
|
-
StackedFragmentSeries.prototype.
|
|
200903
|
+
StackedFragmentSeries.prototype.k1 = function (a) {
|
|
200882
200904
|
if (this.visualSeriesLink != null) {
|
|
200883
200905
|
return this.visualSeriesLink.p5(a);
|
|
200884
200906
|
}
|
|
200885
200907
|
return igniteuiWebcomponentsCore.Rect.empty;
|
|
200886
200908
|
};
|
|
200887
|
-
StackedFragmentSeries.prototype.
|
|
200909
|
+
StackedFragmentSeries.prototype.k2 = function (a) {
|
|
200888
200910
|
if (this.visualSeriesLink != null) {
|
|
200889
200911
|
return this.visualSeriesLink.p6(a);
|
|
200890
200912
|
}
|
|
@@ -200896,7 +200918,7 @@
|
|
|
200896
200918
|
}
|
|
200897
200919
|
return NaN;
|
|
200898
200920
|
};
|
|
200899
|
-
StackedFragmentSeries.prototype.
|
|
200921
|
+
StackedFragmentSeries.prototype.kr = function (a, b, c) {
|
|
200900
200922
|
if (this.visualSeriesLink != null) {
|
|
200901
200923
|
return this.visualSeriesLink.po(a, b, c);
|
|
200902
200924
|
}
|
|
@@ -200908,13 +200930,13 @@
|
|
|
200908
200930
|
}
|
|
200909
200931
|
return NaN;
|
|
200910
200932
|
};
|
|
200911
|
-
StackedFragmentSeries.prototype.
|
|
200933
|
+
StackedFragmentSeries.prototype.kt = function (a, b, c) {
|
|
200912
200934
|
if (this.visualSeriesLink != null) {
|
|
200913
200935
|
return this.visualSeriesLink.pq(a, b, c);
|
|
200914
200936
|
}
|
|
200915
200937
|
return { $type: igniteuiWebcomponentsCore.Point_$type, x: NaN, y: NaN };
|
|
200916
200938
|
};
|
|
200917
|
-
StackedFragmentSeries.prototype.
|
|
200939
|
+
StackedFragmentSeries.prototype.kw = function (a, b, c) {
|
|
200918
200940
|
if (this.visualSeriesLink != null) {
|
|
200919
200941
|
return this.visualSeriesLink.pt(a, b, c);
|
|
200920
200942
|
}
|
|
@@ -200926,7 +200948,7 @@
|
|
|
200926
200948
|
}
|
|
200927
200949
|
return NaN;
|
|
200928
200950
|
};
|
|
200929
|
-
StackedFragmentSeries.prototype.
|
|
200951
|
+
StackedFragmentSeries.prototype.ks = function (a, b, c) {
|
|
200930
200952
|
if (this.visualSeriesLink != null) {
|
|
200931
200953
|
return this.visualSeriesLink.pp(a, b, c);
|
|
200932
200954
|
}
|
|
@@ -200938,7 +200960,7 @@
|
|
|
200938
200960
|
}
|
|
200939
200961
|
return NaN;
|
|
200940
200962
|
};
|
|
200941
|
-
StackedFragmentSeries.prototype.
|
|
200963
|
+
StackedFragmentSeries.prototype.ku = function (a, b, c) {
|
|
200942
200964
|
if (this.visualSeriesLink != null) {
|
|
200943
200965
|
return this.visualSeriesLink.pr(a, b, c);
|
|
200944
200966
|
}
|
|
@@ -200980,13 +201002,13 @@
|
|
|
200980
201002
|
}
|
|
200981
201003
|
return false;
|
|
200982
201004
|
};
|
|
200983
|
-
StackedFragmentSeries.prototype.
|
|
201005
|
+
StackedFragmentSeries.prototype.kx = function (a) {
|
|
200984
201006
|
if (this.visualSeriesLink != null) {
|
|
200985
201007
|
return this.visualSeriesLink.px(a);
|
|
200986
201008
|
}
|
|
200987
201009
|
return { $type: igniteuiWebcomponentsCore.Point_$type, x: NaN, y: NaN };
|
|
200988
201010
|
};
|
|
200989
|
-
StackedFragmentSeries.prototype.
|
|
201011
|
+
StackedFragmentSeries.prototype.kq = function (a) {
|
|
200990
201012
|
if (this.visualSeriesLink != null) {
|
|
200991
201013
|
return this.visualSeriesLink.pn(a);
|
|
200992
201014
|
}
|
|
@@ -200998,7 +201020,7 @@
|
|
|
200998
201020
|
}
|
|
200999
201021
|
return false;
|
|
201000
201022
|
};
|
|
201001
|
-
StackedFragmentSeries.prototype.
|
|
201023
|
+
StackedFragmentSeries.prototype.ky = function () {
|
|
201002
201024
|
if (this.visualSeriesLink != null) {
|
|
201003
201025
|
return this.visualSeriesLink.getEffectiveViewport();
|
|
201004
201026
|
}
|
|
@@ -201031,25 +201053,25 @@
|
|
|
201031
201053
|
this.visualSeriesLink.provideRenderer(a);
|
|
201032
201054
|
}
|
|
201033
201055
|
};
|
|
201034
|
-
StackedFragmentSeries.prototype.
|
|
201056
|
+
StackedFragmentSeries.prototype.g5 = function () {
|
|
201035
201057
|
if (this.parentSeries == null) {
|
|
201036
201058
|
return;
|
|
201037
201059
|
}
|
|
201038
|
-
this.
|
|
201060
|
+
this.k6 = this.parentSeries._visibility != 0 ? 1 : this.k8;
|
|
201039
201061
|
if (this.visualSeriesLink != null) {
|
|
201040
|
-
this.visualSeriesLink._visibility = this.
|
|
201062
|
+
this.visualSeriesLink._visibility = this.k6;
|
|
201041
201063
|
}
|
|
201042
201064
|
};
|
|
201043
|
-
StackedFragmentSeries.prototype.
|
|
201065
|
+
StackedFragmentSeries.prototype.gd = function () {
|
|
201044
201066
|
if (this.parentSeries == null) {
|
|
201045
201067
|
return;
|
|
201046
201068
|
}
|
|
201047
|
-
this.
|
|
201069
|
+
this.g8 = this.hb != null ? this.hb : this.parentSeries.q7;
|
|
201048
201070
|
if (this.visualSeriesLink != null) {
|
|
201049
|
-
this.visualSeriesLink.q7 = this.
|
|
201071
|
+
this.visualSeriesLink.q7 = this.g8;
|
|
201050
201072
|
}
|
|
201051
201073
|
};
|
|
201052
|
-
StackedFragmentSeries.prototype.
|
|
201074
|
+
StackedFragmentSeries.prototype.gf = function () {
|
|
201053
201075
|
if (this.parentSeries == null) {
|
|
201054
201076
|
return;
|
|
201055
201077
|
}
|
|
@@ -201067,18 +201089,18 @@
|
|
|
201067
201089
|
if (this.parentSeries == null) {
|
|
201068
201090
|
return;
|
|
201069
201091
|
}
|
|
201070
|
-
this.
|
|
201092
|
+
this.kh = this.kc != null ? this.kc : this.parentSeries.o9;
|
|
201071
201093
|
if (this.visualSeriesLink != null) {
|
|
201072
|
-
this.visualSeriesLink.o9 = this.
|
|
201094
|
+
this.visualSeriesLink.o9 = this.kh;
|
|
201073
201095
|
}
|
|
201074
201096
|
};
|
|
201075
201097
|
StackedFragmentSeries.prototype.fs = function () {
|
|
201076
201098
|
if (this.parentSeries == null) {
|
|
201077
201099
|
return;
|
|
201078
201100
|
}
|
|
201079
|
-
this.
|
|
201101
|
+
this.kk = this.kl != null ? this.kl : this.parentSeries.pi;
|
|
201080
201102
|
if (this.visualSeriesLink != null) {
|
|
201081
|
-
this.visualSeriesLink.pi = this.
|
|
201103
|
+
this.visualSeriesLink.pi = this.kk;
|
|
201082
201104
|
}
|
|
201083
201105
|
};
|
|
201084
201106
|
StackedFragmentSeries.prototype.fu = function () {
|
|
@@ -201090,7 +201112,7 @@
|
|
|
201090
201112
|
this.visualSeriesLink.gu = this.ba;
|
|
201091
201113
|
}
|
|
201092
201114
|
};
|
|
201093
|
-
StackedFragmentSeries.prototype.
|
|
201115
|
+
StackedFragmentSeries.prototype.gj = function () {
|
|
201094
201116
|
if (this.parentSeries == null) {
|
|
201095
201117
|
return;
|
|
201096
201118
|
}
|
|
@@ -201099,7 +201121,7 @@
|
|
|
201099
201121
|
this.visualSeriesLink.bu = this.z;
|
|
201100
201122
|
}
|
|
201101
201123
|
};
|
|
201102
|
-
StackedFragmentSeries.prototype.
|
|
201124
|
+
StackedFragmentSeries.prototype.f9 = function () {
|
|
201103
201125
|
if (this.parentSeries == null) {
|
|
201104
201126
|
return;
|
|
201105
201127
|
}
|
|
@@ -201112,9 +201134,9 @@
|
|
|
201112
201134
|
if (this.parentSeries == null) {
|
|
201113
201135
|
return;
|
|
201114
201136
|
}
|
|
201115
|
-
this.
|
|
201137
|
+
this.km = this.as("DashCap") ? this.parentSeries.pj : this.ko;
|
|
201116
201138
|
if (this.visualSeriesLink != null) {
|
|
201117
|
-
this.visualSeriesLink.pj = this.
|
|
201139
|
+
this.visualSeriesLink.pj = this.km;
|
|
201118
201140
|
}
|
|
201119
201141
|
};
|
|
201120
201142
|
StackedFragmentSeries.prototype.fv = function () {
|
|
@@ -201126,7 +201148,7 @@
|
|
|
201126
201148
|
this.visualSeriesLink.dq = this.ak;
|
|
201127
201149
|
}
|
|
201128
201150
|
};
|
|
201129
|
-
StackedFragmentSeries.prototype.
|
|
201151
|
+
StackedFragmentSeries.prototype.gm = function () {
|
|
201130
201152
|
if (this.parentSeries == null) {
|
|
201131
201153
|
return;
|
|
201132
201154
|
}
|
|
@@ -201135,16 +201157,16 @@
|
|
|
201135
201157
|
this.visualSeriesLink.g1 = this.bg;
|
|
201136
201158
|
}
|
|
201137
201159
|
};
|
|
201138
|
-
StackedFragmentSeries.prototype.
|
|
201160
|
+
StackedFragmentSeries.prototype.gn = function () {
|
|
201139
201161
|
if (this.parentSeries == null) {
|
|
201140
201162
|
return;
|
|
201141
201163
|
}
|
|
201142
|
-
this.
|
|
201143
|
-
if (this.visualSeriesLink != null && igniteuiWebcomponentsCore.Color.e(igniteuiWebcomponentsCore.toNullable(igniteuiWebcomponentsCore.Color.$, this.
|
|
201144
|
-
this.visualSeriesLink.ph = this.
|
|
201164
|
+
this.ki = igniteuiWebcomponentsCore.Color.e(igniteuiWebcomponentsCore.toNullable(igniteuiWebcomponentsCore.Color.$, this.kj), igniteuiWebcomponentsCore.toNullable(igniteuiWebcomponentsCore.Color.$, null)) ? this.kj : this.parentSeries.ph;
|
|
201165
|
+
if (this.visualSeriesLink != null && igniteuiWebcomponentsCore.Color.e(igniteuiWebcomponentsCore.toNullable(igniteuiWebcomponentsCore.Color.$, this.ki), igniteuiWebcomponentsCore.toNullable(igniteuiWebcomponentsCore.Color.$, null))) {
|
|
201166
|
+
this.visualSeriesLink.ph = this.ki;
|
|
201145
201167
|
}
|
|
201146
201168
|
};
|
|
201147
|
-
StackedFragmentSeries.prototype.
|
|
201169
|
+
StackedFragmentSeries.prototype.g1 = function () {
|
|
201148
201170
|
if (this.parentSeries == null) {
|
|
201149
201171
|
return;
|
|
201150
201172
|
}
|
|
@@ -201153,7 +201175,7 @@
|
|
|
201153
201175
|
this.visualSeriesLink.fb = this.aq;
|
|
201154
201176
|
}
|
|
201155
201177
|
};
|
|
201156
|
-
StackedFragmentSeries.prototype.
|
|
201178
|
+
StackedFragmentSeries.prototype.go = function () {
|
|
201157
201179
|
if (this.parentSeries == null) {
|
|
201158
201180
|
return;
|
|
201159
201181
|
}
|
|
@@ -201162,7 +201184,7 @@
|
|
|
201162
201184
|
this.visualSeriesLink.g2 = this.bh;
|
|
201163
201185
|
}
|
|
201164
201186
|
};
|
|
201165
|
-
StackedFragmentSeries.prototype.
|
|
201187
|
+
StackedFragmentSeries.prototype.gp = function () {
|
|
201166
201188
|
if (this.parentSeries == null) {
|
|
201167
201189
|
return;
|
|
201168
201190
|
}
|
|
@@ -201181,10 +201203,10 @@
|
|
|
201181
201203
|
if (this.parentSeries == null) {
|
|
201182
201204
|
return;
|
|
201183
201205
|
}
|
|
201184
|
-
this.
|
|
201206
|
+
this.g6 = this.g9 != null ? this.g9 : this.parentSeries.legendItemBadgeTemplate;
|
|
201185
201207
|
if (this.visualSeriesLink != null) {
|
|
201186
|
-
if (this.
|
|
201187
|
-
this.visualSeriesLink.legendItemBadgeTemplate = this.
|
|
201208
|
+
if (this.g6 != null) {
|
|
201209
|
+
this.visualSeriesLink.legendItemBadgeTemplate = this.g6;
|
|
201188
201210
|
}
|
|
201189
201211
|
else {
|
|
201190
201212
|
this.visualSeriesLink.legendItemBadgeTemplate = null;
|
|
@@ -201195,10 +201217,10 @@
|
|
|
201195
201217
|
if (this.parentSeries == null) {
|
|
201196
201218
|
return;
|
|
201197
201219
|
}
|
|
201198
|
-
this.
|
|
201220
|
+
this.g7 = this.ha != null ? this.ha : this.parentSeries.legendItemTemplate;
|
|
201199
201221
|
if (this.visualSeriesLink != null) {
|
|
201200
|
-
if (this.
|
|
201201
|
-
this.visualSeriesLink.legendItemTemplate = this.
|
|
201222
|
+
if (this.g7 != null) {
|
|
201223
|
+
this.visualSeriesLink.legendItemTemplate = this.g7;
|
|
201202
201224
|
}
|
|
201203
201225
|
else {
|
|
201204
201226
|
this.visualSeriesLink.legendItemTemplate = null;
|
|
@@ -201209,9 +201231,9 @@
|
|
|
201209
201231
|
if (this.parentSeries == null) {
|
|
201210
201232
|
return;
|
|
201211
201233
|
}
|
|
201212
|
-
this.
|
|
201234
|
+
this.k5 = this.parentSeries.qb != 0 ? 1 : this.k7;
|
|
201213
201235
|
if (this.visualSeriesLink != null) {
|
|
201214
|
-
this.visualSeriesLink.qb = this.
|
|
201236
|
+
this.visualSeriesLink.qb = this.k5;
|
|
201215
201237
|
}
|
|
201216
201238
|
};
|
|
201217
201239
|
StackedFragmentSeries.prototype.f1 = function () {
|
|
@@ -201242,39 +201264,39 @@
|
|
|
201242
201264
|
}
|
|
201243
201265
|
}
|
|
201244
201266
|
};
|
|
201245
|
-
StackedFragmentSeries.prototype.
|
|
201267
|
+
StackedFragmentSeries.prototype.f7 = function () {
|
|
201246
201268
|
if (this.parentSeries == null) {
|
|
201247
201269
|
return;
|
|
201248
201270
|
}
|
|
201249
|
-
this.
|
|
201271
|
+
this.j8 = this.kd != null ? this.kd : this.parentSeries.rn;
|
|
201250
201272
|
if (this.visualSeriesLink != null) {
|
|
201251
|
-
this.visualSeriesLink.rn = this.
|
|
201273
|
+
this.visualSeriesLink.rn = this.j8;
|
|
201252
201274
|
}
|
|
201253
201275
|
};
|
|
201254
|
-
StackedFragmentSeries.prototype.
|
|
201276
|
+
StackedFragmentSeries.prototype.ga = function () {
|
|
201255
201277
|
if (this.parentSeries == null) {
|
|
201256
201278
|
return;
|
|
201257
201279
|
}
|
|
201258
|
-
this.
|
|
201280
|
+
this.j9 = this.ke != null ? this.ke : this.parentSeries.ro;
|
|
201259
201281
|
if (this.visualSeriesLink != null) {
|
|
201260
|
-
this.visualSeriesLink.ro = this.
|
|
201282
|
+
this.visualSeriesLink.ro = this.j9;
|
|
201261
201283
|
}
|
|
201262
201284
|
};
|
|
201263
|
-
StackedFragmentSeries.prototype.
|
|
201285
|
+
StackedFragmentSeries.prototype.gc = function () {
|
|
201264
201286
|
if (this.parentSeries == null) {
|
|
201265
201287
|
return;
|
|
201266
201288
|
}
|
|
201267
|
-
this.
|
|
201289
|
+
this.k3 = this.k4 != null ? this.k4 : this.parentSeries.rp;
|
|
201268
201290
|
if (this.visualSeriesLink != null) {
|
|
201269
|
-
if (this.
|
|
201270
|
-
this.visualSeriesLink.rp = this.
|
|
201291
|
+
if (this.k3 != null) {
|
|
201292
|
+
this.visualSeriesLink.rp = this.k3;
|
|
201271
201293
|
}
|
|
201272
201294
|
else {
|
|
201273
201295
|
this.visualSeriesLink.rp = null;
|
|
201274
201296
|
}
|
|
201275
201297
|
}
|
|
201276
201298
|
};
|
|
201277
|
-
StackedFragmentSeries.prototype.
|
|
201299
|
+
StackedFragmentSeries.prototype.gg = function () {
|
|
201278
201300
|
if (this.parentSeries == null) {
|
|
201279
201301
|
return;
|
|
201280
201302
|
}
|
|
@@ -201283,15 +201305,15 @@
|
|
|
201283
201305
|
this.visualSeriesLink._opacity = this.bd;
|
|
201284
201306
|
}
|
|
201285
201307
|
};
|
|
201286
|
-
StackedFragmentSeries.prototype.gg = function () {
|
|
201287
|
-
};
|
|
201288
201308
|
StackedFragmentSeries.prototype.gh = function () {
|
|
201309
|
+
};
|
|
201310
|
+
StackedFragmentSeries.prototype.gi = function () {
|
|
201289
201311
|
if (this.parentSeries == null) {
|
|
201290
201312
|
return;
|
|
201291
201313
|
}
|
|
201292
|
-
this.
|
|
201314
|
+
this.kb = this.kg != null ? this.kg : this.parentSeries.pe;
|
|
201293
201315
|
if (this.visualSeriesLink != null) {
|
|
201294
|
-
this.visualSeriesLink.pe = this.
|
|
201316
|
+
this.visualSeriesLink.pe = this.kb;
|
|
201295
201317
|
}
|
|
201296
201318
|
};
|
|
201297
201319
|
StackedFragmentSeries.prototype.fz = function () {
|
|
@@ -201341,7 +201363,7 @@
|
|
|
201341
201363
|
}
|
|
201342
201364
|
}
|
|
201343
201365
|
};
|
|
201344
|
-
StackedFragmentSeries.prototype.
|
|
201366
|
+
StackedFragmentSeries.prototype.gk = function () {
|
|
201345
201367
|
if (this.parentSeries == null) {
|
|
201346
201368
|
return;
|
|
201347
201369
|
}
|
|
@@ -201362,7 +201384,7 @@
|
|
|
201362
201384
|
}
|
|
201363
201385
|
}
|
|
201364
201386
|
};
|
|
201365
|
-
StackedFragmentSeries.prototype.
|
|
201387
|
+
StackedFragmentSeries.prototype.gl = function () {
|
|
201366
201388
|
if (this.parentSeries == null) {
|
|
201367
201389
|
return;
|
|
201368
201390
|
}
|
|
@@ -201387,12 +201409,12 @@
|
|
|
201387
201409
|
if (this.parentSeries == null) {
|
|
201388
201410
|
return;
|
|
201389
201411
|
}
|
|
201390
|
-
this.
|
|
201412
|
+
this.kn = this.as("StartCap") ? this.parentSeries.pk : this.kp;
|
|
201391
201413
|
if (this.visualSeriesLink != null) {
|
|
201392
|
-
this.visualSeriesLink.pk = this.
|
|
201414
|
+
this.visualSeriesLink.pk = this.kn;
|
|
201393
201415
|
}
|
|
201394
201416
|
};
|
|
201395
|
-
StackedFragmentSeries.prototype.
|
|
201417
|
+
StackedFragmentSeries.prototype.gq = function () {
|
|
201396
201418
|
if (this.parentSeries == null) {
|
|
201397
201419
|
return;
|
|
201398
201420
|
}
|
|
@@ -201401,7 +201423,15 @@
|
|
|
201401
201423
|
this.visualSeriesLink.g4 = this.bj;
|
|
201402
201424
|
}
|
|
201403
201425
|
};
|
|
201404
|
-
StackedFragmentSeries.prototype.
|
|
201426
|
+
StackedFragmentSeries.prototype.f6 = function () {
|
|
201427
|
+
if (this.parentSeries == null) {
|
|
201428
|
+
return;
|
|
201429
|
+
}
|
|
201430
|
+
if (this.visualSeriesLink != null) {
|
|
201431
|
+
this.visualSeriesLink.pl = this.parentSeries.pl;
|
|
201432
|
+
}
|
|
201433
|
+
};
|
|
201434
|
+
StackedFragmentSeries.prototype.ge = function () {
|
|
201405
201435
|
if (this.parentSeries == null) {
|
|
201406
201436
|
return;
|
|
201407
201437
|
}
|
|
@@ -201410,7 +201440,7 @@
|
|
|
201410
201440
|
this.visualSeriesLink.qq = this.bc;
|
|
201411
201441
|
}
|
|
201412
201442
|
};
|
|
201413
|
-
StackedFragmentSeries.prototype.
|
|
201443
|
+
StackedFragmentSeries.prototype.gs = function () {
|
|
201414
201444
|
if (this.parentSeries == null) {
|
|
201415
201445
|
return;
|
|
201416
201446
|
}
|
|
@@ -201418,13 +201448,13 @@
|
|
|
201418
201448
|
this.visualSeriesLink.toolTip = this.ci;
|
|
201419
201449
|
}
|
|
201420
201450
|
};
|
|
201421
|
-
StackedFragmentSeries.prototype.
|
|
201451
|
+
StackedFragmentSeries.prototype.gu = function () {
|
|
201422
201452
|
if (this.parentSeries == null) {
|
|
201423
201453
|
return;
|
|
201424
201454
|
}
|
|
201425
201455
|
this.af = this.ah || this.parentSeries.cg;
|
|
201426
201456
|
};
|
|
201427
|
-
StackedFragmentSeries.prototype.
|
|
201457
|
+
StackedFragmentSeries.prototype.gt = function () {
|
|
201428
201458
|
if (this.parentSeries == null) {
|
|
201429
201459
|
return;
|
|
201430
201460
|
}
|
|
@@ -201434,13 +201464,13 @@
|
|
|
201434
201464
|
}
|
|
201435
201465
|
this.b4 = this.as("IsDropShadowEnabled") ? this.parentSeries.hr : this.cb;
|
|
201436
201466
|
};
|
|
201437
|
-
StackedFragmentSeries.prototype.
|
|
201467
|
+
StackedFragmentSeries.prototype.gw = function () {
|
|
201438
201468
|
if (this.parentSeries == null) {
|
|
201439
201469
|
return;
|
|
201440
201470
|
}
|
|
201441
201471
|
this.ag = this.as("IsDropShadowEnabled") ? this.parentSeries.ch : this.ai;
|
|
201442
201472
|
};
|
|
201443
|
-
StackedFragmentSeries.prototype.
|
|
201473
|
+
StackedFragmentSeries.prototype.gx = function () {
|
|
201444
201474
|
if (this.parentSeries == null) {
|
|
201445
201475
|
return;
|
|
201446
201476
|
}
|
|
@@ -201450,7 +201480,7 @@
|
|
|
201450
201480
|
}
|
|
201451
201481
|
this.m = this.n;
|
|
201452
201482
|
};
|
|
201453
|
-
StackedFragmentSeries.prototype.
|
|
201483
|
+
StackedFragmentSeries.prototype.gy = function () {
|
|
201454
201484
|
if (this.parentSeries == null) {
|
|
201455
201485
|
return;
|
|
201456
201486
|
}
|
|
@@ -201470,7 +201500,7 @@
|
|
|
201470
201500
|
}
|
|
201471
201501
|
this.an = this.aw;
|
|
201472
201502
|
};
|
|
201473
|
-
StackedFragmentSeries.prototype.
|
|
201503
|
+
StackedFragmentSeries.prototype.gv = function () {
|
|
201474
201504
|
if (this.parentSeries == null) {
|
|
201475
201505
|
return;
|
|
201476
201506
|
}
|
|
@@ -201480,7 +201510,7 @@
|
|
|
201480
201510
|
}
|
|
201481
201511
|
this.b5 = this.cc;
|
|
201482
201512
|
};
|
|
201483
|
-
StackedFragmentSeries.prototype.
|
|
201513
|
+
StackedFragmentSeries.prototype.g0 = function () {
|
|
201484
201514
|
if (this.parentSeries == null) {
|
|
201485
201515
|
return;
|
|
201486
201516
|
}
|
|
@@ -201489,7 +201519,7 @@
|
|
|
201489
201519
|
this.visualSeriesLink.qp = this.ap;
|
|
201490
201520
|
}
|
|
201491
201521
|
};
|
|
201492
|
-
StackedFragmentSeries.prototype.
|
|
201522
|
+
StackedFragmentSeries.prototype.gr = function () {
|
|
201493
201523
|
if (this.parentSeries == null) {
|
|
201494
201524
|
return;
|
|
201495
201525
|
}
|
|
@@ -201497,7 +201527,7 @@
|
|
|
201497
201527
|
this.visualSeriesLink.title = this.ch;
|
|
201498
201528
|
}
|
|
201499
201529
|
};
|
|
201500
|
-
StackedFragmentSeries.prototype.
|
|
201530
|
+
StackedFragmentSeries.prototype.f8 = function () {
|
|
201501
201531
|
if (this.parentSeries == null) {
|
|
201502
201532
|
return;
|
|
201503
201533
|
}
|
|
@@ -201506,7 +201536,7 @@
|
|
|
201506
201536
|
this.visualSeriesLink.qe = this.s;
|
|
201507
201537
|
}
|
|
201508
201538
|
};
|
|
201509
|
-
StackedFragmentSeries.prototype.
|
|
201539
|
+
StackedFragmentSeries.prototype.gb = function () {
|
|
201510
201540
|
if (this.parentSeries == null) {
|
|
201511
201541
|
return;
|
|
201512
201542
|
}
|
|
@@ -201515,7 +201545,7 @@
|
|
|
201515
201545
|
this.visualSeriesLink.qi = this.u;
|
|
201516
201546
|
}
|
|
201517
201547
|
};
|
|
201518
|
-
StackedFragmentSeries.prototype.
|
|
201548
|
+
StackedFragmentSeries.prototype.gz = function () {
|
|
201519
201549
|
if (this.parentSeries == null) {
|
|
201520
201550
|
return;
|
|
201521
201551
|
}
|
|
@@ -201523,7 +201553,7 @@
|
|
|
201523
201553
|
this.visualSeriesLink.ss = this.ax("UseHighMarkerFidelity") ? this.a1 : this.parentSeries.ss;
|
|
201524
201554
|
}
|
|
201525
201555
|
};
|
|
201526
|
-
StackedFragmentSeries.prototype.
|
|
201556
|
+
StackedFragmentSeries.prototype.g3 = function () {
|
|
201527
201557
|
if (this.parentSeries == null) {
|
|
201528
201558
|
return;
|
|
201529
201559
|
}
|
|
@@ -201532,7 +201562,7 @@
|
|
|
201532
201562
|
this.visualSeriesLink.ua = this.fe;
|
|
201533
201563
|
}
|
|
201534
201564
|
};
|
|
201535
|
-
StackedFragmentSeries.prototype.
|
|
201565
|
+
StackedFragmentSeries.prototype.g2 = function () {
|
|
201536
201566
|
if (this.parentSeries == null) {
|
|
201537
201567
|
return;
|
|
201538
201568
|
}
|
|
@@ -201541,7 +201571,7 @@
|
|
|
201541
201571
|
this.visualSeriesLink.t8 = this.dt;
|
|
201542
201572
|
}
|
|
201543
201573
|
};
|
|
201544
|
-
StackedFragmentSeries.prototype.
|
|
201574
|
+
StackedFragmentSeries.prototype.g4 = function () {
|
|
201545
201575
|
if (this.parentSeries == null) {
|
|
201546
201576
|
return;
|
|
201547
201577
|
}
|
|
@@ -201572,19 +201602,19 @@
|
|
|
201572
201602
|
}
|
|
201573
201603
|
switch (b) {
|
|
201574
201604
|
case StackedFragmentSeries.$$p[86]:
|
|
201575
|
-
this.
|
|
201605
|
+
this.gr();
|
|
201576
201606
|
break;
|
|
201577
201607
|
case StackedFragmentSeries.$$p[99]:
|
|
201578
|
-
this.
|
|
201608
|
+
this.g4();
|
|
201579
201609
|
break;
|
|
201580
201610
|
case StackedFragmentSeries.$$p[98]:
|
|
201581
|
-
this.
|
|
201611
|
+
this.g3();
|
|
201582
201612
|
break;
|
|
201583
201613
|
case StackedFragmentSeries.$$p[97]:
|
|
201584
|
-
this.
|
|
201614
|
+
this.g2();
|
|
201585
201615
|
break;
|
|
201586
201616
|
case StackedFragmentSeries.$$p[100]:
|
|
201587
|
-
this.
|
|
201617
|
+
this.g5();
|
|
201588
201618
|
break;
|
|
201589
201619
|
case StackedFragmentSeries.$$p[49]:
|
|
201590
201620
|
this.fr();
|
|
@@ -201599,19 +201629,19 @@
|
|
|
201599
201629
|
this.fv();
|
|
201600
201630
|
break;
|
|
201601
201631
|
case StackedFragmentSeries.$$p[81]:
|
|
201602
|
-
this.
|
|
201632
|
+
this.gm();
|
|
201603
201633
|
break;
|
|
201604
201634
|
case StackedFragmentSeries.$$p[82]:
|
|
201605
|
-
this.
|
|
201635
|
+
this.gn();
|
|
201606
201636
|
break;
|
|
201607
201637
|
case StackedFragmentSeries.$$p[96]:
|
|
201608
|
-
this.
|
|
201638
|
+
this.g1();
|
|
201609
201639
|
break;
|
|
201610
201640
|
case StackedFragmentSeries.$$p[83]:
|
|
201611
|
-
this.
|
|
201641
|
+
this.go();
|
|
201612
201642
|
break;
|
|
201613
201643
|
case StackedFragmentSeries.$$p[84]:
|
|
201614
|
-
this.
|
|
201644
|
+
this.gp();
|
|
201615
201645
|
break;
|
|
201616
201646
|
case StackedFragmentSeries.$$p[63]:
|
|
201617
201647
|
this.f5();
|
|
@@ -201620,16 +201650,16 @@
|
|
|
201620
201650
|
this.fw();
|
|
201621
201651
|
break;
|
|
201622
201652
|
case StackedFragmentSeries.$$p[70]:
|
|
201623
|
-
this.
|
|
201653
|
+
this.gd();
|
|
201624
201654
|
break;
|
|
201625
201655
|
case StackedFragmentSeries.$$p[72]:
|
|
201626
|
-
this.
|
|
201656
|
+
this.gf();
|
|
201627
201657
|
break;
|
|
201628
201658
|
case StackedFragmentSeries.$$p[65]:
|
|
201629
|
-
this.
|
|
201659
|
+
this.f8();
|
|
201630
201660
|
break;
|
|
201631
201661
|
case StackedFragmentSeries.$$p[67]:
|
|
201632
|
-
this.
|
|
201662
|
+
this.gb();
|
|
201633
201663
|
break;
|
|
201634
201664
|
case StackedFragmentSeries.$$p[60]:
|
|
201635
201665
|
this.f2();
|
|
@@ -201647,79 +201677,79 @@
|
|
|
201647
201677
|
this.f0();
|
|
201648
201678
|
break;
|
|
201649
201679
|
case StackedFragmentSeries.$$p[64]:
|
|
201650
|
-
this.
|
|
201680
|
+
this.f7();
|
|
201651
201681
|
break;
|
|
201652
201682
|
case StackedFragmentSeries.$$p[68]:
|
|
201653
|
-
this.
|
|
201683
|
+
this.ga();
|
|
201654
201684
|
break;
|
|
201655
201685
|
case StackedFragmentSeries.$$p[69]:
|
|
201656
|
-
this.
|
|
201686
|
+
this.gc();
|
|
201657
201687
|
break;
|
|
201658
201688
|
case StackedFragmentSeries.$$p[71]:
|
|
201659
|
-
this.
|
|
201689
|
+
this.ge();
|
|
201660
201690
|
break;
|
|
201661
201691
|
case StackedFragmentSeries.$$p[75]:
|
|
201662
|
-
this.
|
|
201692
|
+
this.gg();
|
|
201663
201693
|
break;
|
|
201664
201694
|
case StackedFragmentSeries.$$p[74]:
|
|
201665
|
-
this.
|
|
201695
|
+
this.gh();
|
|
201666
201696
|
break;
|
|
201667
201697
|
case StackedFragmentSeries.$$p[57]:
|
|
201668
201698
|
this.fz();
|
|
201669
201699
|
break;
|
|
201670
201700
|
case StackedFragmentSeries.$$p[77]:
|
|
201671
|
-
this.
|
|
201701
|
+
this.gi();
|
|
201672
201702
|
break;
|
|
201673
201703
|
case StackedFragmentSeries.$$p[76]:
|
|
201674
|
-
this.
|
|
201704
|
+
this.gj();
|
|
201675
201705
|
break;
|
|
201676
201706
|
case StackedFragmentSeries.$$p[66]:
|
|
201677
|
-
this.
|
|
201707
|
+
this.f9();
|
|
201678
201708
|
break;
|
|
201679
201709
|
case StackedFragmentSeries.$$p[48]:
|
|
201680
201710
|
this.fq();
|
|
201681
201711
|
break;
|
|
201682
201712
|
case StackedFragmentSeries.$$p[79]:
|
|
201683
|
-
this.
|
|
201713
|
+
this.gk();
|
|
201684
201714
|
break;
|
|
201685
201715
|
case StackedFragmentSeries.$$p[80]:
|
|
201686
|
-
this.
|
|
201716
|
+
this.gl();
|
|
201687
201717
|
break;
|
|
201688
201718
|
case StackedFragmentSeries.$$p[55]:
|
|
201689
201719
|
this.fx();
|
|
201690
201720
|
break;
|
|
201691
201721
|
case StackedFragmentSeries.$$p[85]:
|
|
201692
|
-
this.
|
|
201722
|
+
this.gq();
|
|
201693
201723
|
break;
|
|
201694
201724
|
case StackedFragmentSeries.$$p[87]:
|
|
201695
|
-
this.
|
|
201725
|
+
this.gs();
|
|
201696
201726
|
break;
|
|
201697
201727
|
case StackedFragmentSeries.$$p[89]:
|
|
201698
|
-
this.
|
|
201728
|
+
this.gu();
|
|
201699
201729
|
break;
|
|
201700
201730
|
case StackedFragmentSeries.$$p[91]:
|
|
201701
|
-
this.
|
|
201731
|
+
this.gw();
|
|
201702
201732
|
break;
|
|
201703
201733
|
case StackedFragmentSeries.$$p[88]:
|
|
201704
|
-
this.
|
|
201734
|
+
this.gt();
|
|
201705
201735
|
break;
|
|
201706
201736
|
case StackedFragmentSeries.$$p[56]:
|
|
201707
201737
|
this.fy();
|
|
201708
201738
|
break;
|
|
201709
201739
|
case StackedFragmentSeries.$$p[92]:
|
|
201710
|
-
this.
|
|
201740
|
+
this.gx();
|
|
201711
201741
|
break;
|
|
201712
201742
|
case StackedFragmentSeries.$$p[93]:
|
|
201713
|
-
this.
|
|
201743
|
+
this.gy();
|
|
201714
201744
|
break;
|
|
201715
201745
|
case StackedFragmentSeries.$$p[90]:
|
|
201716
|
-
this.
|
|
201746
|
+
this.gv();
|
|
201717
201747
|
break;
|
|
201718
201748
|
case StackedFragmentSeries.$$p[95]:
|
|
201719
|
-
this.
|
|
201749
|
+
this.g0();
|
|
201720
201750
|
break;
|
|
201721
201751
|
case StackedFragmentSeries.$$p[94]:
|
|
201722
|
-
this.
|
|
201752
|
+
this.gz();
|
|
201723
201753
|
break;
|
|
201724
201754
|
}
|
|
201725
201755
|
this.parentSeries.mn(false);
|
|
@@ -201730,7 +201760,7 @@
|
|
|
201730
201760
|
}
|
|
201731
201761
|
};
|
|
201732
201762
|
StackedFragmentSeries.$t = igniteuiWebcomponentsCore.markType(StackedFragmentSeries, 'StackedFragmentSeries', igniteuiWebcomponentsCore.DependencyObject.$, [igniteuiWebcomponentsCore.INotifyPropertyChanged_$type]);
|
|
201733
|
-
StackedFragmentSeries.$$p = igniteuiWebcomponentsCore.markDep(igniteuiWebcomponentsCore.DependencyProperty, igniteuiWebcomponentsCore.PropertyMetadata, StackedFragmentSeries, 'fn', ['ActualAreaFillOpacity:a9:
|
|
201763
|
+
StackedFragmentSeries.$$p = igniteuiWebcomponentsCore.markDep(igniteuiWebcomponentsCore.DependencyProperty, igniteuiWebcomponentsCore.PropertyMetadata, StackedFragmentSeries, 'fn', ['ActualAreaFillOpacity:a9:hc', [1, NaN], 'ActualBrush:j7:hd', [igniteuiWebcomponentsCore.Brush.$], 'ActualDashArray:kk:he', [igniteuiWebcomponentsCore.DoubleCollection.$], 'ActualDashCap:km:hf', [igniteuiWebcomponentsCore.PenLineCap_$type, igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.PenLineCap_$type, 0)], 'ActualHighlightingFadeOpacity:ba:hg', [1, NaN], 'ActualIsDropShadowEnabled:ak:hh', [0, false], 'ActualIsHitTestVisible:al:hi', [0, true], 'ActualIsSplineShapePartOfRange:am:hj', [0, false], 'ActualIsTransitionInEnabled:an:hk', [0], 'ActualLegendItemBadgeMode:o:hl', [igniteuiWebcomponentsCore.LegendItemBadgeMode_$type], 'ActualLegendItemBadgeShape:q:hm', [igniteuiWebcomponentsCore.LegendItemBadgeShape_$type], 'ActualLegendItemBadgeTemplate:g6:hn', [igniteuiWebcomponentsCore.DataTemplate.$], 'ActualLegendItemTemplate:g7:ho', [igniteuiWebcomponentsCore.DataTemplate.$], 'ActualLegendItemVisibility:k5:hp', [igniteuiWebcomponentsCore.Visibility_$type, igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.Visibility_$type, 0)], 'ActualLineCap:kn:hq', [igniteuiWebcomponentsCore.PenLineCap_$type, igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.PenLineCap_$type, 0)], 'ActualMarkerBrush:j8:hr', [igniteuiWebcomponentsCore.Brush.$], 'ActualMarkerFillMode:s:hs', [MarkerFillMode_$type, igniteuiWebcomponentsCore.enumGetBox(MarkerFillMode_$type, 0)], 'ActualMarkerFillOpacity:bb:ht', [1, NaN], 'ActualMarkerOutlineMode:u:hu', [MarkerOutlineMode_$type, igniteuiWebcomponentsCore.enumGetBox(MarkerOutlineMode_$type, 0)], 'ActualMarkerOutline:j9:hv', [igniteuiWebcomponentsCore.Brush.$], 'ActualMarkerStyle:k3:hw', [igniteuiWebcomponentsCore.Style.$], 'ActualMarkerTemplate:g8:hx', [igniteuiWebcomponentsCore.DataTemplate.$], 'ActualMarkerThickness:bc:hy', [1, 1], 'ActualMarkerType:w:hz', [MarkerType_$type, igniteuiWebcomponentsCore.enumGetBox(MarkerType_$type, 1)], 'ActualOpacityMask:ka:h0', [igniteuiWebcomponentsCore.Brush.$], 'ActualOpacity:bd:h1', [1, NaN], 'ActualOutlineMode:z:h2', [SeriesOutlineMode_$type, igniteuiWebcomponentsCore.enumGetBox(SeriesOutlineMode_$type, 0)], 'ActualOutline:kb:h3', [igniteuiWebcomponentsCore.Brush.$], 'ActualRadiusX:be:h4', [1, 0], 'ActualRadiusY:bf:h5', [1, 0], 'ActualShadowBlur:bg:h6', [1, NaN], 'ActualShadowColor:ki:h7', [igniteuiWebcomponentsCore.Color.$], 'ActualShadowOffsetX:bh:h8', [1, NaN], 'ActualShadowOffsetY:bi:h9', [1, NaN], 'ActualThickness:bj:ia', [1, 1], 'ActualToolTip:cd:ib', [4], 'ActualTransitionDuration:b4:ic', [1], 'ActualTransitionEasingFunction:af:id', [igniteuiWebcomponentsCore.Delegate_$type], 'ActualTransitionInDuration:b5:ie', [1], 'ActualTransitionInEasingFunction:ag:ig', [igniteuiWebcomponentsCore.Delegate_$type], 'ActualTransitionInMode:m:ih', [CategoryTransitionInMode_$type], 'ActualTransitionInSpeedType:ac:ii', [TransitionInSpeedType_$type], 'ActualUseHighMarkerFidelity:ao:ij', [0, false], 'ActualUseLightweightMarkers:ap:ik', [0, false], 'ActualUseSingleShadow:aq:il', [0, true], 'ActualValueMemberAsLegendLabel:dt:im', [2, null], 'ActualValueMemberAsLegendUnit:dv:io', [2, null], 'ActualVisibility:k6:ip', [igniteuiWebcomponentsCore.Visibility_$type, igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.Visibility_$type, 0)], 'AreaFillOpacity:bk:iq', [1, NaN], 'Brush:kc:ir', [igniteuiWebcomponentsCore.Brush.$], 'DashArray:kl:is', [igniteuiWebcomponentsCore.DoubleCollection.$], 'DashCap:ko:it', [igniteuiWebcomponentsCore.PenLineCap_$type, igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.PenLineCap_$type, 0)], 'HighlightingFadeOpacity:bt:iu', [1, NaN], 'IsDropShadowEnabled:at:iv', [0], 'IsHitTestVisible:au:iw', [0, true], 'IsSplineShapePartOfRange:av:ix', [0, false], 'IsTransitionInEnabled:aw:iy', [0, false], 'ItemsSource::iz', [igniteuiWebcomponentsCore.IEnumerable_$type, null], 'LegendItemBadgeMode:p:i0', [igniteuiWebcomponentsCore.LegendItemBadgeMode_$type, igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.LegendItemBadgeMode_$type, 0)], 'LegendItemBadgeShape:r:i1', [igniteuiWebcomponentsCore.LegendItemBadgeShape_$type, igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.LegendItemBadgeShape_$type, 0)], 'LegendItemBadgeTemplate:g9:i2', [igniteuiWebcomponentsCore.DataTemplate.$, null], 'LegendItemTemplate:ha:i3', [igniteuiWebcomponentsCore.DataTemplate.$, null], 'LegendItemVisibility:k7:i4', [igniteuiWebcomponentsCore.Visibility_$type, igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.Visibility_$type, 0)], 'LineCap:kp:i5', [igniteuiWebcomponentsCore.PenLineCap_$type, igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.PenLineCap_$type, 0)], 'MarkerBrush:kd:i6', [igniteuiWebcomponentsCore.Brush.$], 'MarkerFillMode:t:i7', [MarkerFillMode_$type, igniteuiWebcomponentsCore.enumGetBox(MarkerFillMode_$type, 0)], 'MarkerFillOpacity:bu:i8', [1, NaN], 'MarkerOutlineMode:v:i9', [MarkerOutlineMode_$type, igniteuiWebcomponentsCore.enumGetBox(MarkerOutlineMode_$type, 0)], 'MarkerOutline:ke:ja', [igniteuiWebcomponentsCore.Brush.$], 'MarkerStyle:k4:jb', [igniteuiWebcomponentsCore.Style.$], 'MarkerTemplate:hb:jc', [igniteuiWebcomponentsCore.DataTemplate.$, null], 'MarkerThickness:bv:jd', [1, NaN], 'MarkerType:x:je', [MarkerType_$type, igniteuiWebcomponentsCore.enumGetBox(MarkerType_$type, 2)], 'Name:en:jf', [2], 'OpacityMask:kf:jg', [igniteuiWebcomponentsCore.Brush.$], 'Opacity:bw:jh', [1, 1], 'OutlineMode:aa:ji', [SeriesOutlineMode_$type, igniteuiWebcomponentsCore.enumGetBox(SeriesOutlineMode_$type, 0)], 'Outline:kg:jj', [igniteuiWebcomponentsCore.Brush.$, null], 'ParentOrLocalBrush:kh:jk', [igniteuiWebcomponentsCore.Brush.$], 'RadiusX:bx:jl', [1, NaN], 'RadiusY:by:jm', [1, NaN], 'ShadowBlur:bz:jn', [1, NaN], 'ShadowColor:kj:jo', [igniteuiWebcomponentsCore.Color.$], 'ShadowOffsetX:b0:jp', [1, NaN], 'ShadowOffsetY:b1:jq', [1, NaN], 'Thickness:b2:jr', [1, NaN], 'Title:ch:js', [4, "Series Title"], 'ToolTip:ci:jt', [4, null], 'TransitionDuration:cb:ju', [1, 0], 'TransitionEasingFunction:ah:jv', [igniteuiWebcomponentsCore.Delegate_$type, null], 'TransitionInDuration:cc:jw', [1, 1000], 'TransitionInEasingFunction:ai:jx', [igniteuiWebcomponentsCore.Delegate_$type, null], 'TransitionInMode:n:jy', [CategoryTransitionInMode_$type, igniteuiWebcomponentsCore.enumGetBox(CategoryTransitionInMode_$type, 0)], 'TransitionInSpeedType:ad:jz', [TransitionInSpeedType_$type, igniteuiWebcomponentsCore.enumGetBox(TransitionInSpeedType_$type, 0)], 'UseHighMarkerFidelity:a1:j0', [0, false], 'UseLightweightMarkers:a2:j1', [0, false], 'UseSingleShadow:a3:j2', [0], 'ValueMemberAsLegendLabel:fc:j3', [2, null], 'ValueMemberAsLegendUnit:fe:j4', [2, null], 'ValueMemberPath:fg:j5', [2, null], 'Visibility:k8:j6', [igniteuiWebcomponentsCore.Visibility_$type, igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.Visibility_$type, 0)]]);
|
|
201734
201764
|
return StackedFragmentSeries;
|
|
201735
201765
|
}(igniteuiWebcomponentsCore.DependencyObject));
|
|
201736
201766
|
/**
|
|
@@ -202080,7 +202110,7 @@
|
|
|
202080
202110
|
return e + d;
|
|
202081
202111
|
};
|
|
202082
202112
|
ColumnFragmentView.prototype.al = function (a) {
|
|
202083
|
-
var
|
|
202113
|
+
var e_67, _a, e_68, _b;
|
|
202084
202114
|
_super.prototype.al.call(this, a);
|
|
202085
202115
|
var b = 0;
|
|
202086
202116
|
var c = new igniteuiWebcomponentsCore.List$1(igniteuiWebcomponentsCore.Rectangle.$, 0);
|
|
@@ -202090,8 +202120,8 @@
|
|
|
202090
202120
|
c.add(d);
|
|
202091
202121
|
}
|
|
202092
202122
|
}
|
|
202093
|
-
catch (
|
|
202094
|
-
|
|
202123
|
+
catch (e_67_1) {
|
|
202124
|
+
e_67 = { error: e_67_1 };
|
|
202095
202125
|
}
|
|
202096
202126
|
finally {
|
|
202097
202127
|
try {
|
|
@@ -202099,8 +202129,8 @@
|
|
|
202099
202129
|
_a.call(_c);
|
|
202100
202130
|
}
|
|
202101
202131
|
finally {
|
|
202102
|
-
if (
|
|
202103
|
-
throw
|
|
202132
|
+
if (e_67)
|
|
202133
|
+
throw e_67.error;
|
|
202104
202134
|
}
|
|
202105
202135
|
}
|
|
202106
202136
|
c.aa(function (e, f) {
|
|
@@ -202120,8 +202150,8 @@
|
|
|
202120
202150
|
this.e.a9.exportRectangleData(a, e, "column" + b, ["Main", "Fill"]);
|
|
202121
202151
|
}
|
|
202122
202152
|
}
|
|
202123
|
-
catch (
|
|
202124
|
-
|
|
202153
|
+
catch (e_68_1) {
|
|
202154
|
+
e_68 = { error: e_68_1 };
|
|
202125
202155
|
}
|
|
202126
202156
|
finally {
|
|
202127
202157
|
try {
|
|
@@ -202129,8 +202159,8 @@
|
|
|
202129
202159
|
_b.call(_e);
|
|
202130
202160
|
}
|
|
202131
202161
|
finally {
|
|
202132
|
-
if (
|
|
202133
|
-
throw
|
|
202162
|
+
if (e_68)
|
|
202163
|
+
throw e_68.error;
|
|
202134
202164
|
}
|
|
202135
202165
|
}
|
|
202136
202166
|
b++;
|
|
@@ -202439,7 +202469,7 @@
|
|
|
202439
202469
|
}
|
|
202440
202470
|
};
|
|
202441
202471
|
StackedSeriesView.prototype.ar = function (a, b) {
|
|
202442
|
-
var
|
|
202472
|
+
var e_69, _a;
|
|
202443
202473
|
_super.prototype.ar.call(this, a, b);
|
|
202444
202474
|
try {
|
|
202445
202475
|
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.c0.series)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
@@ -202447,8 +202477,8 @@
|
|
|
202447
202477
|
c.visualSeriesLink.b1.ar(a, b);
|
|
202448
202478
|
}
|
|
202449
202479
|
}
|
|
202450
|
-
catch (
|
|
202451
|
-
|
|
202480
|
+
catch (e_69_1) {
|
|
202481
|
+
e_69 = { error: e_69_1 };
|
|
202452
202482
|
}
|
|
202453
202483
|
finally {
|
|
202454
202484
|
try {
|
|
@@ -202456,8 +202486,8 @@
|
|
|
202456
202486
|
_a.call(_b);
|
|
202457
202487
|
}
|
|
202458
202488
|
finally {
|
|
202459
|
-
if (
|
|
202460
|
-
throw
|
|
202489
|
+
if (e_69)
|
|
202490
|
+
throw e_69.error;
|
|
202461
202491
|
}
|
|
202462
202492
|
}
|
|
202463
202493
|
};
|
|
@@ -202627,7 +202657,7 @@
|
|
|
202627
202657
|
_this.l = _this.b.tv.c4;
|
|
202628
202658
|
var b = _this.c;
|
|
202629
202659
|
b.collectionChanged = igniteuiWebcomponentsCore.delegateCombine(b.collectionChanged, function (b, c) {
|
|
202630
|
-
var
|
|
202660
|
+
var e_70, _a, e_71, _b;
|
|
202631
202661
|
if (c.oldItems != null) {
|
|
202632
202662
|
try {
|
|
202633
202663
|
for (var _c = tslib.__values(igniteuiWebcomponentsCore.fromEn(c.oldItems)), _d = _c.next(); !_d.done; _d = _c.next()) {
|
|
@@ -202637,8 +202667,8 @@
|
|
|
202637
202667
|
}
|
|
202638
202668
|
}
|
|
202639
202669
|
}
|
|
202640
|
-
catch (
|
|
202641
|
-
|
|
202670
|
+
catch (e_70_1) {
|
|
202671
|
+
e_70 = { error: e_70_1 };
|
|
202642
202672
|
}
|
|
202643
202673
|
finally {
|
|
202644
202674
|
try {
|
|
@@ -202646,8 +202676,8 @@
|
|
|
202646
202676
|
_a.call(_c);
|
|
202647
202677
|
}
|
|
202648
202678
|
finally {
|
|
202649
|
-
if (
|
|
202650
|
-
throw
|
|
202679
|
+
if (e_70)
|
|
202680
|
+
throw e_70.error;
|
|
202651
202681
|
}
|
|
202652
202682
|
}
|
|
202653
202683
|
}
|
|
@@ -202661,8 +202691,8 @@
|
|
|
202661
202691
|
e++;
|
|
202662
202692
|
}
|
|
202663
202693
|
}
|
|
202664
|
-
catch (
|
|
202665
|
-
|
|
202694
|
+
catch (e_71_1) {
|
|
202695
|
+
e_71 = { error: e_71_1 };
|
|
202666
202696
|
}
|
|
202667
202697
|
finally {
|
|
202668
202698
|
try {
|
|
@@ -202670,15 +202700,15 @@
|
|
|
202670
202700
|
_b.call(_e);
|
|
202671
202701
|
}
|
|
202672
202702
|
finally {
|
|
202673
|
-
if (
|
|
202674
|
-
throw
|
|
202703
|
+
if (e_71)
|
|
202704
|
+
throw e_71.error;
|
|
202675
202705
|
}
|
|
202676
202706
|
}
|
|
202677
202707
|
}
|
|
202678
202708
|
});
|
|
202679
202709
|
var c = _this.f;
|
|
202680
202710
|
c.collectionChanged = igniteuiWebcomponentsCore.delegateCombine(c.collectionChanged, function (c, d) {
|
|
202681
|
-
var
|
|
202711
|
+
var e_72, _a, e_73, _b;
|
|
202682
202712
|
if (d.oldItems != null) {
|
|
202683
202713
|
try {
|
|
202684
202714
|
for (var _c = tslib.__values(igniteuiWebcomponentsCore.fromEn(d.oldItems)), _d = _c.next(); !_d.done; _d = _c.next()) {
|
|
@@ -202696,8 +202726,8 @@
|
|
|
202696
202726
|
}
|
|
202697
202727
|
}
|
|
202698
202728
|
}
|
|
202699
|
-
catch (
|
|
202700
|
-
|
|
202729
|
+
catch (e_72_1) {
|
|
202730
|
+
e_72 = { error: e_72_1 };
|
|
202701
202731
|
}
|
|
202702
202732
|
finally {
|
|
202703
202733
|
try {
|
|
@@ -202705,8 +202735,8 @@
|
|
|
202705
202735
|
_a.call(_c);
|
|
202706
202736
|
}
|
|
202707
202737
|
finally {
|
|
202708
|
-
if (
|
|
202709
|
-
throw
|
|
202738
|
+
if (e_72)
|
|
202739
|
+
throw e_72.error;
|
|
202710
202740
|
}
|
|
202711
202741
|
}
|
|
202712
202742
|
}
|
|
@@ -202724,8 +202754,8 @@
|
|
|
202724
202754
|
}
|
|
202725
202755
|
}
|
|
202726
202756
|
}
|
|
202727
|
-
catch (
|
|
202728
|
-
|
|
202757
|
+
catch (e_73_1) {
|
|
202758
|
+
e_73 = { error: e_73_1 };
|
|
202729
202759
|
}
|
|
202730
202760
|
finally {
|
|
202731
202761
|
try {
|
|
@@ -202733,8 +202763,8 @@
|
|
|
202733
202763
|
_b.call(_e);
|
|
202734
202764
|
}
|
|
202735
202765
|
finally {
|
|
202736
|
-
if (
|
|
202737
|
-
throw
|
|
202766
|
+
if (e_73)
|
|
202767
|
+
throw e_73.error;
|
|
202738
202768
|
}
|
|
202739
202769
|
}
|
|
202740
202770
|
}
|
|
@@ -202812,7 +202842,7 @@
|
|
|
202812
202842
|
return null;
|
|
202813
202843
|
};
|
|
202814
202844
|
StackedSeriesManager.prototype.j = function () {
|
|
202815
|
-
var
|
|
202845
|
+
var e_74, _a;
|
|
202816
202846
|
if (this.b == null) {
|
|
202817
202847
|
return;
|
|
202818
202848
|
}
|
|
@@ -202822,8 +202852,8 @@
|
|
|
202822
202852
|
a.gy = this.b.fx;
|
|
202823
202853
|
}
|
|
202824
202854
|
}
|
|
202825
|
-
catch (
|
|
202826
|
-
|
|
202855
|
+
catch (e_74_1) {
|
|
202856
|
+
e_74 = { error: e_74_1 };
|
|
202827
202857
|
}
|
|
202828
202858
|
finally {
|
|
202829
202859
|
try {
|
|
@@ -202831,8 +202861,8 @@
|
|
|
202831
202861
|
_a.call(_b);
|
|
202832
202862
|
}
|
|
202833
202863
|
finally {
|
|
202834
|
-
if (
|
|
202835
|
-
throw
|
|
202864
|
+
if (e_74)
|
|
202865
|
+
throw e_74.error;
|
|
202836
202866
|
}
|
|
202837
202867
|
}
|
|
202838
202868
|
};
|
|
@@ -202844,15 +202874,15 @@
|
|
|
202844
202874
|
a.itemsSource = b.itemsSource;
|
|
202845
202875
|
}
|
|
202846
202876
|
a.legend = this.b.a2;
|
|
202847
|
-
a.legendItemTemplate = b.
|
|
202848
|
-
a.qb = b.
|
|
202877
|
+
a.legendItemTemplate = b.g7;
|
|
202878
|
+
a.qb = b.k5;
|
|
202849
202879
|
a.gw = this.b.gw;
|
|
202850
|
-
a.pk = b.
|
|
202851
|
-
a.pi = b.
|
|
202852
|
-
a.pj = b.
|
|
202853
|
-
a.o9 = b.
|
|
202880
|
+
a.pk = b.kn;
|
|
202881
|
+
a.pi = b.kk;
|
|
202882
|
+
a.pj = b.km;
|
|
202883
|
+
a.o9 = b.kh;
|
|
202854
202884
|
a._opacity = b.bw;
|
|
202855
|
-
a.pe = b.
|
|
202885
|
+
a.pe = b.kb;
|
|
202856
202886
|
a.bu = b.z;
|
|
202857
202887
|
a.gy = this.b.gy;
|
|
202858
202888
|
a.g4 = b.bj;
|
|
@@ -202860,13 +202890,13 @@
|
|
|
202860
202890
|
a.uc = b.fg;
|
|
202861
202891
|
a.t8 = b.fc;
|
|
202862
202892
|
a.ua = b.fe;
|
|
202863
|
-
a._visibility = b.
|
|
202893
|
+
a._visibility = b.k6;
|
|
202864
202894
|
a.gu = b.ba;
|
|
202865
|
-
a.rn = b.
|
|
202866
|
-
a.ro = b.
|
|
202895
|
+
a.rn = b.j8;
|
|
202896
|
+
a.ro = b.j9;
|
|
202867
202897
|
a.qi = b.u;
|
|
202868
|
-
a.rp = b.
|
|
202869
|
-
a.q7 = b.
|
|
202898
|
+
a.rp = b.k3;
|
|
202899
|
+
a.q7 = b.g8;
|
|
202870
202900
|
a.ql = b.w;
|
|
202871
202901
|
a.qq = b.bc;
|
|
202872
202902
|
a.gv = b.bb;
|
|
@@ -202902,13 +202932,13 @@
|
|
|
202902
202932
|
a.toolTip = b.ci;
|
|
202903
202933
|
a.dq = b.ak;
|
|
202904
202934
|
a.fb = b.aq;
|
|
202905
|
-
b.gl();
|
|
202906
202935
|
b.gm();
|
|
202907
202936
|
b.gn();
|
|
202908
202937
|
b.go();
|
|
202938
|
+
b.gp();
|
|
202909
202939
|
};
|
|
202910
202940
|
StackedSeriesManager.prototype.h = function (a) {
|
|
202911
|
-
var
|
|
202941
|
+
var e_75, _a;
|
|
202912
202942
|
this.e.clear();
|
|
202913
202943
|
this.d.clear();
|
|
202914
202944
|
var b = 0;
|
|
@@ -202933,8 +202963,8 @@
|
|
|
202933
202963
|
b++;
|
|
202934
202964
|
}
|
|
202935
202965
|
}
|
|
202936
|
-
catch (
|
|
202937
|
-
|
|
202966
|
+
catch (e_75_1) {
|
|
202967
|
+
e_75 = { error: e_75_1 };
|
|
202938
202968
|
}
|
|
202939
202969
|
finally {
|
|
202940
202970
|
try {
|
|
@@ -202942,8 +202972,8 @@
|
|
|
202942
202972
|
_a.call(_b);
|
|
202943
202973
|
}
|
|
202944
202974
|
finally {
|
|
202945
|
-
if (
|
|
202946
|
-
throw
|
|
202975
|
+
if (e_75)
|
|
202976
|
+
throw e_75.error;
|
|
202947
202977
|
}
|
|
202948
202978
|
}
|
|
202949
202979
|
};
|
|
@@ -203110,11 +203140,11 @@
|
|
|
203110
203140
|
* Gets or sets the brush of the stacked fragment.
|
|
203111
203141
|
*/
|
|
203112
203142
|
get: function () {
|
|
203113
|
-
return igniteuiWebcomponentsCore.brushToString(this.i.
|
|
203143
|
+
return igniteuiWebcomponentsCore.brushToString(this.i.kc);
|
|
203114
203144
|
},
|
|
203115
203145
|
set: function (v) {
|
|
203116
|
-
this.i.
|
|
203117
|
-
this._a("brush", igniteuiWebcomponentsCore.brushToString(this.i.
|
|
203146
|
+
this.i.kc = igniteuiWebcomponentsCore.stringToBrush(v);
|
|
203147
|
+
this._a("brush", igniteuiWebcomponentsCore.brushToString(this.i.kc));
|
|
203118
203148
|
},
|
|
203119
203149
|
enumerable: false,
|
|
203120
203150
|
configurable: true
|
|
@@ -203124,11 +203154,11 @@
|
|
|
203124
203154
|
* Gets the actual brush used by the series.
|
|
203125
203155
|
*/
|
|
203126
203156
|
get: function () {
|
|
203127
|
-
return igniteuiWebcomponentsCore.brushToString(this.i.
|
|
203157
|
+
return igniteuiWebcomponentsCore.brushToString(this.i.j7);
|
|
203128
203158
|
},
|
|
203129
203159
|
set: function (v) {
|
|
203130
|
-
this.i.
|
|
203131
|
-
this._a("actualBrush", igniteuiWebcomponentsCore.brushToString(this.i.
|
|
203160
|
+
this.i.j7 = igniteuiWebcomponentsCore.stringToBrush(v);
|
|
203161
|
+
this._a("actualBrush", igniteuiWebcomponentsCore.brushToString(this.i.j7));
|
|
203132
203162
|
},
|
|
203133
203163
|
enumerable: false,
|
|
203134
203164
|
configurable: true
|
|
@@ -203139,11 +203169,11 @@
|
|
|
203139
203169
|
* is used to outline the current series object.
|
|
203140
203170
|
*/
|
|
203141
203171
|
get: function () {
|
|
203142
|
-
return igniteuiWebcomponentsCore.fromDoubleCollection(this.i.
|
|
203172
|
+
return igniteuiWebcomponentsCore.fromDoubleCollection(this.i.kl);
|
|
203143
203173
|
},
|
|
203144
203174
|
set: function (v) {
|
|
203145
|
-
this.i.
|
|
203146
|
-
this._a("dashArray", igniteuiWebcomponentsCore.doubleCollectionToString(this.i.
|
|
203175
|
+
this.i.kl = igniteuiWebcomponentsCore.toDoubleCollection(v);
|
|
203176
|
+
this._a("dashArray", igniteuiWebcomponentsCore.doubleCollectionToString(this.i.kl));
|
|
203147
203177
|
},
|
|
203148
203178
|
enumerable: false,
|
|
203149
203179
|
configurable: true
|
|
@@ -203211,11 +203241,11 @@
|
|
|
203211
203241
|
* Gets or sets the drop shadow color.
|
|
203212
203242
|
*/
|
|
203213
203243
|
get: function () {
|
|
203214
|
-
return igniteuiWebcomponentsCore.colorToString(this.i.
|
|
203244
|
+
return igniteuiWebcomponentsCore.colorToString(this.i.kj);
|
|
203215
203245
|
},
|
|
203216
203246
|
set: function (v) {
|
|
203217
|
-
this.i.
|
|
203218
|
-
this._a("shadowColor", igniteuiWebcomponentsCore.colorToString(this.i.
|
|
203247
|
+
this.i.kj = igniteuiWebcomponentsCore.stringToColor(v);
|
|
203248
|
+
this._a("shadowColor", igniteuiWebcomponentsCore.colorToString(this.i.kj));
|
|
203219
203249
|
},
|
|
203220
203250
|
enumerable: false,
|
|
203221
203251
|
configurable: true
|
|
@@ -203225,11 +203255,11 @@
|
|
|
203225
203255
|
* Gets actual the drop shadow color used by the series.
|
|
203226
203256
|
*/
|
|
203227
203257
|
get: function () {
|
|
203228
|
-
return igniteuiWebcomponentsCore.colorToString(this.i.
|
|
203258
|
+
return igniteuiWebcomponentsCore.colorToString(this.i.ki);
|
|
203229
203259
|
},
|
|
203230
203260
|
set: function (v) {
|
|
203231
|
-
this.i.
|
|
203232
|
-
this._a("actualShadowColor", igniteuiWebcomponentsCore.colorToString(this.i.
|
|
203261
|
+
this.i.ki = igniteuiWebcomponentsCore.stringToColor(v);
|
|
203262
|
+
this._a("actualShadowColor", igniteuiWebcomponentsCore.colorToString(this.i.ki));
|
|
203233
203263
|
},
|
|
203234
203264
|
enumerable: false,
|
|
203235
203265
|
configurable: true
|
|
@@ -203326,11 +203356,11 @@
|
|
|
203326
203356
|
* Not every series type has a line at which it would be appropriate to display an end cap, so this property does not affect every series type. LineSeries, for example, is affected by EndCap, but ColumnSeries is not.
|
|
203327
203357
|
*/
|
|
203328
203358
|
get: function () {
|
|
203329
|
-
return this.i.
|
|
203359
|
+
return this.i.kp;
|
|
203330
203360
|
},
|
|
203331
203361
|
set: function (v) {
|
|
203332
|
-
this.i.
|
|
203333
|
-
this._a("lineCap", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.PenLineCap_$type, this.i.
|
|
203362
|
+
this.i.kp = igniteuiWebcomponentsCore.ensureEnum(igniteuiWebcomponentsCore.PenLineCap_$type, v);
|
|
203363
|
+
this._a("lineCap", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.PenLineCap_$type, this.i.kp));
|
|
203334
203364
|
},
|
|
203335
203365
|
enumerable: false,
|
|
203336
203366
|
configurable: true
|
|
@@ -203340,11 +203370,11 @@
|
|
|
203340
203370
|
* Gets the actual end cap used by the series.
|
|
203341
203371
|
*/
|
|
203342
203372
|
get: function () {
|
|
203343
|
-
return this.i.
|
|
203373
|
+
return this.i.kn;
|
|
203344
203374
|
},
|
|
203345
203375
|
set: function (v) {
|
|
203346
|
-
this.i.
|
|
203347
|
-
this._a("actualLineCap", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.PenLineCap_$type, this.i.
|
|
203376
|
+
this.i.kn = igniteuiWebcomponentsCore.ensureEnum(igniteuiWebcomponentsCore.PenLineCap_$type, v);
|
|
203377
|
+
this._a("actualLineCap", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.PenLineCap_$type, this.i.kn));
|
|
203348
203378
|
},
|
|
203349
203379
|
enumerable: false,
|
|
203350
203380
|
configurable: true
|
|
@@ -203356,10 +203386,10 @@
|
|
|
203356
203386
|
* the series object itself.
|
|
203357
203387
|
*/
|
|
203358
203388
|
get: function () {
|
|
203359
|
-
return this.i.
|
|
203389
|
+
return this.i.g9;
|
|
203360
203390
|
},
|
|
203361
203391
|
set: function (v) {
|
|
203362
|
-
this.i.
|
|
203392
|
+
this.i.g9 = v;
|
|
203363
203393
|
},
|
|
203364
203394
|
enumerable: false,
|
|
203365
203395
|
configurable: true
|
|
@@ -203369,10 +203399,10 @@
|
|
|
203369
203399
|
* Gets the actual legend item badge template used by the series.
|
|
203370
203400
|
*/
|
|
203371
203401
|
get: function () {
|
|
203372
|
-
return this.i.
|
|
203402
|
+
return this.i.g6;
|
|
203373
203403
|
},
|
|
203374
203404
|
set: function (v) {
|
|
203375
|
-
this.i.
|
|
203405
|
+
this.i.g6 = v;
|
|
203376
203406
|
},
|
|
203377
203407
|
enumerable: false,
|
|
203378
203408
|
configurable: true
|
|
@@ -203384,10 +203414,10 @@
|
|
|
203384
203414
|
* the series object itself.
|
|
203385
203415
|
*/
|
|
203386
203416
|
get: function () {
|
|
203387
|
-
return this.i.
|
|
203417
|
+
return this.i.ha;
|
|
203388
203418
|
},
|
|
203389
203419
|
set: function (v) {
|
|
203390
|
-
this.i.
|
|
203420
|
+
this.i.ha = v;
|
|
203391
203421
|
},
|
|
203392
203422
|
enumerable: false,
|
|
203393
203423
|
configurable: true
|
|
@@ -203397,10 +203427,10 @@
|
|
|
203397
203427
|
* Gets the actual legend item template used by the series.
|
|
203398
203428
|
*/
|
|
203399
203429
|
get: function () {
|
|
203400
|
-
return this.i.
|
|
203430
|
+
return this.i.g7;
|
|
203401
203431
|
},
|
|
203402
203432
|
set: function (v) {
|
|
203403
|
-
this.i.
|
|
203433
|
+
this.i.g7 = v;
|
|
203404
203434
|
},
|
|
203405
203435
|
enumerable: false,
|
|
203406
203436
|
configurable: true
|
|
@@ -203410,11 +203440,11 @@
|
|
|
203410
203440
|
* Gets or sets the legend item visibility for the current series object.
|
|
203411
203441
|
*/
|
|
203412
203442
|
get: function () {
|
|
203413
|
-
return this.i.
|
|
203443
|
+
return this.i.k7;
|
|
203414
203444
|
},
|
|
203415
203445
|
set: function (v) {
|
|
203416
|
-
this.i.
|
|
203417
|
-
this._a("legendItemVisibility", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.Visibility_$type, this.i.
|
|
203446
|
+
this.i.k7 = igniteuiWebcomponentsCore.ensureEnum(igniteuiWebcomponentsCore.Visibility_$type, v);
|
|
203447
|
+
this._a("legendItemVisibility", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.Visibility_$type, this.i.k7));
|
|
203418
203448
|
},
|
|
203419
203449
|
enumerable: false,
|
|
203420
203450
|
configurable: true
|
|
@@ -203424,11 +203454,11 @@
|
|
|
203424
203454
|
* Gets the actual visibility of the legend items in the series.
|
|
203425
203455
|
*/
|
|
203426
203456
|
get: function () {
|
|
203427
|
-
return this.i.
|
|
203457
|
+
return this.i.k5;
|
|
203428
203458
|
},
|
|
203429
203459
|
set: function (v) {
|
|
203430
|
-
this.i.
|
|
203431
|
-
this._a("actualLegendItemVisibility", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.Visibility_$type, this.i.
|
|
203460
|
+
this.i.k5 = igniteuiWebcomponentsCore.ensureEnum(igniteuiWebcomponentsCore.Visibility_$type, v);
|
|
203461
|
+
this._a("actualLegendItemVisibility", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.Visibility_$type, this.i.k5));
|
|
203432
203462
|
},
|
|
203433
203463
|
enumerable: false,
|
|
203434
203464
|
configurable: true
|
|
@@ -203496,11 +203526,11 @@
|
|
|
203496
203526
|
* Gets or sets the brush that specifies how the current series object's marker interiors are painted.
|
|
203497
203527
|
*/
|
|
203498
203528
|
get: function () {
|
|
203499
|
-
return igniteuiWebcomponentsCore.brushToString(this.i.
|
|
203529
|
+
return igniteuiWebcomponentsCore.brushToString(this.i.kd);
|
|
203500
203530
|
},
|
|
203501
203531
|
set: function (v) {
|
|
203502
|
-
this.i.
|
|
203503
|
-
this._a("markerBrush", igniteuiWebcomponentsCore.brushToString(this.i.
|
|
203532
|
+
this.i.kd = igniteuiWebcomponentsCore.stringToBrush(v);
|
|
203533
|
+
this._a("markerBrush", igniteuiWebcomponentsCore.brushToString(this.i.kd));
|
|
203504
203534
|
},
|
|
203505
203535
|
enumerable: false,
|
|
203506
203536
|
configurable: true
|
|
@@ -203510,11 +203540,11 @@
|
|
|
203510
203540
|
* Gets the actual marker brush of the series.
|
|
203511
203541
|
*/
|
|
203512
203542
|
get: function () {
|
|
203513
|
-
return igniteuiWebcomponentsCore.brushToString(this.i.
|
|
203543
|
+
return igniteuiWebcomponentsCore.brushToString(this.i.j8);
|
|
203514
203544
|
},
|
|
203515
203545
|
set: function (v) {
|
|
203516
|
-
this.i.
|
|
203517
|
-
this._a("actualMarkerBrush", igniteuiWebcomponentsCore.brushToString(this.i.
|
|
203546
|
+
this.i.j8 = igniteuiWebcomponentsCore.stringToBrush(v);
|
|
203547
|
+
this._a("actualMarkerBrush", igniteuiWebcomponentsCore.brushToString(this.i.j8));
|
|
203518
203548
|
},
|
|
203519
203549
|
enumerable: false,
|
|
203520
203550
|
configurable: true
|
|
@@ -203524,11 +203554,11 @@
|
|
|
203524
203554
|
* Gets or sets the brush that specifies how the current series object's marker outlines are painted.
|
|
203525
203555
|
*/
|
|
203526
203556
|
get: function () {
|
|
203527
|
-
return igniteuiWebcomponentsCore.brushToString(this.i.
|
|
203557
|
+
return igniteuiWebcomponentsCore.brushToString(this.i.ke);
|
|
203528
203558
|
},
|
|
203529
203559
|
set: function (v) {
|
|
203530
|
-
this.i.
|
|
203531
|
-
this._a("markerOutline", igniteuiWebcomponentsCore.brushToString(this.i.
|
|
203560
|
+
this.i.ke = igniteuiWebcomponentsCore.stringToBrush(v);
|
|
203561
|
+
this._a("markerOutline", igniteuiWebcomponentsCore.brushToString(this.i.ke));
|
|
203532
203562
|
},
|
|
203533
203563
|
enumerable: false,
|
|
203534
203564
|
configurable: true
|
|
@@ -203538,11 +203568,11 @@
|
|
|
203538
203568
|
* Gets the actual marker outline of the series.
|
|
203539
203569
|
*/
|
|
203540
203570
|
get: function () {
|
|
203541
|
-
return igniteuiWebcomponentsCore.brushToString(this.i.
|
|
203571
|
+
return igniteuiWebcomponentsCore.brushToString(this.i.j9);
|
|
203542
203572
|
},
|
|
203543
203573
|
set: function (v) {
|
|
203544
|
-
this.i.
|
|
203545
|
-
this._a("actualMarkerOutline", igniteuiWebcomponentsCore.brushToString(this.i.
|
|
203574
|
+
this.i.j9 = igniteuiWebcomponentsCore.stringToBrush(v);
|
|
203575
|
+
this._a("actualMarkerOutline", igniteuiWebcomponentsCore.brushToString(this.i.j9));
|
|
203546
203576
|
},
|
|
203547
203577
|
enumerable: false,
|
|
203548
203578
|
configurable: true
|
|
@@ -203552,10 +203582,10 @@
|
|
|
203552
203582
|
* Gets or sets the MarkerTemplate for the current series object.
|
|
203553
203583
|
*/
|
|
203554
203584
|
get: function () {
|
|
203555
|
-
return this.i.
|
|
203585
|
+
return this.i.hb;
|
|
203556
203586
|
},
|
|
203557
203587
|
set: function (v) {
|
|
203558
|
-
this.i.
|
|
203588
|
+
this.i.hb = v;
|
|
203559
203589
|
},
|
|
203560
203590
|
enumerable: false,
|
|
203561
203591
|
configurable: true
|
|
@@ -203565,10 +203595,10 @@
|
|
|
203565
203595
|
* Gets the actual marker template used by the series.
|
|
203566
203596
|
*/
|
|
203567
203597
|
get: function () {
|
|
203568
|
-
return this.i.
|
|
203598
|
+
return this.i.g8;
|
|
203569
203599
|
},
|
|
203570
203600
|
set: function (v) {
|
|
203571
|
-
this.i.
|
|
203601
|
+
this.i.g8 = v;
|
|
203572
203602
|
},
|
|
203573
203603
|
enumerable: false,
|
|
203574
203604
|
configurable: true
|
|
@@ -203705,11 +203735,11 @@
|
|
|
203705
203735
|
* Some series types, such as LineSeries, do not display outlines. Therefore, this property does not affect some charts.
|
|
203706
203736
|
*/
|
|
203707
203737
|
get: function () {
|
|
203708
|
-
return igniteuiWebcomponentsCore.brushToString(this.i.
|
|
203738
|
+
return igniteuiWebcomponentsCore.brushToString(this.i.kg);
|
|
203709
203739
|
},
|
|
203710
203740
|
set: function (v) {
|
|
203711
|
-
this.i.
|
|
203712
|
-
this._a("outline", igniteuiWebcomponentsCore.brushToString(this.i.
|
|
203741
|
+
this.i.kg = igniteuiWebcomponentsCore.stringToBrush(v);
|
|
203742
|
+
this._a("outline", igniteuiWebcomponentsCore.brushToString(this.i.kg));
|
|
203713
203743
|
},
|
|
203714
203744
|
enumerable: false,
|
|
203715
203745
|
configurable: true
|
|
@@ -203719,11 +203749,11 @@
|
|
|
203719
203749
|
* Gets the series outline.
|
|
203720
203750
|
*/
|
|
203721
203751
|
get: function () {
|
|
203722
|
-
return igniteuiWebcomponentsCore.brushToString(this.i.
|
|
203752
|
+
return igniteuiWebcomponentsCore.brushToString(this.i.kb);
|
|
203723
203753
|
},
|
|
203724
203754
|
set: function (v) {
|
|
203725
|
-
this.i.
|
|
203726
|
-
this._a("actualOutline", igniteuiWebcomponentsCore.brushToString(this.i.
|
|
203755
|
+
this.i.kb = igniteuiWebcomponentsCore.stringToBrush(v);
|
|
203756
|
+
this._a("actualOutline", igniteuiWebcomponentsCore.brushToString(this.i.kb));
|
|
203727
203757
|
},
|
|
203728
203758
|
enumerable: false,
|
|
203729
203759
|
configurable: true
|
|
@@ -204259,11 +204289,11 @@
|
|
|
204259
204289
|
* Gets or sets the Visibility of the stacked fragment.
|
|
204260
204290
|
*/
|
|
204261
204291
|
get: function () {
|
|
204262
|
-
return this.i.
|
|
204292
|
+
return this.i.k8;
|
|
204263
204293
|
},
|
|
204264
204294
|
set: function (v) {
|
|
204265
|
-
this.i.
|
|
204266
|
-
this._a("visibility", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.Visibility_$type, this.i.
|
|
204295
|
+
this.i.k8 = igniteuiWebcomponentsCore.ensureEnum(igniteuiWebcomponentsCore.Visibility_$type, v);
|
|
204296
|
+
this._a("visibility", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.Visibility_$type, this.i.k8));
|
|
204267
204297
|
},
|
|
204268
204298
|
enumerable: false,
|
|
204269
204299
|
configurable: true
|
|
@@ -204273,11 +204303,11 @@
|
|
|
204273
204303
|
* Gets the actual visibility of the stacked fragment.
|
|
204274
204304
|
*/
|
|
204275
204305
|
get: function () {
|
|
204276
|
-
return this.i.
|
|
204306
|
+
return this.i.k6;
|
|
204277
204307
|
},
|
|
204278
204308
|
set: function (v) {
|
|
204279
|
-
this.i.
|
|
204280
|
-
this._a("actualVisibility", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.Visibility_$type, this.i.
|
|
204309
|
+
this.i.k6 = igniteuiWebcomponentsCore.ensureEnum(igniteuiWebcomponentsCore.Visibility_$type, v);
|
|
204310
|
+
this._a("actualVisibility", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.Visibility_$type, this.i.k6));
|
|
204281
204311
|
},
|
|
204282
204312
|
enumerable: false,
|
|
204283
204313
|
configurable: true
|
|
@@ -204287,11 +204317,11 @@
|
|
|
204287
204317
|
* Gets the resolved brush used between the local series and the parent series.
|
|
204288
204318
|
*/
|
|
204289
204319
|
get: function () {
|
|
204290
|
-
return igniteuiWebcomponentsCore.brushToString(this.i.
|
|
204320
|
+
return igniteuiWebcomponentsCore.brushToString(this.i.kh);
|
|
204291
204321
|
},
|
|
204292
204322
|
set: function (v) {
|
|
204293
|
-
this.i.
|
|
204294
|
-
this._a("parentOrLocalBrush", igniteuiWebcomponentsCore.brushToString(this.i.
|
|
204323
|
+
this.i.kh = igniteuiWebcomponentsCore.stringToBrush(v);
|
|
204324
|
+
this._a("parentOrLocalBrush", igniteuiWebcomponentsCore.brushToString(this.i.kh));
|
|
204295
204325
|
},
|
|
204296
204326
|
enumerable: false,
|
|
204297
204327
|
configurable: true
|
|
@@ -204391,7 +204421,7 @@
|
|
|
204391
204421
|
return (iv);
|
|
204392
204422
|
};
|
|
204393
204423
|
IgcStackedFragmentSeriesComponent.prototype.getSeriesValuePosition = function (world, useInterpolation, skipUnknowns) {
|
|
204394
|
-
var iv = this.i.
|
|
204424
|
+
var iv = this.i.kv(igniteuiWebcomponentsCore.toPoint(world), useInterpolation, skipUnknowns);
|
|
204395
204425
|
return igniteuiWebcomponentsCore.fromPoint(iv);
|
|
204396
204426
|
};
|
|
204397
204427
|
/**
|
|
@@ -204400,7 +204430,7 @@
|
|
|
204400
204430
|
* @param world * The world coordinate for which to get a value bounding box for
|
|
204401
204431
|
*/
|
|
204402
204432
|
IgcStackedFragmentSeriesComponent.prototype.getSeriesValueBoundingBox = function (world) {
|
|
204403
|
-
var iv = this.i.
|
|
204433
|
+
var iv = this.i.kz(igniteuiWebcomponentsCore.toPoint(world));
|
|
204404
204434
|
return igniteuiWebcomponentsCore.fromRect(iv);
|
|
204405
204435
|
};
|
|
204406
204436
|
/**
|
|
@@ -204409,7 +204439,7 @@
|
|
|
204409
204439
|
* @param world * The world coordinates for which to get a value marker bounding box for
|
|
204410
204440
|
*/
|
|
204411
204441
|
IgcStackedFragmentSeriesComponent.prototype.getSeriesValueMarkerBoundingBox = function (world) {
|
|
204412
|
-
var iv = this.i.
|
|
204442
|
+
var iv = this.i.k1(igniteuiWebcomponentsCore.toPoint(world));
|
|
204413
204443
|
return igniteuiWebcomponentsCore.fromRect(iv);
|
|
204414
204444
|
};
|
|
204415
204445
|
IgcStackedFragmentSeriesComponent.prototype.getSeriesHighValue = function (world, useInterpolation, skipUnknowns) {
|
|
@@ -204417,7 +204447,7 @@
|
|
|
204417
204447
|
return (iv);
|
|
204418
204448
|
};
|
|
204419
204449
|
IgcStackedFragmentSeriesComponent.prototype.getSeriesHighValuePosition = function (world, useInterpolation, skipUnknowns) {
|
|
204420
|
-
var iv = this.i.
|
|
204450
|
+
var iv = this.i.kr(igniteuiWebcomponentsCore.toPoint(world), useInterpolation, skipUnknowns);
|
|
204421
204451
|
return igniteuiWebcomponentsCore.fromPoint(iv);
|
|
204422
204452
|
};
|
|
204423
204453
|
IgcStackedFragmentSeriesComponent.prototype.getSeriesLowValue = function (world, useInterpolation, skipUnknowns) {
|
|
@@ -204425,11 +204455,11 @@
|
|
|
204425
204455
|
return (iv);
|
|
204426
204456
|
};
|
|
204427
204457
|
IgcStackedFragmentSeriesComponent.prototype.getSeriesLowValuePosition = function (world, useInterpolation, skipUnknowns) {
|
|
204428
|
-
var iv = this.i.
|
|
204458
|
+
var iv = this.i.kt(igniteuiWebcomponentsCore.toPoint(world), useInterpolation, skipUnknowns);
|
|
204429
204459
|
return igniteuiWebcomponentsCore.fromPoint(iv);
|
|
204430
204460
|
};
|
|
204431
204461
|
IgcStackedFragmentSeriesComponent.prototype.getSeriesValuePositionFromSeriesPixel = function (mouse, useInterpolation, skipUnknowns) {
|
|
204432
|
-
var iv = this.i.
|
|
204462
|
+
var iv = this.i.kw(igniteuiWebcomponentsCore.toPoint(mouse), useInterpolation, skipUnknowns);
|
|
204433
204463
|
return igniteuiWebcomponentsCore.fromPoint(iv);
|
|
204434
204464
|
};
|
|
204435
204465
|
IgcStackedFragmentSeriesComponent.prototype.getSeriesValueFromSeriesPixel = function (mouse, useInterpolation, skipUnknowns) {
|
|
@@ -204450,7 +204480,7 @@
|
|
|
204450
204480
|
* @param seriesPoint * The pixel location within the plot area of the series.
|
|
204451
204481
|
*/
|
|
204452
204482
|
IgcStackedFragmentSeriesComponent.prototype.toWorldPosition = function (seriesPoint) {
|
|
204453
|
-
var iv = this.i.
|
|
204483
|
+
var iv = this.i.kx(igniteuiWebcomponentsCore.toPoint(seriesPoint));
|
|
204454
204484
|
return igniteuiWebcomponentsCore.fromPoint(iv);
|
|
204455
204485
|
};
|
|
204456
204486
|
/**
|
|
@@ -204459,7 +204489,7 @@
|
|
|
204459
204489
|
* @param world * The world position from which to convert.
|
|
204460
204490
|
*/
|
|
204461
204491
|
IgcStackedFragmentSeriesComponent.prototype.fromWorldPosition = function (world) {
|
|
204462
|
-
var iv = this.i.
|
|
204492
|
+
var iv = this.i.kq(igniteuiWebcomponentsCore.toPoint(world));
|
|
204463
204493
|
return igniteuiWebcomponentsCore.fromPoint(iv);
|
|
204464
204494
|
};
|
|
204465
204495
|
/**
|
|
@@ -204476,7 +204506,7 @@
|
|
|
204476
204506
|
|
|
204477
204507
|
*/
|
|
204478
204508
|
IgcStackedFragmentSeriesComponent.prototype.getEffectiveViewport = function () {
|
|
204479
|
-
var iv = this.i.
|
|
204509
|
+
var iv = this.i.ky();
|
|
204480
204510
|
return igniteuiWebcomponentsCore.fromRect(iv);
|
|
204481
204511
|
};
|
|
204482
204512
|
/**
|