igniteui-webcomponents-charts 5.1.1 → 5.2.0
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 +1107 -602
- package/bundles/igniteui-webcomponents-charts.umd.min.js +1 -1
- package/esm2015/lib/AxisStrokeSettings.js +21 -0
- package/esm2015/lib/DataChartToolbarProvider.js +229 -196
- package/esm2015/lib/FunnelChartSelectedItemsChangedEventArgs.js +43 -0
- package/esm2015/lib/FunnelChartSelectedItemsCollection.js +42 -0
- package/esm2015/lib/XamFunnelView_combined.js +353 -304
- package/esm2015/lib/igc-funnel-chart-component.js +168 -104
- package/esm2015/lib/igc-funnel-chart-selected-items-changed-event-args.js +126 -0
- package/esm2015/lib/igc-funnel-chart-selected-items-collection.js +30 -0
- package/esm2015/lib/igc-series-viewer-component.js +33 -0
- package/esm2015/public_api.js +5 -0
- package/esm5/lib/AxisStrokeSettings.js +23 -0
- package/esm5/lib/DataChartToolbarProvider.js +229 -196
- package/esm5/lib/FunnelChartSelectedItemsChangedEventArgs.js +57 -0
- package/esm5/lib/FunnelChartSelectedItemsCollection.js +48 -0
- package/esm5/lib/XamFunnelView_combined.js +368 -302
- package/esm5/lib/igc-funnel-chart-component.js +177 -104
- package/esm5/lib/igc-funnel-chart-selected-items-changed-event-args.js +144 -0
- package/esm5/lib/igc-funnel-chart-selected-items-collection.js +35 -0
- package/esm5/lib/igc-series-viewer-component.js +45 -0
- package/esm5/public_api.js +5 -0
- package/fesm2015/igniteui-webcomponents-charts.js +1029 -603
- package/fesm5/igniteui-webcomponents-charts.js +1103 -603
- package/lib/AxisStrokeSettings.d.ts +10 -0
- package/lib/DataChartToolbarProvider.d.ts +28 -26
- package/lib/FunnelChartSelectedItemsChangedEventArgs.d.ts +18 -0
- package/lib/FunnelChartSelectedItemsCollection.d.ts +14 -0
- package/lib/FunnelChartVisualData.d.ts +3 -3
- package/lib/XamFunnelView_combined.d.ts +111 -107
- package/lib/igc-funnel-chart-component.d.ts +15 -0
- package/lib/igc-funnel-chart-selected-items-changed-event-args.d.ts +33 -0
- package/lib/igc-funnel-chart-selected-items-collection.d.ts +6 -0
- package/lib/igc-series-viewer-component.d.ts +18 -0
- package/package.json +2 -2
- package/public_api.d.ts +5 -0
|
@@ -105407,6 +105407,27 @@
|
|
|
105407
105407
|
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
105408
105408
|
*/
|
|
105409
105409
|
|
|
105410
|
+
/*
|
|
105411
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
105412
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
105413
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
105414
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
105415
|
+
*/
|
|
105416
|
+
/**
|
|
105417
|
+
* @hidden
|
|
105418
|
+
*/
|
|
105419
|
+
var AxisStrokeSettings = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
105420
|
+
tslib.__extends(AxisStrokeSettings, _super);
|
|
105421
|
+
function AxisStrokeSettings() {
|
|
105422
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
105423
|
+
_this.b = null;
|
|
105424
|
+
_this.a = 0;
|
|
105425
|
+
return _this;
|
|
105426
|
+
}
|
|
105427
|
+
AxisStrokeSettings.$t = igniteuiWebcomponentsCore.markType(AxisStrokeSettings, 'AxisStrokeSettings');
|
|
105428
|
+
return AxisStrokeSettings;
|
|
105429
|
+
}(igniteuiWebcomponentsCore.Base));
|
|
105430
|
+
|
|
105410
105431
|
/*
|
|
105411
105432
|
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
105412
105433
|
https://www.infragistics.com/legal/license/igultimate-la
|
|
@@ -105421,11 +105442,11 @@
|
|
|
105421
105442
|
function DataChartToolbarProvider() {
|
|
105422
105443
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
105423
105444
|
_this._container = null;
|
|
105424
|
-
_this.
|
|
105425
|
-
_this.
|
|
105426
|
-
_this.
|
|
105427
|
-
_this.
|
|
105428
|
-
_this.
|
|
105445
|
+
_this.k = null;
|
|
105446
|
+
_this.i = null;
|
|
105447
|
+
_this.g = null;
|
|
105448
|
+
_this.q = null;
|
|
105449
|
+
_this.r = new igniteuiWebcomponentsCore.FastIterationDictionary$2(Axis.$, AxisStrokeSettings.$, 0);
|
|
105429
105450
|
return _this;
|
|
105430
105451
|
}
|
|
105431
105452
|
Object.defineProperty(DataChartToolbarProvider.prototype, "container", {
|
|
@@ -105438,7 +105459,7 @@
|
|
|
105438
105459
|
enumerable: false,
|
|
105439
105460
|
configurable: true
|
|
105440
105461
|
});
|
|
105441
|
-
Object.defineProperty(DataChartToolbarProvider.prototype, "
|
|
105462
|
+
Object.defineProperty(DataChartToolbarProvider.prototype, "l", {
|
|
105442
105463
|
get: function () {
|
|
105443
105464
|
if (igniteuiWebcomponentsCore.TypeRegistrar.isRegistered("HorizontalAnchoredCategorySeriesProxy")) {
|
|
105444
105465
|
return igniteuiWebcomponentsCore.TypeRegistrar.create("HorizontalAnchoredCategorySeriesProxy");
|
|
@@ -105450,14 +105471,14 @@
|
|
|
105450
105471
|
enumerable: false,
|
|
105451
105472
|
configurable: true
|
|
105452
105473
|
});
|
|
105453
|
-
Object.defineProperty(DataChartToolbarProvider.prototype, "
|
|
105474
|
+
Object.defineProperty(DataChartToolbarProvider.prototype, "v", {
|
|
105454
105475
|
get: function () {
|
|
105455
105476
|
return (igniteuiWebcomponentsCore.TypeRegistrar.isRegistered("HorizontalAnchoredCategorySeriesProxy"));
|
|
105456
105477
|
},
|
|
105457
105478
|
enumerable: false,
|
|
105458
105479
|
configurable: true
|
|
105459
105480
|
});
|
|
105460
|
-
Object.defineProperty(DataChartToolbarProvider.prototype, "
|
|
105481
|
+
Object.defineProperty(DataChartToolbarProvider.prototype, "j", {
|
|
105461
105482
|
get: function () {
|
|
105462
105483
|
if (igniteuiWebcomponentsCore.TypeRegistrar.isRegistered("FinancialPriceSeriesProxy")) {
|
|
105463
105484
|
return igniteuiWebcomponentsCore.TypeRegistrar.create("FinancialPriceSeriesProxy");
|
|
@@ -105469,30 +105490,30 @@
|
|
|
105469
105490
|
enumerable: false,
|
|
105470
105491
|
configurable: true
|
|
105471
105492
|
});
|
|
105472
|
-
Object.defineProperty(DataChartToolbarProvider.prototype, "
|
|
105493
|
+
Object.defineProperty(DataChartToolbarProvider.prototype, "u", {
|
|
105473
105494
|
get: function () {
|
|
105474
105495
|
return (igniteuiWebcomponentsCore.TypeRegistrar.isRegistered("HorizontalAnchoredCategorySeriesProxy"));
|
|
105475
105496
|
},
|
|
105476
105497
|
enumerable: false,
|
|
105477
105498
|
configurable: true
|
|
105478
105499
|
});
|
|
105479
|
-
Object.defineProperty(DataChartToolbarProvider.prototype, "
|
|
105500
|
+
Object.defineProperty(DataChartToolbarProvider.prototype, "h", {
|
|
105480
105501
|
get: function () {
|
|
105481
|
-
if (this.
|
|
105502
|
+
if (this.g == null) {
|
|
105482
105503
|
if (igniteuiWebcomponentsCore.TypeRegistrar.isRegistered("AnnotationLayerProxy")) {
|
|
105483
|
-
this.
|
|
105484
|
-
this.
|
|
105504
|
+
this.g = igniteuiWebcomponentsCore.TypeRegistrar.create("AnnotationLayerProxy");
|
|
105505
|
+
this.g.container = this.container;
|
|
105485
105506
|
}
|
|
105486
105507
|
else {
|
|
105487
105508
|
throw new igniteuiWebcomponentsCore.BaseError(1, "annotation layer module is not loaded, but is required.");
|
|
105488
105509
|
}
|
|
105489
105510
|
}
|
|
105490
|
-
return this.
|
|
105511
|
+
return this.g;
|
|
105491
105512
|
},
|
|
105492
105513
|
enumerable: false,
|
|
105493
105514
|
configurable: true
|
|
105494
105515
|
});
|
|
105495
|
-
Object.defineProperty(DataChartToolbarProvider.prototype, "
|
|
105516
|
+
Object.defineProperty(DataChartToolbarProvider.prototype, "t", {
|
|
105496
105517
|
get: function () {
|
|
105497
105518
|
return (igniteuiWebcomponentsCore.TypeRegistrar.isRegistered("AnnotationLayerProxy"));
|
|
105498
105519
|
},
|
|
@@ -105618,29 +105639,29 @@
|
|
|
105618
105639
|
return $ret;
|
|
105619
105640
|
})()), v];
|
|
105620
105641
|
for (var x = 0; x < w.length; x++) {
|
|
105621
|
-
this.
|
|
105642
|
+
this.a9(a, w[x]);
|
|
105622
105643
|
}
|
|
105623
105644
|
return w;
|
|
105624
105645
|
};
|
|
105625
|
-
DataChartToolbarProvider.prototype.
|
|
105646
|
+
DataChartToolbarProvider.prototype.a9 = function (a, b) {
|
|
105626
105647
|
var e_1, _a, e_2, _b, e_3, _c, e_4, _d;
|
|
105627
105648
|
if (b.actions != null && b.actions.length > 0) {
|
|
105628
105649
|
for (var c = 0; c < b.actions.length; c++) {
|
|
105629
|
-
this.
|
|
105650
|
+
this.a9(a, b.actions[c]);
|
|
105630
105651
|
}
|
|
105631
105652
|
}
|
|
105632
105653
|
switch (b.name) {
|
|
105633
105654
|
case "ShowValueLabels":
|
|
105634
105655
|
{
|
|
105635
105656
|
var d = b;
|
|
105636
|
-
var e = this.
|
|
105657
|
+
var e = this.m(a);
|
|
105637
105658
|
d.isChecked = e != null && e._visibility == 0;
|
|
105638
105659
|
}
|
|
105639
105660
|
break;
|
|
105640
105661
|
case "ShowLastValueLabel":
|
|
105641
105662
|
{
|
|
105642
105663
|
var f = b;
|
|
105643
|
-
var g = this.
|
|
105664
|
+
var g = this.o(a);
|
|
105644
105665
|
f.isChecked = g != null && g._visibility == 0;
|
|
105645
105666
|
}
|
|
105646
105667
|
break;
|
|
@@ -105651,13 +105672,13 @@
|
|
|
105651
105672
|
for (var _e = tslib.__values(igniteuiWebcomponentsCore.fromEnum(a.series)), _f = _e.next(); !_f.done; _f = _e.next()) {
|
|
105652
105673
|
var i = _f.value;
|
|
105653
105674
|
if (i.ey) {
|
|
105654
|
-
if (this.
|
|
105655
|
-
h.isChecked = this.
|
|
105675
|
+
if (this.v && this.l.matchesType(i)) {
|
|
105676
|
+
h.isChecked = this.l.getTrendLineType(i) == 1;
|
|
105656
105677
|
}
|
|
105657
105678
|
}
|
|
105658
105679
|
else if (i.e9) {
|
|
105659
|
-
if (this.
|
|
105660
|
-
h.isChecked = this.
|
|
105680
|
+
if (this.u && this.j.matchesType(i)) {
|
|
105681
|
+
h.isChecked = this.j.getTrendLineType(i) == 1;
|
|
105661
105682
|
}
|
|
105662
105683
|
}
|
|
105663
105684
|
}
|
|
@@ -105684,13 +105705,13 @@
|
|
|
105684
105705
|
for (var _g = tslib.__values(igniteuiWebcomponentsCore.fromEnum(a.series)), _h = _g.next(); !_h.done; _h = _g.next()) {
|
|
105685
105706
|
var k = _h.value;
|
|
105686
105707
|
if (k.ey) {
|
|
105687
|
-
if (this.
|
|
105688
|
-
j.isChecked = this.
|
|
105708
|
+
if (this.v && this.l.matchesType(k)) {
|
|
105709
|
+
j.isChecked = this.l.getTrendLineType(k) == 7;
|
|
105689
105710
|
}
|
|
105690
105711
|
}
|
|
105691
105712
|
else if (k.e9) {
|
|
105692
|
-
if (this.
|
|
105693
|
-
j.isChecked = this.
|
|
105713
|
+
if (this.u && this.j.matchesType(k)) {
|
|
105714
|
+
j.isChecked = this.j.getTrendLineType(k) == 7;
|
|
105694
105715
|
}
|
|
105695
105716
|
}
|
|
105696
105717
|
}
|
|
@@ -105717,13 +105738,13 @@
|
|
|
105717
105738
|
for (var _j = tslib.__values(igniteuiWebcomponentsCore.fromEnum(a.series)), _k = _j.next(); !_k.done; _k = _j.next()) {
|
|
105718
105739
|
var m = _k.value;
|
|
105719
105740
|
if (m.ey) {
|
|
105720
|
-
if (this.
|
|
105721
|
-
l.isChecked = this.
|
|
105741
|
+
if (this.v && this.l.matchesType(m)) {
|
|
105742
|
+
l.isChecked = this.l.getTrendLineType(m) == 6;
|
|
105722
105743
|
}
|
|
105723
105744
|
}
|
|
105724
105745
|
else if (m.e9) {
|
|
105725
|
-
if (this.
|
|
105726
|
-
l.isChecked = this.
|
|
105746
|
+
if (this.u && this.j.matchesType(m)) {
|
|
105747
|
+
l.isChecked = this.j.getTrendLineType(m) == 6;
|
|
105727
105748
|
}
|
|
105728
105749
|
}
|
|
105729
105750
|
}
|
|
@@ -105752,12 +105773,12 @@
|
|
|
105752
105773
|
for (var _l = tslib.__values(igniteuiWebcomponentsCore.fromEnum(a.series)), _m = _l.next(); !_m.done; _m = _l.next()) {
|
|
105753
105774
|
var q = _m.value;
|
|
105754
105775
|
if (q.ey) {
|
|
105755
|
-
if (this.
|
|
105776
|
+
if (this.v && this.l.matchesType(q) && this.l.getTrendLineType(q) == 0) {
|
|
105756
105777
|
o = o + 1;
|
|
105757
105778
|
}
|
|
105758
105779
|
}
|
|
105759
105780
|
else if (q.e9) {
|
|
105760
|
-
if (this.
|
|
105781
|
+
if (this.u && this.j.matchesType(q) && this.j.getTrendLineType(q) == 0) {
|
|
105761
105782
|
o = o + 1;
|
|
105762
105783
|
}
|
|
105763
105784
|
}
|
|
@@ -105785,36 +105806,42 @@
|
|
|
105785
105806
|
case "MinValue":
|
|
105786
105807
|
{
|
|
105787
105808
|
var r = b;
|
|
105788
|
-
var s = this.
|
|
105809
|
+
var s = this.p(a, 4);
|
|
105789
105810
|
r.isChecked = s != null && s._visibility == 0;
|
|
105790
105811
|
}
|
|
105791
105812
|
break;
|
|
105792
105813
|
case "MaxValue":
|
|
105793
105814
|
{
|
|
105794
105815
|
var t = b;
|
|
105795
|
-
var u = this.
|
|
105816
|
+
var u = this.p(a, 5);
|
|
105796
105817
|
t.isChecked = u != null && u._visibility == 0;
|
|
105797
105818
|
}
|
|
105798
105819
|
break;
|
|
105799
105820
|
case "Average":
|
|
105800
105821
|
{
|
|
105801
105822
|
var v = b;
|
|
105802
|
-
var w = this.
|
|
105823
|
+
var w = this.p(a, 6);
|
|
105803
105824
|
v.isChecked = w != null && w._visibility == 0;
|
|
105804
105825
|
}
|
|
105805
105826
|
break;
|
|
105806
105827
|
case "ShowCrosshairs":
|
|
105807
105828
|
{
|
|
105808
105829
|
var x = b;
|
|
105809
|
-
var y = this.
|
|
105830
|
+
var y = this.n(a);
|
|
105810
105831
|
x.isChecked = y != null && y._visibility == 0;
|
|
105811
105832
|
}
|
|
105812
105833
|
break;
|
|
105813
|
-
case "
|
|
105834
|
+
case "ShowGridlines":
|
|
105814
105835
|
{
|
|
105815
105836
|
var z = b;
|
|
105816
|
-
|
|
105817
|
-
|
|
105837
|
+
z.isChecked = this.s(a);
|
|
105838
|
+
}
|
|
105839
|
+
break;
|
|
105840
|
+
case "SeriesAvg":
|
|
105841
|
+
{
|
|
105842
|
+
var aa = b;
|
|
105843
|
+
var ab = this.p(a, 3);
|
|
105844
|
+
aa.isChecked = ab != null && ab._visibility == 0;
|
|
105818
105845
|
}
|
|
105819
105846
|
break;
|
|
105820
105847
|
}
|
|
@@ -105950,12 +105977,12 @@
|
|
|
105950
105977
|
e.iconCollectionName = "ChartToolbarIcons";
|
|
105951
105978
|
return [b, c, d, e];
|
|
105952
105979
|
};
|
|
105953
|
-
DataChartToolbarProvider.prototype.
|
|
105980
|
+
DataChartToolbarProvider.prototype.m = function (a) {
|
|
105954
105981
|
var e_5, _a;
|
|
105955
105982
|
try {
|
|
105956
105983
|
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(a.series)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
105957
105984
|
var b = _c.value;
|
|
105958
|
-
if (this.
|
|
105985
|
+
if (this.h.isCalloutLayer(b) && this.h.getIsAutoCalloutBehaviorEnabled(b)) {
|
|
105959
105986
|
return b;
|
|
105960
105987
|
}
|
|
105961
105988
|
}
|
|
@@ -105975,12 +106002,12 @@
|
|
|
105975
106002
|
}
|
|
105976
106003
|
return null;
|
|
105977
106004
|
};
|
|
105978
|
-
DataChartToolbarProvider.prototype.
|
|
106005
|
+
DataChartToolbarProvider.prototype.o = function (a) {
|
|
105979
106006
|
var e_6, _a;
|
|
105980
106007
|
try {
|
|
105981
106008
|
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(a.series)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
105982
106009
|
var b = _c.value;
|
|
105983
|
-
if (this.
|
|
106010
|
+
if (this.h.isFinalValueLayer(b)) {
|
|
105984
106011
|
return b;
|
|
105985
106012
|
}
|
|
105986
106013
|
}
|
|
@@ -106000,12 +106027,12 @@
|
|
|
106000
106027
|
}
|
|
106001
106028
|
return null;
|
|
106002
106029
|
};
|
|
106003
|
-
DataChartToolbarProvider.prototype.
|
|
106030
|
+
DataChartToolbarProvider.prototype.p = function (a, b) {
|
|
106004
106031
|
var e_7, _a;
|
|
106005
106032
|
try {
|
|
106006
106033
|
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(a.series)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
106007
106034
|
var c = _c.value;
|
|
106008
|
-
if (this.
|
|
106035
|
+
if (this.h.isValueLayer(c) && this.h.getValueMode(c) == b) {
|
|
106009
106036
|
return c;
|
|
106010
106037
|
}
|
|
106011
106038
|
}
|
|
@@ -106025,12 +106052,12 @@
|
|
|
106025
106052
|
}
|
|
106026
106053
|
return null;
|
|
106027
106054
|
};
|
|
106028
|
-
DataChartToolbarProvider.prototype.
|
|
106055
|
+
DataChartToolbarProvider.prototype.n = function (a) {
|
|
106029
106056
|
var e_8, _a;
|
|
106030
106057
|
try {
|
|
106031
106058
|
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(a.series)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
106032
106059
|
var b = _c.value;
|
|
106033
|
-
if (this.
|
|
106060
|
+
if (this.h.isCrosshairLayer(b)) {
|
|
106034
106061
|
return b;
|
|
106035
106062
|
}
|
|
106036
106063
|
}
|
|
@@ -106050,60 +106077,72 @@
|
|
|
106050
106077
|
}
|
|
106051
106078
|
return null;
|
|
106052
106079
|
};
|
|
106080
|
+
DataChartToolbarProvider.prototype.s = function (a) {
|
|
106081
|
+
var b = igniteuiWebcomponentsCore.typeCast(XamDataChart.$, a);
|
|
106082
|
+
if (b != null) {
|
|
106083
|
+
for (var c = 0; c < b.axes.count; c++) {
|
|
106084
|
+
var d = b.axes._inner[c];
|
|
106085
|
+
if (d.jw != null && !igniteuiWebcomponentsCore.BrushUtilCore.a(d.jw) && d.et != 0) {
|
|
106086
|
+
return true;
|
|
106087
|
+
}
|
|
106088
|
+
}
|
|
106089
|
+
}
|
|
106090
|
+
return false;
|
|
106091
|
+
};
|
|
106053
106092
|
DataChartToolbarProvider.prototype.onToolCommandExecuting = function (a, b) {
|
|
106054
106093
|
switch (b.commandId) {
|
|
106055
106094
|
case "ZoomReset":
|
|
106056
|
-
this.
|
|
106095
|
+
this.bq(a, b);
|
|
106057
106096
|
break;
|
|
106058
106097
|
case "ZoomIn":
|
|
106059
|
-
this.
|
|
106098
|
+
this.bo(a, b);
|
|
106060
106099
|
break;
|
|
106061
106100
|
case "ZoomOut":
|
|
106062
|
-
this.
|
|
106101
|
+
this.bp(a, b);
|
|
106063
106102
|
break;
|
|
106064
106103
|
case "ShowCrosshairs":
|
|
106065
|
-
this.
|
|
106104
|
+
this.bc(a, b);
|
|
106066
106105
|
break;
|
|
106067
106106
|
case "ShowGridlines":
|
|
106068
|
-
this.
|
|
106107
|
+
this.be(a, b);
|
|
106069
106108
|
break;
|
|
106070
106109
|
case "MaxValue":
|
|
106071
|
-
this.
|
|
106110
|
+
this.bi(a, b);
|
|
106072
106111
|
break;
|
|
106073
106112
|
case "MinValue":
|
|
106074
|
-
this.
|
|
106113
|
+
this.bj(a, b);
|
|
106075
106114
|
break;
|
|
106076
106115
|
case "Average":
|
|
106077
|
-
this.
|
|
106116
|
+
this.ba(a, b);
|
|
106078
106117
|
break;
|
|
106079
106118
|
case "Exponential":
|
|
106080
|
-
this.
|
|
106119
|
+
this.bd(a, b);
|
|
106081
106120
|
break;
|
|
106082
106121
|
case "Linear":
|
|
106083
|
-
this.
|
|
106122
|
+
this.bg(a, b);
|
|
106084
106123
|
break;
|
|
106085
106124
|
case "Logarithmic":
|
|
106086
|
-
this.
|
|
106125
|
+
this.bh(a, b);
|
|
106087
106126
|
break;
|
|
106088
106127
|
case "NoTrends":
|
|
106089
|
-
this.
|
|
106128
|
+
this.bk(a, b);
|
|
106090
106129
|
break;
|
|
106091
106130
|
case "SeriesAvg":
|
|
106092
|
-
this.
|
|
106131
|
+
this.bl(a, b);
|
|
106093
106132
|
break;
|
|
106094
106133
|
case "ShowValueLabels":
|
|
106095
|
-
this.
|
|
106134
|
+
this.bn(a, b);
|
|
106096
106135
|
break;
|
|
106097
106136
|
case "ShowLastValueLabel":
|
|
106098
|
-
this.
|
|
106137
|
+
this.bm(a, b);
|
|
106099
106138
|
break;
|
|
106100
106139
|
case "CopyAsImage":
|
|
106101
|
-
this.
|
|
106140
|
+
this.bb(a, b);
|
|
106102
106141
|
return 2;
|
|
106103
106142
|
}
|
|
106104
106143
|
return 0;
|
|
106105
106144
|
};
|
|
106106
|
-
DataChartToolbarProvider.prototype.
|
|
106145
|
+
DataChartToolbarProvider.prototype.w = function (a, b) {
|
|
106107
106146
|
if (a.commandId == b) {
|
|
106108
106147
|
var e = a.argumentsList;
|
|
106109
106148
|
for (var d = 0; d < e.length; d++) {
|
|
@@ -106115,15 +106154,15 @@
|
|
|
106115
106154
|
}
|
|
106116
106155
|
return false;
|
|
106117
106156
|
};
|
|
106118
|
-
DataChartToolbarProvider.prototype.
|
|
106157
|
+
DataChartToolbarProvider.prototype.bc = function (a, b) {
|
|
106119
106158
|
var _this = this;
|
|
106120
|
-
var c = this.
|
|
106121
|
-
if (this.
|
|
106159
|
+
var c = this.n(a);
|
|
106160
|
+
if (this.x(a, c)) {
|
|
106122
106161
|
return;
|
|
106123
106162
|
}
|
|
106124
|
-
this.
|
|
106125
|
-
var d = _this.
|
|
106126
|
-
_this.
|
|
106163
|
+
this.br(a, b, "ShowCrosshairs", 0, function () {
|
|
106164
|
+
var d = _this.h.createCrosshairLayer();
|
|
106165
|
+
_this.h.setCrosshairOnAxesEnabled(d, true);
|
|
106127
106166
|
var e = new AutomaticSeriesRequest();
|
|
106128
106167
|
e.a = 0;
|
|
106129
106168
|
e.e = true;
|
|
@@ -106131,57 +106170,70 @@
|
|
|
106131
106170
|
return e;
|
|
106132
106171
|
});
|
|
106133
106172
|
};
|
|
106134
|
-
DataChartToolbarProvider.prototype.
|
|
106135
|
-
var c =
|
|
106173
|
+
DataChartToolbarProvider.prototype.f = function (a, b) {
|
|
106174
|
+
var c = new AxisStrokeSettings();
|
|
106175
|
+
c.b = a.jz == null || igniteuiWebcomponentsCore.BrushUtilCore.a(a.jz) ? b : a.jz;
|
|
106176
|
+
c.a = igniteuiWebcomponentsCore.isNaN_(a.et) || a.et == 0 ? igniteuiWebcomponentsCore.DeviceUtils.g(1) : a.et;
|
|
106177
|
+
this.r.item(a, c);
|
|
106178
|
+
return c;
|
|
106179
|
+
};
|
|
106180
|
+
DataChartToolbarProvider.prototype.be = function (a, b) {
|
|
106181
|
+
var c = this.w(b, "ShowGridlines");
|
|
106136
106182
|
if (!c) {
|
|
106137
|
-
|
|
106138
|
-
|
|
106139
|
-
|
|
106140
|
-
|
|
106183
|
+
var d = igniteuiWebcomponentsCore.typeCast(XamDataChart.$, a);
|
|
106184
|
+
if (d != null) {
|
|
106185
|
+
for (var e = 0; e < d.axes.count; e++) {
|
|
106186
|
+
var f = d.axes._inner[e];
|
|
106187
|
+
if (!this.r.d(f)) {
|
|
106188
|
+
this.f(f, d.aaq);
|
|
106189
|
+
}
|
|
106190
|
+
f.et = 0;
|
|
106141
106191
|
}
|
|
106142
106192
|
}
|
|
106143
106193
|
}
|
|
106144
106194
|
else {
|
|
106145
|
-
var
|
|
106146
|
-
if (
|
|
106147
|
-
for (var
|
|
106148
|
-
var
|
|
106149
|
-
|
|
106150
|
-
|
|
106151
|
-
|
|
106152
|
-
|
|
106153
|
-
if (h.cb) {
|
|
106154
|
-
if (h.jz == null) {
|
|
106155
|
-
h.jz = f.aaq;
|
|
106156
|
-
this.q.s(h, f.aaq);
|
|
106157
|
-
}
|
|
106158
|
-
else {
|
|
106159
|
-
this.q.s(h, h.jz);
|
|
106160
|
-
}
|
|
106195
|
+
var g = igniteuiWebcomponentsCore.typeCast(XamDataChart.$, a);
|
|
106196
|
+
if (g != null) {
|
|
106197
|
+
for (var h = 0; h < g.axes.count; h++) {
|
|
106198
|
+
var i = g.axes._inner[h];
|
|
106199
|
+
var j = true;
|
|
106200
|
+
if (this.r.d(i)) {
|
|
106201
|
+
if (this.r.item(i).b != i.jz || i.et != 0) {
|
|
106202
|
+
j = true;
|
|
106161
106203
|
}
|
|
106204
|
+
else {
|
|
106205
|
+
i.jz = this.r.item(i).b;
|
|
106206
|
+
i.et = this.r.item(i).a;
|
|
106207
|
+
j = false;
|
|
106208
|
+
}
|
|
106209
|
+
}
|
|
106210
|
+
if (j) {
|
|
106211
|
+
var k = this.f(i, g.aaq);
|
|
106212
|
+
i.jz = k.b;
|
|
106213
|
+
i.et = k.a;
|
|
106162
106214
|
}
|
|
106163
106215
|
}
|
|
106164
106216
|
}
|
|
106165
106217
|
}
|
|
106166
106218
|
};
|
|
106167
|
-
DataChartToolbarProvider.prototype.
|
|
106219
|
+
DataChartToolbarProvider.prototype.bd = function (a, b) {
|
|
106168
106220
|
var e_9, _a;
|
|
106169
|
-
if (!this.
|
|
106221
|
+
if (!this.v) {
|
|
106170
106222
|
return;
|
|
106171
106223
|
}
|
|
106172
|
-
var c = this.
|
|
106224
|
+
var c = this.w(b, "Exponential");
|
|
106173
106225
|
if (c) {
|
|
106174
106226
|
try {
|
|
106175
106227
|
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(a.series)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
106176
106228
|
var d = _c.value;
|
|
106177
106229
|
if (d.ey) {
|
|
106178
|
-
if (this.
|
|
106179
|
-
this.
|
|
106230
|
+
if (this.v && this.l.matchesType(d)) {
|
|
106231
|
+
this.l.setTrendLineType(d, 7);
|
|
106180
106232
|
}
|
|
106181
106233
|
}
|
|
106182
106234
|
else if (d.e9) {
|
|
106183
|
-
if (this.
|
|
106184
|
-
this.
|
|
106235
|
+
if (this.u && this.j.matchesType(d)) {
|
|
106236
|
+
this.j.setTrendLineType(d, 7);
|
|
106185
106237
|
}
|
|
106186
106238
|
}
|
|
106187
106239
|
}
|
|
@@ -106201,24 +106253,24 @@
|
|
|
106201
106253
|
}
|
|
106202
106254
|
}
|
|
106203
106255
|
};
|
|
106204
|
-
DataChartToolbarProvider.prototype.
|
|
106256
|
+
DataChartToolbarProvider.prototype.bg = function (a, b) {
|
|
106205
106257
|
var e_10, _a;
|
|
106206
|
-
if (!this.
|
|
106258
|
+
if (!this.v) {
|
|
106207
106259
|
return;
|
|
106208
106260
|
}
|
|
106209
|
-
var c = this.
|
|
106261
|
+
var c = this.w(b, "Linear");
|
|
106210
106262
|
if (c) {
|
|
106211
106263
|
try {
|
|
106212
106264
|
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(a.series)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
106213
106265
|
var d = _c.value;
|
|
106214
106266
|
if (d.ey) {
|
|
106215
|
-
if (this.
|
|
106216
|
-
this.
|
|
106267
|
+
if (this.v && this.l.matchesType(d)) {
|
|
106268
|
+
this.l.setTrendLineType(d, 1);
|
|
106217
106269
|
}
|
|
106218
106270
|
}
|
|
106219
106271
|
else if (d.e9) {
|
|
106220
|
-
if (this.
|
|
106221
|
-
this.
|
|
106272
|
+
if (this.u && this.j.matchesType(d)) {
|
|
106273
|
+
this.j.setTrendLineType(d, 1);
|
|
106222
106274
|
}
|
|
106223
106275
|
}
|
|
106224
106276
|
}
|
|
@@ -106238,21 +106290,21 @@
|
|
|
106238
106290
|
}
|
|
106239
106291
|
}
|
|
106240
106292
|
};
|
|
106241
|
-
DataChartToolbarProvider.prototype.
|
|
106293
|
+
DataChartToolbarProvider.prototype.bh = function (a, b) {
|
|
106242
106294
|
var e_11, _a;
|
|
106243
|
-
var c = this.
|
|
106295
|
+
var c = this.w(b, "Logarithmic");
|
|
106244
106296
|
if (c) {
|
|
106245
106297
|
try {
|
|
106246
106298
|
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(a.series)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
106247
106299
|
var d = _c.value;
|
|
106248
106300
|
if (d.ey) {
|
|
106249
|
-
if (this.
|
|
106250
|
-
this.
|
|
106301
|
+
if (this.v && this.l.matchesType(d)) {
|
|
106302
|
+
this.l.setTrendLineType(d, 6);
|
|
106251
106303
|
}
|
|
106252
106304
|
}
|
|
106253
106305
|
else if (d.e9) {
|
|
106254
|
-
if (this.
|
|
106255
|
-
this.
|
|
106306
|
+
if (this.u && this.j.matchesType(d)) {
|
|
106307
|
+
this.j.setTrendLineType(d, 6);
|
|
106256
106308
|
}
|
|
106257
106309
|
}
|
|
106258
106310
|
}
|
|
@@ -106272,21 +106324,21 @@
|
|
|
106272
106324
|
}
|
|
106273
106325
|
}
|
|
106274
106326
|
};
|
|
106275
|
-
DataChartToolbarProvider.prototype.
|
|
106327
|
+
DataChartToolbarProvider.prototype.bk = function (a, b) {
|
|
106276
106328
|
var e_12, _a;
|
|
106277
|
-
var c = this.
|
|
106329
|
+
var c = this.w(b, "NoTrends");
|
|
106278
106330
|
if (c) {
|
|
106279
106331
|
try {
|
|
106280
106332
|
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(a.series)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
106281
106333
|
var d = _c.value;
|
|
106282
106334
|
if (d.ey) {
|
|
106283
|
-
if (this.
|
|
106284
|
-
this.
|
|
106335
|
+
if (this.v && this.l.matchesType(d)) {
|
|
106336
|
+
this.l.setTrendLineType(d, 0);
|
|
106285
106337
|
}
|
|
106286
106338
|
}
|
|
106287
106339
|
else if (d.e9) {
|
|
106288
|
-
if (this.
|
|
106289
|
-
this.
|
|
106340
|
+
if (this.u && this.j.matchesType(d)) {
|
|
106341
|
+
this.j.setTrendLineType(d, 0);
|
|
106290
106342
|
}
|
|
106291
106343
|
}
|
|
106292
106344
|
}
|
|
@@ -106306,11 +106358,11 @@
|
|
|
106306
106358
|
}
|
|
106307
106359
|
}
|
|
106308
106360
|
};
|
|
106309
|
-
DataChartToolbarProvider.prototype.
|
|
106310
|
-
var f = this.
|
|
106361
|
+
DataChartToolbarProvider.prototype.br = function (a, b, c, d, e) {
|
|
106362
|
+
var f = this.w(b, c);
|
|
106311
106363
|
var g = a.ao(a);
|
|
106312
106364
|
if (f && !g.e(d)) {
|
|
106313
|
-
if (this.
|
|
106365
|
+
if (this.t && e != null) {
|
|
106314
106366
|
g.b.add(e());
|
|
106315
106367
|
}
|
|
106316
106368
|
}
|
|
@@ -106318,20 +106370,20 @@
|
|
|
106318
106370
|
g.l(d);
|
|
106319
106371
|
}
|
|
106320
106372
|
};
|
|
106321
|
-
DataChartToolbarProvider.prototype.
|
|
106373
|
+
DataChartToolbarProvider.prototype.bi = function (a, b) {
|
|
106322
106374
|
var _this = this;
|
|
106323
|
-
var c = this.
|
|
106324
|
-
if (c != null && this.
|
|
106325
|
-
return;
|
|
106326
|
-
}
|
|
106327
|
-
this.
|
|
106328
|
-
var d = _this.
|
|
106329
|
-
_this.
|
|
106330
|
-
_this.
|
|
106331
|
-
_this.
|
|
106332
|
-
_this.
|
|
106333
|
-
_this.
|
|
106334
|
-
_this.
|
|
106375
|
+
var c = this.p(a, 5);
|
|
106376
|
+
if (c != null && this.h.getValueMode(c) == 5 && this.x(a, c)) {
|
|
106377
|
+
return;
|
|
106378
|
+
}
|
|
106379
|
+
this.br(a, b, "MaxValue", 1, function () {
|
|
106380
|
+
var d = _this.h.createValueLayer();
|
|
106381
|
+
_this.h.setValueMode(d, 5);
|
|
106382
|
+
_this.h.setValueAxisAnnotationEnabled(d, true);
|
|
106383
|
+
_this.h.setBrush(d, igniteuiWebcomponentsCore.BrushUtil.h(255, 99, 208, 0));
|
|
106384
|
+
_this.h.setUseLegend(d, true);
|
|
106385
|
+
_this.h.setTitle(d, "Maximum");
|
|
106386
|
+
_this.h.setLegendItemBadgeShape(d, 2);
|
|
106335
106387
|
var e = new AutomaticSeriesRequest();
|
|
106336
106388
|
e.a = 1;
|
|
106337
106389
|
e.e = true;
|
|
@@ -106339,20 +106391,20 @@
|
|
|
106339
106391
|
return e;
|
|
106340
106392
|
});
|
|
106341
106393
|
};
|
|
106342
|
-
DataChartToolbarProvider.prototype.
|
|
106394
|
+
DataChartToolbarProvider.prototype.bj = function (a, b) {
|
|
106343
106395
|
var _this = this;
|
|
106344
|
-
var c = this.
|
|
106345
|
-
if (c != null && this.
|
|
106346
|
-
return;
|
|
106347
|
-
}
|
|
106348
|
-
this.
|
|
106349
|
-
var d = _this.
|
|
106350
|
-
_this.
|
|
106351
|
-
_this.
|
|
106352
|
-
_this.
|
|
106353
|
-
_this.
|
|
106354
|
-
_this.
|
|
106355
|
-
_this.
|
|
106396
|
+
var c = this.p(a, 4);
|
|
106397
|
+
if (c != null && this.x(a, c)) {
|
|
106398
|
+
return;
|
|
106399
|
+
}
|
|
106400
|
+
this.br(a, b, "MinValue", 2, function () {
|
|
106401
|
+
var d = _this.h.createValueLayer();
|
|
106402
|
+
_this.h.setValueMode(d, 4);
|
|
106403
|
+
_this.h.setValueAxisAnnotationEnabled(d, true);
|
|
106404
|
+
_this.h.setBrush(d, igniteuiWebcomponentsCore.BrushUtil.h(255, 246, 93, 80));
|
|
106405
|
+
_this.h.setUseLegend(d, true);
|
|
106406
|
+
_this.h.setTitle(d, "Minimum");
|
|
106407
|
+
_this.h.setLegendItemBadgeShape(d, 2);
|
|
106356
106408
|
var e = new AutomaticSeriesRequest();
|
|
106357
106409
|
e.a = 2;
|
|
106358
106410
|
e.e = true;
|
|
@@ -106360,20 +106412,20 @@
|
|
|
106360
106412
|
return e;
|
|
106361
106413
|
});
|
|
106362
106414
|
};
|
|
106363
|
-
DataChartToolbarProvider.prototype.
|
|
106415
|
+
DataChartToolbarProvider.prototype.ba = function (a, b) {
|
|
106364
106416
|
var _this = this;
|
|
106365
|
-
var c = this.
|
|
106366
|
-
if (c != null && this.
|
|
106367
|
-
return;
|
|
106368
|
-
}
|
|
106369
|
-
this.
|
|
106370
|
-
var d = _this.
|
|
106371
|
-
_this.
|
|
106372
|
-
_this.
|
|
106373
|
-
_this.
|
|
106374
|
-
_this.
|
|
106375
|
-
_this.
|
|
106376
|
-
_this.
|
|
106417
|
+
var c = this.p(a, 6);
|
|
106418
|
+
if (c != null && this.x(a, c)) {
|
|
106419
|
+
return;
|
|
106420
|
+
}
|
|
106421
|
+
this.br(a, b, "Average", 3, function () {
|
|
106422
|
+
var d = _this.h.createValueLayer();
|
|
106423
|
+
_this.h.setValueMode(d, 6);
|
|
106424
|
+
_this.h.setValueAxisAnnotationEnabled(d, true);
|
|
106425
|
+
_this.h.setBrush(d, igniteuiWebcomponentsCore.BrushUtil.h(255, 248, 173, 118));
|
|
106426
|
+
_this.h.setUseLegend(d, true);
|
|
106427
|
+
_this.h.setTitle(d, "Average");
|
|
106428
|
+
_this.h.setLegendItemBadgeShape(d, 2);
|
|
106377
106429
|
var e = new AutomaticSeriesRequest();
|
|
106378
106430
|
e.a = 3;
|
|
106379
106431
|
e.e = true;
|
|
@@ -106381,14 +106433,14 @@
|
|
|
106381
106433
|
return e;
|
|
106382
106434
|
});
|
|
106383
106435
|
};
|
|
106384
|
-
DataChartToolbarProvider.prototype.
|
|
106436
|
+
DataChartToolbarProvider.prototype.bl = function (a, b) {
|
|
106385
106437
|
var c = a.ao(a);
|
|
106386
|
-
var d = this.
|
|
106438
|
+
var d = this.p(a, 3);
|
|
106387
106439
|
if (d != null) {
|
|
106388
106440
|
c.l(4);
|
|
106389
106441
|
return;
|
|
106390
106442
|
}
|
|
106391
|
-
if (!this.
|
|
106443
|
+
if (!this.t) {
|
|
106392
106444
|
return;
|
|
106393
106445
|
}
|
|
106394
106446
|
var e = a.series.count;
|
|
@@ -106397,17 +106449,17 @@
|
|
|
106397
106449
|
if (g.es) {
|
|
106398
106450
|
continue;
|
|
106399
106451
|
}
|
|
106400
|
-
var h = this.
|
|
106401
|
-
this.
|
|
106402
|
-
this.
|
|
106403
|
-
this.
|
|
106452
|
+
var h = this.h.createValueLayer();
|
|
106453
|
+
this.h.setValueMode(h, 3);
|
|
106454
|
+
this.h.setValueAxisAnnotationEnabled(h, true);
|
|
106455
|
+
this.h.setUseLegend(h, a.f2);
|
|
106404
106456
|
if (g.title != null && typeof g.title === 'string') {
|
|
106405
106457
|
var i = g.title;
|
|
106406
|
-
this.
|
|
106458
|
+
this.h.setTitle(h, i + " Avg");
|
|
106407
106459
|
}
|
|
106408
|
-
this.
|
|
106409
|
-
this.
|
|
106410
|
-
this.
|
|
106460
|
+
this.h.setLegendItemBadgeShape(h, 2);
|
|
106461
|
+
this.h.setTargetSeries(h, g);
|
|
106462
|
+
this.h.setBrush(h, g.u9);
|
|
106411
106463
|
var j = new AutomaticSeriesRequest();
|
|
106412
106464
|
j.a = 4;
|
|
106413
106465
|
j.e = true;
|
|
@@ -106415,7 +106467,7 @@
|
|
|
106415
106467
|
c.b.add(j);
|
|
106416
106468
|
}
|
|
106417
106469
|
};
|
|
106418
|
-
DataChartToolbarProvider.prototype.
|
|
106470
|
+
DataChartToolbarProvider.prototype.x = function (a, b) {
|
|
106419
106471
|
var e_13, _a;
|
|
106420
106472
|
if (b != null) {
|
|
106421
106473
|
var c = false;
|
|
@@ -106459,22 +106511,22 @@
|
|
|
106459
106511
|
}
|
|
106460
106512
|
return false;
|
|
106461
106513
|
};
|
|
106462
|
-
DataChartToolbarProvider.prototype.
|
|
106514
|
+
DataChartToolbarProvider.prototype.bn = function (a, b) {
|
|
106463
106515
|
var _this = this;
|
|
106464
|
-
var c = this.
|
|
106465
|
-
if (this.
|
|
106516
|
+
var c = this.m(a);
|
|
106517
|
+
if (this.x(a, c)) {
|
|
106466
106518
|
return;
|
|
106467
106519
|
}
|
|
106468
|
-
this.
|
|
106520
|
+
this.br(a, b, "ShowValueLabels", 5, function () {
|
|
106469
106521
|
var e_14, _a;
|
|
106470
106522
|
try {
|
|
106471
106523
|
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(a.series)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
106472
106524
|
var d = _c.value;
|
|
106473
106525
|
if (d.ey) {
|
|
106474
|
-
if (_this.
|
|
106475
|
-
var e = _this.
|
|
106526
|
+
if (_this.v && _this.l.matchesType(d)) {
|
|
106527
|
+
var e = _this.l.getMarkerType(d);
|
|
106476
106528
|
if (e == 1) {
|
|
106477
|
-
_this.
|
|
106529
|
+
_this.l.setMarkerType(d, 13);
|
|
106478
106530
|
}
|
|
106479
106531
|
}
|
|
106480
106532
|
}
|
|
@@ -106493,8 +106545,8 @@
|
|
|
106493
106545
|
throw e_14.error;
|
|
106494
106546
|
}
|
|
106495
106547
|
}
|
|
106496
|
-
var f = _this.
|
|
106497
|
-
_this.
|
|
106548
|
+
var f = _this.h.createCalloutLayer();
|
|
106549
|
+
_this.h.setIsAutoCalloutBehaviorEnabled(f, true);
|
|
106498
106550
|
var g = new AutomaticSeriesRequest();
|
|
106499
106551
|
g.a = 5;
|
|
106500
106552
|
g.e = true;
|
|
@@ -106502,13 +106554,13 @@
|
|
|
106502
106554
|
return g;
|
|
106503
106555
|
});
|
|
106504
106556
|
};
|
|
106505
|
-
DataChartToolbarProvider.prototype.
|
|
106557
|
+
DataChartToolbarProvider.prototype.bm = function (a, b) {
|
|
106506
106558
|
var _this = this;
|
|
106507
|
-
var c = this.
|
|
106508
|
-
if (this.
|
|
106559
|
+
var c = this.o(a);
|
|
106560
|
+
if (this.x(a, c)) {
|
|
106509
106561
|
return;
|
|
106510
106562
|
}
|
|
106511
|
-
this.
|
|
106563
|
+
this.br(a, b, "ShowLastValueLabel", 6, function () {
|
|
106512
106564
|
var e_15, _a;
|
|
106513
106565
|
try {
|
|
106514
106566
|
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(a.series)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
@@ -106537,7 +106589,7 @@
|
|
|
106537
106589
|
throw e_15.error;
|
|
106538
106590
|
}
|
|
106539
106591
|
}
|
|
106540
|
-
var h = _this.
|
|
106592
|
+
var h = _this.h.createFinalValueLayer();
|
|
106541
106593
|
var i = new AutomaticSeriesRequest();
|
|
106542
106594
|
i.a = 6;
|
|
106543
106595
|
i.e = true;
|
|
@@ -106545,35 +106597,35 @@
|
|
|
106545
106597
|
return i;
|
|
106546
106598
|
});
|
|
106547
106599
|
};
|
|
106548
|
-
DataChartToolbarProvider.prototype.
|
|
106549
|
-
this.
|
|
106600
|
+
DataChartToolbarProvider.prototype.bb = function (a, b) {
|
|
106601
|
+
this.q = b;
|
|
106550
106602
|
var c = new igniteuiWebcomponentsCore.CaptureImageSettings();
|
|
106551
106603
|
c.b = true;
|
|
106552
106604
|
c.a = 0;
|
|
106553
|
-
a.imageCaptured = igniteuiWebcomponentsCore.delegateCombine(a.imageCaptured, igniteuiWebcomponentsCore.runOn(this, this.
|
|
106605
|
+
a.imageCaptured = igniteuiWebcomponentsCore.delegateCombine(a.imageCaptured, igniteuiWebcomponentsCore.runOn(this, this.bf));
|
|
106554
106606
|
a.nb(c);
|
|
106555
106607
|
a.al.q();
|
|
106556
106608
|
};
|
|
106557
|
-
DataChartToolbarProvider.prototype.
|
|
106558
|
-
this.
|
|
106609
|
+
DataChartToolbarProvider.prototype.bf = function (a, b) {
|
|
106610
|
+
this.q.argumentsList = [((function () {
|
|
106559
106611
|
var $ret = new igniteuiWebcomponentsCore.ToolCommandArgument();
|
|
106560
106612
|
$ret.argumentName = "Image";
|
|
106561
106613
|
$ret.value = b.base64Data;
|
|
106562
106614
|
return $ret;
|
|
106563
106615
|
})())];
|
|
106564
106616
|
var c = a;
|
|
106565
|
-
c.imageCaptured = igniteuiWebcomponentsCore.delegateRemove(c.imageCaptured, igniteuiWebcomponentsCore.runOn(this, this.
|
|
106617
|
+
c.imageCaptured = igniteuiWebcomponentsCore.delegateRemove(c.imageCaptured, igniteuiWebcomponentsCore.runOn(this, this.bf));
|
|
106566
106618
|
if (c.commandCompleted != null) {
|
|
106567
|
-
c.commandCompleted(this.
|
|
106619
|
+
c.commandCompleted(this.q);
|
|
106568
106620
|
}
|
|
106569
106621
|
};
|
|
106570
|
-
DataChartToolbarProvider.prototype.
|
|
106622
|
+
DataChartToolbarProvider.prototype.bo = function (a, b) {
|
|
106571
106623
|
a.rz(0.05);
|
|
106572
106624
|
};
|
|
106573
|
-
DataChartToolbarProvider.prototype.
|
|
106625
|
+
DataChartToolbarProvider.prototype.bp = function (a, b) {
|
|
106574
106626
|
a.r0(0.05);
|
|
106575
106627
|
};
|
|
106576
|
-
DataChartToolbarProvider.prototype.
|
|
106628
|
+
DataChartToolbarProvider.prototype.bq = function (a, b) {
|
|
106577
106629
|
a.q8();
|
|
106578
106630
|
};
|
|
106579
106631
|
DataChartToolbarProvider.$t = igniteuiWebcomponentsCore.markType(DataChartToolbarProvider, 'DataChartToolbarProvider', igniteuiWebcomponentsCore.Base.$, [IDataChartToolbarProvider_$type]);
|
|
@@ -181063,6 +181115,50 @@
|
|
|
181063
181115
|
return SliceMouseMessage;
|
|
181064
181116
|
}(ModelUpdateMessage));
|
|
181065
181117
|
|
|
181118
|
+
/*
|
|
181119
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
181120
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
181121
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
181122
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
181123
|
+
*/
|
|
181124
|
+
/**
|
|
181125
|
+
* @hidden
|
|
181126
|
+
*/
|
|
181127
|
+
var FunnelChartSelectedItemsCollection = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
181128
|
+
tslib.__extends(FunnelChartSelectedItemsCollection, _super);
|
|
181129
|
+
function FunnelChartSelectedItemsCollection() {
|
|
181130
|
+
var _this = _super.call(this, igniteuiWebcomponentsCore.Base.$, 0) || this;
|
|
181131
|
+
_this.af = false;
|
|
181132
|
+
return _this;
|
|
181133
|
+
}
|
|
181134
|
+
Object.defineProperty(FunnelChartSelectedItemsCollection.prototype, "ae", {
|
|
181135
|
+
get: function () {
|
|
181136
|
+
return this;
|
|
181137
|
+
},
|
|
181138
|
+
enumerable: false,
|
|
181139
|
+
configurable: true
|
|
181140
|
+
});
|
|
181141
|
+
FunnelChartSelectedItemsCollection.prototype.ag = function (a) {
|
|
181142
|
+
this.collectionChanged = igniteuiWebcomponentsCore.delegateCombine(this.collectionChanged, a);
|
|
181143
|
+
};
|
|
181144
|
+
FunnelChartSelectedItemsCollection.prototype.u = function (a) {
|
|
181145
|
+
var b = this._inner[a];
|
|
181146
|
+
if (a == 0) {
|
|
181147
|
+
this._inner.shift();
|
|
181148
|
+
}
|
|
181149
|
+
else {
|
|
181150
|
+
this._inner.splice(a, 1);
|
|
181151
|
+
}
|
|
181152
|
+
this.ad(new igniteuiWebcomponentsCore.PropertyChangedEventArgs("Count"));
|
|
181153
|
+
this.ad(new igniteuiWebcomponentsCore.PropertyChangedEventArgs("Item[]"));
|
|
181154
|
+
if (!this.af) {
|
|
181155
|
+
this.ac(new igniteuiWebcomponentsCore.NotifyCollectionChangedEventArgs(1, 1, b, a));
|
|
181156
|
+
}
|
|
181157
|
+
};
|
|
181158
|
+
FunnelChartSelectedItemsCollection.$t = igniteuiWebcomponentsCore.markType(FunnelChartSelectedItemsCollection, 'FunnelChartSelectedItemsCollection', igniteuiWebcomponentsCore.ObservableCollection$1.$.specialize(igniteuiWebcomponentsCore.Base.$));
|
|
181159
|
+
return FunnelChartSelectedItemsCollection;
|
|
181160
|
+
}(igniteuiWebcomponentsCore.ObservableCollection$1));
|
|
181161
|
+
|
|
181066
181162
|
/*
|
|
181067
181163
|
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
181068
181164
|
https://www.infragistics.com/legal/license/igultimate-la
|
|
@@ -181127,6 +181223,61 @@
|
|
|
181127
181223
|
return FunnelLegendTemplates;
|
|
181128
181224
|
}(igniteuiWebcomponentsCore.Base));
|
|
181129
181225
|
|
|
181226
|
+
/*
|
|
181227
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
181228
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
181229
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
181230
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
181231
|
+
*/
|
|
181232
|
+
/**
|
|
181233
|
+
* @hidden
|
|
181234
|
+
*/
|
|
181235
|
+
var FunnelChartSelectedItemsChangedEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
181236
|
+
tslib.__extends(FunnelChartSelectedItemsChangedEventArgs, _super);
|
|
181237
|
+
function FunnelChartSelectedItemsChangedEventArgs(a, b, c) {
|
|
181238
|
+
var _this = _super.call(this) || this;
|
|
181239
|
+
_this._oldItems = null;
|
|
181240
|
+
_this._newItems = null;
|
|
181241
|
+
_this._currentItems = null;
|
|
181242
|
+
_this.oldItems = a;
|
|
181243
|
+
_this.newItems = b;
|
|
181244
|
+
_this.currentItems = c;
|
|
181245
|
+
return _this;
|
|
181246
|
+
}
|
|
181247
|
+
Object.defineProperty(FunnelChartSelectedItemsChangedEventArgs.prototype, "oldItems", {
|
|
181248
|
+
get: function () {
|
|
181249
|
+
return this._oldItems;
|
|
181250
|
+
},
|
|
181251
|
+
set: function (a) {
|
|
181252
|
+
this._oldItems = a;
|
|
181253
|
+
},
|
|
181254
|
+
enumerable: false,
|
|
181255
|
+
configurable: true
|
|
181256
|
+
});
|
|
181257
|
+
Object.defineProperty(FunnelChartSelectedItemsChangedEventArgs.prototype, "newItems", {
|
|
181258
|
+
get: function () {
|
|
181259
|
+
return this._newItems;
|
|
181260
|
+
},
|
|
181261
|
+
set: function (a) {
|
|
181262
|
+
this._newItems = a;
|
|
181263
|
+
},
|
|
181264
|
+
enumerable: false,
|
|
181265
|
+
configurable: true
|
|
181266
|
+
});
|
|
181267
|
+
Object.defineProperty(FunnelChartSelectedItemsChangedEventArgs.prototype, "currentItems", {
|
|
181268
|
+
get: function () {
|
|
181269
|
+
return this._currentItems;
|
|
181270
|
+
},
|
|
181271
|
+
set: function (a) {
|
|
181272
|
+
this._currentItems = a;
|
|
181273
|
+
},
|
|
181274
|
+
enumerable: false,
|
|
181275
|
+
configurable: true
|
|
181276
|
+
});
|
|
181277
|
+
FunnelChartSelectedItemsChangedEventArgs.$t = igniteuiWebcomponentsCore.markType(FunnelChartSelectedItemsChangedEventArgs, 'FunnelChartSelectedItemsChangedEventArgs', igniteuiWebcomponentsCore.EventArgs.$);
|
|
181278
|
+
return FunnelChartSelectedItemsChangedEventArgs;
|
|
181279
|
+
}(igniteuiWebcomponentsCore.EventArgs));
|
|
181280
|
+
|
|
181130
181281
|
/*
|
|
181131
181282
|
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
181132
181283
|
https://www.infragistics.com/legal/license/igultimate-la
|
|
@@ -181890,13 +182041,13 @@
|
|
|
181890
182041
|
this.f.i(d);
|
|
181891
182042
|
};
|
|
181892
182043
|
XamFunnelView.prototype.av = function (a) {
|
|
181893
|
-
var b = a.
|
|
181894
|
-
var c = a.
|
|
182044
|
+
var b = a.b4;
|
|
182045
|
+
var c = a.by;
|
|
181895
182046
|
if (!igniteuiWebcomponentsCore.isNaN_(b) && b != 0) {
|
|
181896
182047
|
return;
|
|
181897
182048
|
}
|
|
181898
182049
|
if (window.devicePixelRatio != undefined && window.devicePixelRatio != c) {
|
|
181899
|
-
a.
|
|
182050
|
+
a.by = window.devicePixelRatio;
|
|
181900
182051
|
}
|
|
181901
182052
|
};
|
|
181902
182053
|
XamFunnelView.prototype.aw = function (a) {
|
|
@@ -183714,47 +183865,47 @@
|
|
|
183714
183865
|
tslib.__extends(XamFunnelChart, _super);
|
|
183715
183866
|
function XamFunnelChart() {
|
|
183716
183867
|
var _this = _super.call(this) || this;
|
|
183717
|
-
_this.
|
|
183868
|
+
_this.at = null;
|
|
183869
|
+
_this.av = null;
|
|
183718
183870
|
_this.as = null;
|
|
183719
|
-
_this.
|
|
183720
|
-
_this.ax = null;
|
|
183721
|
-
_this.b4 = null;
|
|
183722
|
-
_this.a7 = null;
|
|
183871
|
+
_this.a0 = null;
|
|
183723
183872
|
_this.b5 = null;
|
|
183724
|
-
_this.
|
|
183725
|
-
_this.bt = 0.5;
|
|
183726
|
-
_this.a1 = 1;
|
|
183727
|
-
_this.a5 = null;
|
|
183728
|
-
_this.a6 = null;
|
|
183873
|
+
_this.ba = null;
|
|
183729
183874
|
_this.b6 = null;
|
|
183875
|
+
_this.a7 = null;
|
|
183876
|
+
_this.bu = 0.5;
|
|
183877
|
+
_this.a4 = 1;
|
|
183878
|
+
_this.a8 = null;
|
|
183879
|
+
_this.a9 = null;
|
|
183730
183880
|
_this.b7 = null;
|
|
183731
|
-
_this.
|
|
183732
|
-
_this.
|
|
183881
|
+
_this.b8 = null;
|
|
183882
|
+
_this.ak = new FunnelChartSelectedItemsCollection();
|
|
183883
|
+
_this.br = new igniteuiWebcomponentsCore.Dictionary$2(igniteuiWebcomponentsCore.Base.$, igniteuiWebcomponentsCore.Base.$, 0);
|
|
183884
|
+
_this.selectedItemsChanged = null;
|
|
183885
|
+
_this.cf = null;
|
|
183733
183886
|
_this.ce = null;
|
|
183734
|
-
_this.cd = null;
|
|
183735
183887
|
_this.sliceClicked = null;
|
|
183736
183888
|
_this.sliceEnter = null;
|
|
183737
183889
|
_this.sliceLeave = null;
|
|
183738
183890
|
_this.sliceHover = null;
|
|
183739
|
-
_this.
|
|
183740
|
-
_this.
|
|
183741
|
-
_this.
|
|
183742
|
-
_this.
|
|
183743
|
-
_this.
|
|
183744
|
-
_this.
|
|
183745
|
-
_this.
|
|
183746
|
-
|
|
183747
|
-
|
|
183748
|
-
_this.
|
|
183749
|
-
_this.
|
|
183750
|
-
_this.
|
|
183751
|
-
_this.
|
|
183752
|
-
_this.
|
|
183753
|
-
_this.
|
|
183754
|
-
_this.
|
|
183755
|
-
_this.ei();
|
|
183891
|
+
_this.cc = null;
|
|
183892
|
+
_this.bw = NaN;
|
|
183893
|
+
_this.bv = 1;
|
|
183894
|
+
_this.fn = null;
|
|
183895
|
+
_this.fo = null;
|
|
183896
|
+
_this.bv = 1;
|
|
183897
|
+
_this.bw = NaN;
|
|
183898
|
+
_this.ak.ag(igniteuiWebcomponentsCore.runOn(_this, _this.ei));
|
|
183899
|
+
_this.au = new MessageHandler();
|
|
183900
|
+
_this.au.b(SliceClickedMessage.$, igniteuiWebcomponentsCore.runOn(_this, _this.em));
|
|
183901
|
+
_this.au.b(SliceMouseMessage.$, igniteuiWebcomponentsCore.runOn(_this, _this.en));
|
|
183902
|
+
_this.au.b(SelectedItemsChangedMessage.$, igniteuiWebcomponentsCore.runOn(_this, _this.ej));
|
|
183903
|
+
_this.as = new MessageChannel();
|
|
183904
|
+
_this.b5 = function (a, b) { return _this.dy(b.action, b.position, b.count, b.propertyName); };
|
|
183905
|
+
_this.b6 = function (a, b) { return _this.d3(b.action, b.position, b.count, b.propertyName); };
|
|
183906
|
+
_this.ek();
|
|
183756
183907
|
_this.ab = XamFunnelChart.$;
|
|
183757
|
-
_this.
|
|
183908
|
+
_this.a0 = new XamFunnelConnector(new XamFunnelView(), _this);
|
|
183758
183909
|
_this.legendItemTemplate = ((function () {
|
|
183759
183910
|
var $ret = new igniteuiWebcomponentsCore.DataTemplate();
|
|
183760
183911
|
$ret.render = FunnelLegendTemplates.e;
|
|
@@ -183779,65 +183930,65 @@
|
|
|
183779
183930
|
XamFunnelChart.prototype.destroy = function () {
|
|
183780
183931
|
this.provideContainer(null);
|
|
183781
183932
|
};
|
|
183782
|
-
Object.defineProperty(XamFunnelChart.prototype, "
|
|
183933
|
+
Object.defineProperty(XamFunnelChart.prototype, "au", {
|
|
183783
183934
|
get: function () {
|
|
183784
|
-
return this.
|
|
183935
|
+
return this.at;
|
|
183785
183936
|
},
|
|
183786
183937
|
set: function (a) {
|
|
183787
|
-
this.
|
|
183938
|
+
this.at = a;
|
|
183788
183939
|
},
|
|
183789
183940
|
enumerable: false,
|
|
183790
183941
|
configurable: true
|
|
183791
183942
|
});
|
|
183792
|
-
XamFunnelChart.prototype.
|
|
183793
|
-
this.
|
|
183794
|
-
this.
|
|
183795
|
-
this.
|
|
183796
|
-
this.
|
|
183797
|
-
this.
|
|
183798
|
-
this.
|
|
183799
|
-
this.
|
|
183943
|
+
XamFunnelChart.prototype.ek = function () {
|
|
183944
|
+
this.ee(XamFunnelChart.$$p[1], 0, this.bz);
|
|
183945
|
+
this.ee(XamFunnelChart.$$p[10], igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.Visibility_$type, this.fv), igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.Visibility_$type, this.fv));
|
|
183946
|
+
this.ee(XamFunnelChart.$$p[17], igniteuiWebcomponentsCore.enumGetBox(OuterLabelAlignment_$type, this.ax), igniteuiWebcomponentsCore.enumGetBox(OuterLabelAlignment_$type, this.ax));
|
|
183947
|
+
this.ee(XamFunnelChart.$$p[4], igniteuiWebcomponentsCore.enumGetBox(FunnelSliceDisplay_$type, this.an), igniteuiWebcomponentsCore.enumGetBox(FunnelSliceDisplay_$type, this.an));
|
|
183948
|
+
this.ee(XamFunnelChart.$$p[26], this.fs, this.fs);
|
|
183949
|
+
this.ee(XamFunnelChart.$$p[16], this.fr, this.fr);
|
|
183950
|
+
this.el();
|
|
183800
183951
|
};
|
|
183801
|
-
XamFunnelChart.prototype.
|
|
183952
|
+
XamFunnelChart.prototype.el = function () {
|
|
183802
183953
|
var a = new PropertyChangedMessage();
|
|
183803
183954
|
a.g = "ItemProvider";
|
|
183804
183955
|
a.e = null;
|
|
183805
183956
|
a.d = this;
|
|
183806
|
-
this.
|
|
183957
|
+
this.as.i(a);
|
|
183807
183958
|
};
|
|
183808
|
-
Object.defineProperty(XamFunnelChart.prototype, "
|
|
183959
|
+
Object.defineProperty(XamFunnelChart.prototype, "aw", {
|
|
183809
183960
|
get: function () {
|
|
183810
|
-
return this.
|
|
183961
|
+
return this.av;
|
|
183811
183962
|
},
|
|
183812
183963
|
set: function (a) {
|
|
183813
|
-
var b = this.
|
|
183814
|
-
this.
|
|
183815
|
-
this.
|
|
183964
|
+
var b = this.av;
|
|
183965
|
+
this.av = a;
|
|
183966
|
+
this.eg(b, this.av);
|
|
183816
183967
|
},
|
|
183817
183968
|
enumerable: false,
|
|
183818
183969
|
configurable: true
|
|
183819
183970
|
});
|
|
183820
|
-
XamFunnelChart.prototype.
|
|
183971
|
+
XamFunnelChart.prototype.eg = function (a, b) {
|
|
183821
183972
|
if (a != null) {
|
|
183822
183973
|
var c = igniteuiWebcomponentsCore.typeCast(MessageChannel.$, a.b("ModelUpdateMessages"));
|
|
183823
183974
|
if (c != null) {
|
|
183824
|
-
c.h(igniteuiWebcomponentsCore.runOn(this, this.
|
|
183975
|
+
c.h(igniteuiWebcomponentsCore.runOn(this, this.d5));
|
|
183825
183976
|
}
|
|
183826
|
-
this.
|
|
183977
|
+
this.as.g();
|
|
183827
183978
|
}
|
|
183828
183979
|
if (b != null) {
|
|
183829
183980
|
var d = igniteuiWebcomponentsCore.typeCast(MessageChannel.$, b.b("ModelUpdateMessages"));
|
|
183830
183981
|
if (d != null) {
|
|
183831
|
-
d.e(igniteuiWebcomponentsCore.runOn(this, this.
|
|
183982
|
+
d.e(igniteuiWebcomponentsCore.runOn(this, this.d5));
|
|
183832
183983
|
}
|
|
183833
183984
|
var e = igniteuiWebcomponentsCore.typeCast(MessageChannel.$, b.b("ConfigurationMessages"));
|
|
183834
|
-
this.
|
|
183985
|
+
this.as.f(e);
|
|
183835
183986
|
}
|
|
183836
183987
|
};
|
|
183837
|
-
XamFunnelChart.prototype.
|
|
183838
|
-
this.
|
|
183988
|
+
XamFunnelChart.prototype.d5 = function (a) {
|
|
183989
|
+
this.au.c(a);
|
|
183839
183990
|
};
|
|
183840
|
-
XamFunnelChart.prototype.
|
|
183991
|
+
XamFunnelChart.prototype.dy = function (a, b, c, d) {
|
|
183841
183992
|
var e = ((function () {
|
|
183842
183993
|
var $ret = new DataUpdatedMessage();
|
|
183843
183994
|
$ret.g = b;
|
|
@@ -183862,26 +184013,26 @@
|
|
|
183862
184013
|
e.c = 4;
|
|
183863
184014
|
break;
|
|
183864
184015
|
}
|
|
183865
|
-
this.
|
|
183866
|
-
this.
|
|
183867
|
-
this.
|
|
183868
|
-
this.
|
|
184016
|
+
this.ee("ValueColumn", this.bg, this.bg);
|
|
184017
|
+
this.ee("InnerLabelColumn", this.bc, this.bc);
|
|
184018
|
+
this.ee("OuterLabelColumn", this.bd, this.bd);
|
|
184019
|
+
this.as.i(e);
|
|
183869
184020
|
};
|
|
183870
|
-
Object.defineProperty(XamFunnelChart.prototype, "
|
|
184021
|
+
Object.defineProperty(XamFunnelChart.prototype, "bg", {
|
|
183871
184022
|
get: function () {
|
|
183872
|
-
return this.
|
|
184023
|
+
return this.ba;
|
|
183873
184024
|
},
|
|
183874
184025
|
set: function (a) {
|
|
183875
|
-
if (this.
|
|
183876
|
-
var b = this.
|
|
183877
|
-
this.
|
|
183878
|
-
this.
|
|
184026
|
+
if (this.ba != a) {
|
|
184027
|
+
var b = this.ba;
|
|
184028
|
+
this.ba = a;
|
|
184029
|
+
this.ee("ValueColumn", b, this.ba);
|
|
183879
184030
|
}
|
|
183880
184031
|
},
|
|
183881
184032
|
enumerable: false,
|
|
183882
184033
|
configurable: true
|
|
183883
184034
|
});
|
|
183884
|
-
XamFunnelChart.prototype.
|
|
184035
|
+
XamFunnelChart.prototype.d3 = function (a, b, c, d) {
|
|
183885
184036
|
var e = ((function () {
|
|
183886
184037
|
var $ret = new DataUpdatedMessage();
|
|
183887
184038
|
$ret.g = b;
|
|
@@ -183906,185 +184057,190 @@
|
|
|
183906
184057
|
e.c = 4;
|
|
183907
184058
|
break;
|
|
183908
184059
|
}
|
|
183909
|
-
this.
|
|
183910
|
-
this.
|
|
184060
|
+
this.ee("HighlightValueColumn", this.bb, this.bb);
|
|
184061
|
+
this.as.i(e);
|
|
183911
184062
|
};
|
|
183912
|
-
Object.defineProperty(XamFunnelChart.prototype, "
|
|
184063
|
+
Object.defineProperty(XamFunnelChart.prototype, "bb", {
|
|
183913
184064
|
get: function () {
|
|
183914
|
-
return this.
|
|
184065
|
+
return this.a7;
|
|
183915
184066
|
},
|
|
183916
184067
|
set: function (a) {
|
|
183917
|
-
if (this.
|
|
183918
|
-
var b = this.
|
|
183919
|
-
this.
|
|
183920
|
-
this.
|
|
183921
|
-
this.
|
|
184068
|
+
if (this.a7 != a) {
|
|
184069
|
+
var b = this.a7;
|
|
184070
|
+
this.a7 = a;
|
|
184071
|
+
this.ep();
|
|
184072
|
+
this.ee("HighlightValueColumn", b, this.a7);
|
|
183922
184073
|
}
|
|
183923
184074
|
},
|
|
183924
184075
|
enumerable: false,
|
|
183925
184076
|
configurable: true
|
|
183926
184077
|
});
|
|
183927
|
-
Object.defineProperty(XamFunnelChart.prototype, "
|
|
184078
|
+
Object.defineProperty(XamFunnelChart.prototype, "bx", {
|
|
183928
184079
|
get: function () {
|
|
183929
|
-
return this.
|
|
184080
|
+
return this.bu;
|
|
183930
184081
|
},
|
|
183931
184082
|
set: function (a) {
|
|
183932
|
-
var b = this.
|
|
183933
|
-
this.
|
|
183934
|
-
if (b != this.
|
|
183935
|
-
this.
|
|
184083
|
+
var b = this.bu;
|
|
184084
|
+
this.bu = a;
|
|
184085
|
+
if (b != this.bu) {
|
|
184086
|
+
this.ee("ActualHighlightValueOpacity", b, a);
|
|
183936
184087
|
}
|
|
183937
184088
|
},
|
|
183938
184089
|
enumerable: false,
|
|
183939
184090
|
configurable: true
|
|
183940
184091
|
});
|
|
183941
|
-
XamFunnelChart.prototype.
|
|
183942
|
-
this.
|
|
184092
|
+
XamFunnelChart.prototype.eq = function () {
|
|
184093
|
+
this.bx = igniteuiWebcomponentsCore.isNaN_(this.b1) ? 0.5 : Math.max(0, Math.min(this.b1, 1));
|
|
183943
184094
|
};
|
|
183944
|
-
Object.defineProperty(XamFunnelChart.prototype, "
|
|
184095
|
+
Object.defineProperty(XamFunnelChart.prototype, "a5", {
|
|
183945
184096
|
get: function () {
|
|
183946
|
-
return this.
|
|
184097
|
+
return this.a4;
|
|
183947
184098
|
},
|
|
183948
184099
|
set: function (a) {
|
|
183949
|
-
this.
|
|
184100
|
+
this.a4 = a;
|
|
183950
184101
|
},
|
|
183951
184102
|
enumerable: false,
|
|
183952
184103
|
configurable: true
|
|
183953
184104
|
});
|
|
183954
|
-
XamFunnelChart.prototype.
|
|
183955
|
-
var a = this.
|
|
183956
|
-
if (this.
|
|
183957
|
-
if (this.
|
|
183958
|
-
this.
|
|
184105
|
+
XamFunnelChart.prototype.ep = function () {
|
|
184106
|
+
var a = this.a5;
|
|
184107
|
+
if (this.a6 != 1) {
|
|
184108
|
+
if (this.bb == null || this.bg == null || this.bb.count != this.bg.count) {
|
|
184109
|
+
this.a5 = 1;
|
|
183959
184110
|
}
|
|
183960
184111
|
else {
|
|
183961
|
-
this.
|
|
184112
|
+
this.a5 = 2;
|
|
183962
184113
|
}
|
|
183963
184114
|
}
|
|
183964
184115
|
else {
|
|
183965
|
-
this.
|
|
184116
|
+
this.a5 = 1;
|
|
183966
184117
|
}
|
|
183967
|
-
if (this.
|
|
183968
|
-
this.
|
|
184118
|
+
if (this.a5 != a) {
|
|
184119
|
+
this.ee("ActualHighlightValueDisplayMode", igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.HighlightedValueDisplayMode_$type, a), igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.HighlightedValueDisplayMode_$type, this.a5));
|
|
183969
184120
|
}
|
|
183970
184121
|
};
|
|
183971
|
-
Object.defineProperty(XamFunnelChart.prototype, "
|
|
184122
|
+
Object.defineProperty(XamFunnelChart.prototype, "a6", {
|
|
183972
184123
|
get: function () {
|
|
183973
|
-
return igniteuiWebcomponentsCore.EnumUtil.getEnumValue(igniteuiWebcomponentsCore.HighlightedValueDisplayMode_$type, this.c(XamFunnelChart.
|
|
184124
|
+
return igniteuiWebcomponentsCore.EnumUtil.getEnumValue(igniteuiWebcomponentsCore.HighlightedValueDisplayMode_$type, this.c(XamFunnelChart.ez));
|
|
183974
184125
|
},
|
|
183975
184126
|
set: function (a) {
|
|
183976
|
-
this.h(XamFunnelChart.
|
|
183977
|
-
this.
|
|
184127
|
+
this.h(XamFunnelChart.ez, igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.HighlightedValueDisplayMode_$type, a));
|
|
184128
|
+
this.ep();
|
|
183978
184129
|
},
|
|
183979
184130
|
enumerable: false,
|
|
183980
184131
|
configurable: true
|
|
183981
184132
|
});
|
|
183982
|
-
Object.defineProperty(XamFunnelChart.prototype, "
|
|
184133
|
+
Object.defineProperty(XamFunnelChart.prototype, "bc", {
|
|
183983
184134
|
get: function () {
|
|
183984
|
-
return this.
|
|
184135
|
+
return this.a8;
|
|
183985
184136
|
},
|
|
183986
184137
|
set: function (a) {
|
|
183987
|
-
if (this.
|
|
183988
|
-
var b = this.
|
|
183989
|
-
this.
|
|
183990
|
-
this.
|
|
184138
|
+
if (this.a8 != a) {
|
|
184139
|
+
var b = this.a8;
|
|
184140
|
+
this.a8 = a;
|
|
184141
|
+
this.ee("InnerLabelColumn", b, this.bc);
|
|
183991
184142
|
}
|
|
183992
184143
|
},
|
|
183993
184144
|
enumerable: false,
|
|
183994
184145
|
configurable: true
|
|
183995
184146
|
});
|
|
183996
|
-
Object.defineProperty(XamFunnelChart.prototype, "
|
|
184147
|
+
Object.defineProperty(XamFunnelChart.prototype, "bd", {
|
|
183997
184148
|
get: function () {
|
|
183998
|
-
return this.
|
|
184149
|
+
return this.a9;
|
|
183999
184150
|
},
|
|
184000
184151
|
set: function (a) {
|
|
184001
|
-
if (this.
|
|
184002
|
-
var b = this.
|
|
184003
|
-
this.
|
|
184004
|
-
this.
|
|
184152
|
+
if (this.a9 != a) {
|
|
184153
|
+
var b = this.a9;
|
|
184154
|
+
this.a9 = a;
|
|
184155
|
+
this.ee("OuterLabelColumn", b, this.bd);
|
|
184005
184156
|
}
|
|
184006
184157
|
},
|
|
184007
184158
|
enumerable: false,
|
|
184008
184159
|
configurable: true
|
|
184009
184160
|
});
|
|
184010
|
-
Object.defineProperty(XamFunnelChart.prototype, "
|
|
184161
|
+
Object.defineProperty(XamFunnelChart.prototype, "b9", {
|
|
184011
184162
|
get: function () {
|
|
184012
|
-
return this.
|
|
184163
|
+
return this.b7;
|
|
184013
184164
|
},
|
|
184014
184165
|
set: function (a) {
|
|
184015
|
-
var b = this.
|
|
184016
|
-
this.
|
|
184017
|
-
this.
|
|
184166
|
+
var b = this.b7;
|
|
184167
|
+
this.b7 = a;
|
|
184168
|
+
this.ee("FormatInnerLabel", b, a);
|
|
184018
184169
|
},
|
|
184019
184170
|
enumerable: false,
|
|
184020
184171
|
configurable: true
|
|
184021
184172
|
});
|
|
184022
|
-
Object.defineProperty(XamFunnelChart.prototype, "
|
|
184173
|
+
Object.defineProperty(XamFunnelChart.prototype, "ca", {
|
|
184023
184174
|
get: function () {
|
|
184024
|
-
return this.
|
|
184175
|
+
return this.b8;
|
|
184025
184176
|
},
|
|
184026
184177
|
set: function (a) {
|
|
184027
|
-
var b = this.
|
|
184028
|
-
this.
|
|
184029
|
-
this.
|
|
184178
|
+
var b = this.b8;
|
|
184179
|
+
this.b8 = a;
|
|
184180
|
+
this.ee("FormatOuterLabel", b, a);
|
|
184030
184181
|
},
|
|
184031
184182
|
enumerable: false,
|
|
184032
184183
|
configurable: true
|
|
184033
184184
|
});
|
|
184034
|
-
Object.defineProperty(XamFunnelChart.prototype, "
|
|
184185
|
+
Object.defineProperty(XamFunnelChart.prototype, "selectedItems", {
|
|
184035
184186
|
get: function () {
|
|
184036
|
-
return this.
|
|
184187
|
+
return this.ak;
|
|
184037
184188
|
},
|
|
184038
184189
|
enumerable: false,
|
|
184039
184190
|
configurable: true
|
|
184040
184191
|
});
|
|
184041
|
-
|
|
184192
|
+
XamFunnelChart.prototype.ef = function (a, b) {
|
|
184193
|
+
if (this.selectedItemsChanged != null) {
|
|
184194
|
+
this.selectedItemsChanged(a, b);
|
|
184195
|
+
}
|
|
184196
|
+
};
|
|
184197
|
+
Object.defineProperty(XamFunnelChart.prototype, "dl", {
|
|
184042
184198
|
get: function () {
|
|
184043
|
-
return this.
|
|
184199
|
+
return this.cf;
|
|
184044
184200
|
},
|
|
184045
184201
|
set: function (a) {
|
|
184046
|
-
var b = this.
|
|
184047
|
-
this.
|
|
184048
|
-
this.
|
|
184202
|
+
var b = this.cf;
|
|
184203
|
+
this.cf = a;
|
|
184204
|
+
this.ee("TextStyle", b, a);
|
|
184049
184205
|
},
|
|
184050
184206
|
enumerable: false,
|
|
184051
184207
|
configurable: true
|
|
184052
184208
|
});
|
|
184053
|
-
Object.defineProperty(XamFunnelChart.prototype, "
|
|
184209
|
+
Object.defineProperty(XamFunnelChart.prototype, "dd", {
|
|
184054
184210
|
get: function () {
|
|
184055
|
-
return this.
|
|
184211
|
+
return this.ce;
|
|
184056
184212
|
},
|
|
184057
184213
|
set: function (a) {
|
|
184058
|
-
var b = this.
|
|
184059
|
-
this.
|
|
184060
|
-
this.
|
|
184214
|
+
var b = this.ce;
|
|
184215
|
+
this.ce = a;
|
|
184216
|
+
this.ee("OuterLabelTextStyle", b, a);
|
|
184061
184217
|
},
|
|
184062
184218
|
enumerable: false,
|
|
184063
184219
|
configurable: true
|
|
184064
184220
|
});
|
|
184065
184221
|
XamFunnelChart.prototype.onDetachedFromUI = function () {
|
|
184066
|
-
this.
|
|
184222
|
+
this.a0.e.az();
|
|
184067
184223
|
};
|
|
184068
184224
|
XamFunnelChart.prototype.onAttachedToUI = function () {
|
|
184069
|
-
this.
|
|
184225
|
+
this.a0.e.ax(this);
|
|
184070
184226
|
};
|
|
184071
|
-
XamFunnelChart.prototype.
|
|
184072
|
-
if (this.
|
|
184227
|
+
XamFunnelChart.prototype.ee = function (a, b, c) {
|
|
184228
|
+
if (this.bk(a, b, c) || this.bj(a, b, c) || this.bi(a, b, c) || this.bm(a, b, c) || this.bl(a, b, c)) {
|
|
184073
184229
|
return;
|
|
184074
184230
|
}
|
|
184075
184231
|
if (a == "PixelScalingRatio") {
|
|
184076
|
-
if (igniteuiWebcomponentsCore.isNaN_(igniteuiWebcomponentsCore.DeviceUtils.a(this.
|
|
184077
|
-
this.
|
|
184232
|
+
if (igniteuiWebcomponentsCore.isNaN_(igniteuiWebcomponentsCore.DeviceUtils.a(this.b4))) {
|
|
184233
|
+
this.by = 1;
|
|
184078
184234
|
}
|
|
184079
184235
|
else {
|
|
184080
|
-
this.
|
|
184236
|
+
this.by = igniteuiWebcomponentsCore.DeviceUtils.a(this.b4);
|
|
184081
184237
|
}
|
|
184082
184238
|
}
|
|
184083
184239
|
if (a == XamFunnelChart.$$p[6]) {
|
|
184084
|
-
this.
|
|
184240
|
+
this.eq();
|
|
184085
184241
|
return;
|
|
184086
184242
|
}
|
|
184087
|
-
this.
|
|
184243
|
+
this.as.i(((function () {
|
|
184088
184244
|
var $ret = new PropertyChangedMessage();
|
|
184089
184245
|
$ret.g = a;
|
|
184090
184246
|
$ret.e = b;
|
|
@@ -184092,9 +184248,9 @@
|
|
|
184092
184248
|
return $ret;
|
|
184093
184249
|
})()));
|
|
184094
184250
|
};
|
|
184095
|
-
XamFunnelChart.prototype.
|
|
184251
|
+
XamFunnelChart.prototype.bi = function (a, b, c) {
|
|
184096
184252
|
if (a == XamFunnelChart.$$p[2] || a == XamFunnelChart.$$p[21]) {
|
|
184097
|
-
this.
|
|
184253
|
+
this.as.i(((function () {
|
|
184098
184254
|
var $ret = new PropertyChangedMessage();
|
|
184099
184255
|
$ret.g = a;
|
|
184100
184256
|
$ret.e = b == null ? null : b;
|
|
@@ -184105,24 +184261,24 @@
|
|
|
184105
184261
|
}
|
|
184106
184262
|
return false;
|
|
184107
184263
|
};
|
|
184108
|
-
XamFunnelChart.prototype.
|
|
184264
|
+
XamFunnelChart.prototype.bk = function (a, b, c) {
|
|
184109
184265
|
var _this = this;
|
|
184110
184266
|
if (a == XamFunnelChart.$$p[12]) {
|
|
184111
184267
|
if (b != null) {
|
|
184112
|
-
this.
|
|
184113
|
-
if (this.
|
|
184114
|
-
this.
|
|
184268
|
+
this.a2 = null;
|
|
184269
|
+
if (this.a3 != null && this.highlightedItemsSource == null) {
|
|
184270
|
+
this.a3 = null;
|
|
184115
184271
|
}
|
|
184116
184272
|
}
|
|
184117
184273
|
if (c != null) {
|
|
184118
|
-
this.
|
|
184119
|
-
this.
|
|
184274
|
+
this.selectedItems.clear();
|
|
184275
|
+
this.a2 = ((function () {
|
|
184120
184276
|
var $ret = new igniteuiWebcomponentsCore.FastItemsSource();
|
|
184121
184277
|
$ret.e = _this.itemsSource;
|
|
184122
184278
|
return $ret;
|
|
184123
184279
|
})());
|
|
184124
184280
|
if (this.highlightedItemsSource == null) {
|
|
184125
|
-
this.
|
|
184281
|
+
this.a3 = ((function () {
|
|
184126
184282
|
var $ret = new igniteuiWebcomponentsCore.FastItemsSource();
|
|
184127
184283
|
$ret.e = _this.itemsSource;
|
|
184128
184284
|
return $ret;
|
|
@@ -184134,169 +184290,169 @@
|
|
|
184134
184290
|
else if (a == XamFunnelChart.$$p[3]) {
|
|
184135
184291
|
if (b != null) {
|
|
184136
184292
|
var d = b;
|
|
184137
|
-
d.event = igniteuiWebcomponentsCore.delegateRemove(d.event, this.
|
|
184293
|
+
d.event = igniteuiWebcomponentsCore.delegateRemove(d.event, this.b5);
|
|
184138
184294
|
}
|
|
184139
184295
|
if (c != null) {
|
|
184140
184296
|
var e = c;
|
|
184141
|
-
e.event = igniteuiWebcomponentsCore.delegateCombine(e.event, this.
|
|
184297
|
+
e.event = igniteuiWebcomponentsCore.delegateCombine(e.event, this.b5);
|
|
184142
184298
|
}
|
|
184143
|
-
this.
|
|
184299
|
+
this.d2(a, b, c);
|
|
184144
184300
|
return true;
|
|
184145
184301
|
}
|
|
184146
184302
|
else if (a == XamFunnelChart.$$p[30] || a == XamFunnelChart.$$p[9] || a == XamFunnelChart.$$p[18]) {
|
|
184147
|
-
this.
|
|
184303
|
+
this.d2(a, b, c);
|
|
184148
184304
|
return false;
|
|
184149
184305
|
}
|
|
184150
184306
|
return false;
|
|
184151
184307
|
};
|
|
184152
|
-
XamFunnelChart.prototype.
|
|
184308
|
+
XamFunnelChart.prototype.bj = function (a, b, c) {
|
|
184153
184309
|
var _this = this;
|
|
184154
184310
|
if (a == XamFunnelChart.$$p[7]) {
|
|
184155
184311
|
if (b != null) {
|
|
184156
|
-
this.
|
|
184312
|
+
this.a3 = null;
|
|
184157
184313
|
}
|
|
184158
184314
|
if (c != null) {
|
|
184159
|
-
this.
|
|
184160
|
-
this.
|
|
184315
|
+
this.selectedItems.clear();
|
|
184316
|
+
this.a3 = ((function () {
|
|
184161
184317
|
var $ret = new igniteuiWebcomponentsCore.FastItemsSource();
|
|
184162
184318
|
$ret.e = _this.highlightedItemsSource;
|
|
184163
184319
|
return $ret;
|
|
184164
184320
|
})());
|
|
184165
184321
|
}
|
|
184166
184322
|
else if (this.itemsSource != null) {
|
|
184167
|
-
this.
|
|
184168
|
-
this.
|
|
184323
|
+
this.selectedItems.clear();
|
|
184324
|
+
this.a3 = ((function () {
|
|
184169
184325
|
var $ret = new igniteuiWebcomponentsCore.FastItemsSource();
|
|
184170
184326
|
$ret.e = _this.itemsSource;
|
|
184171
184327
|
return $ret;
|
|
184172
184328
|
})());
|
|
184173
184329
|
}
|
|
184174
|
-
this.
|
|
184330
|
+
this.ep();
|
|
184175
184331
|
return true;
|
|
184176
184332
|
}
|
|
184177
184333
|
else if (a == XamFunnelChart.$$p[5]) {
|
|
184178
184334
|
if (b != null) {
|
|
184179
184335
|
var d = b;
|
|
184180
|
-
d.event = igniteuiWebcomponentsCore.delegateRemove(d.event, this.
|
|
184336
|
+
d.event = igniteuiWebcomponentsCore.delegateRemove(d.event, this.b6);
|
|
184181
184337
|
}
|
|
184182
184338
|
if (c != null) {
|
|
184183
184339
|
var e = c;
|
|
184184
|
-
e.event = igniteuiWebcomponentsCore.delegateCombine(e.event, this.
|
|
184340
|
+
e.event = igniteuiWebcomponentsCore.delegateCombine(e.event, this.b6);
|
|
184185
184341
|
}
|
|
184186
|
-
this.
|
|
184342
|
+
this.d1(a, b, c);
|
|
184187
184343
|
return true;
|
|
184188
184344
|
}
|
|
184189
184345
|
else if (a == XamFunnelChart.$$p[8]) {
|
|
184190
|
-
this.
|
|
184346
|
+
this.d1(a, b, c);
|
|
184191
184347
|
return false;
|
|
184192
184348
|
}
|
|
184193
184349
|
return false;
|
|
184194
184350
|
};
|
|
184195
|
-
XamFunnelChart.prototype.
|
|
184351
|
+
XamFunnelChart.prototype.be = function (a, b) {
|
|
184196
184352
|
return a.registerColumn(b, null, false);
|
|
184197
184353
|
};
|
|
184198
|
-
XamFunnelChart.prototype.
|
|
184354
|
+
XamFunnelChart.prototype.bf = function (a, b) {
|
|
184199
184355
|
return a.registerColumnObject(b, null, false);
|
|
184200
184356
|
};
|
|
184201
|
-
XamFunnelChart.prototype.
|
|
184202
|
-
if (this.
|
|
184357
|
+
XamFunnelChart.prototype.d2 = function (a, b, c) {
|
|
184358
|
+
if (this.a2 == null) {
|
|
184203
184359
|
var d = igniteuiWebcomponentsCore.typeCast(igniteuiWebcomponentsCore.FastItemsSource.$, b);
|
|
184204
184360
|
if (d != null) {
|
|
184205
|
-
if (this.
|
|
184206
|
-
d.deregisterColumn(this.
|
|
184361
|
+
if (this.bg != null) {
|
|
184362
|
+
d.deregisterColumn(this.bg);
|
|
184207
184363
|
}
|
|
184208
|
-
if (this.
|
|
184209
|
-
d.deregisterColumn(this.
|
|
184364
|
+
if (this.bc != null) {
|
|
184365
|
+
d.deregisterColumn(this.bc);
|
|
184210
184366
|
}
|
|
184211
|
-
if (this.
|
|
184212
|
-
d.deregisterColumn(this.
|
|
184367
|
+
if (this.bd != null) {
|
|
184368
|
+
d.deregisterColumn(this.bd);
|
|
184213
184369
|
}
|
|
184370
|
+
this.bg = null;
|
|
184371
|
+
this.bc = null;
|
|
184214
184372
|
this.bd = null;
|
|
184215
|
-
this.a9 = null;
|
|
184216
|
-
this.ba = null;
|
|
184217
184373
|
}
|
|
184218
184374
|
return;
|
|
184219
184375
|
}
|
|
184220
184376
|
if (b != null && typeof b === 'string') {
|
|
184221
184377
|
switch (a) {
|
|
184222
184378
|
case XamFunnelChart.$$p[30]:
|
|
184223
|
-
this.
|
|
184224
|
-
this.
|
|
184379
|
+
this.a2.deregisterColumn(this.bg);
|
|
184380
|
+
this.bg = null;
|
|
184225
184381
|
break;
|
|
184226
184382
|
case XamFunnelChart.$$p[9]:
|
|
184227
|
-
this.
|
|
184228
|
-
this.
|
|
184383
|
+
this.a2.deregisterColumn(this.bc);
|
|
184384
|
+
this.bc = null;
|
|
184229
184385
|
break;
|
|
184230
184386
|
case XamFunnelChart.$$p[18]:
|
|
184231
|
-
this.
|
|
184232
|
-
this.
|
|
184387
|
+
this.a2.deregisterColumn(this.bd);
|
|
184388
|
+
this.bd = null;
|
|
184233
184389
|
break;
|
|
184234
184390
|
}
|
|
184235
184391
|
}
|
|
184236
184392
|
if (c != null && igniteuiWebcomponentsCore.typeCast(igniteuiWebcomponentsCore.FastItemsSource.$, c) !== null) {
|
|
184237
|
-
if (this.
|
|
184238
|
-
this.
|
|
184393
|
+
if (this.dw != null) {
|
|
184394
|
+
this.bg = this.be(c, this.dw);
|
|
184239
184395
|
}
|
|
184240
|
-
if (this.
|
|
184241
|
-
this.
|
|
184396
|
+
if (this.cz != null) {
|
|
184397
|
+
this.bc = this.bf(c, this.cz);
|
|
184242
184398
|
}
|
|
184243
|
-
if (this.
|
|
184244
|
-
this.
|
|
184399
|
+
if (this.da != null) {
|
|
184400
|
+
this.bd = this.bf(c, this.da);
|
|
184245
184401
|
}
|
|
184246
184402
|
}
|
|
184247
184403
|
if (c != null && typeof c === 'string') {
|
|
184248
184404
|
switch (a) {
|
|
184249
184405
|
case XamFunnelChart.$$p[30]:
|
|
184250
|
-
this.
|
|
184406
|
+
this.bg = this.be(this.a2, this.dw);
|
|
184251
184407
|
break;
|
|
184252
184408
|
case XamFunnelChart.$$p[9]:
|
|
184253
|
-
this.
|
|
184409
|
+
this.bc = this.bf(this.a2, this.cz);
|
|
184254
184410
|
break;
|
|
184255
184411
|
case XamFunnelChart.$$p[18]:
|
|
184256
|
-
this.
|
|
184412
|
+
this.bd = this.bf(this.a2, this.da);
|
|
184257
184413
|
break;
|
|
184258
184414
|
}
|
|
184259
184415
|
}
|
|
184260
184416
|
};
|
|
184261
|
-
XamFunnelChart.prototype.
|
|
184262
|
-
if (this.
|
|
184417
|
+
XamFunnelChart.prototype.d1 = function (a, b, c) {
|
|
184418
|
+
if (this.a3 == null) {
|
|
184263
184419
|
var d = igniteuiWebcomponentsCore.typeCast(igniteuiWebcomponentsCore.FastItemsSource.$, b);
|
|
184264
184420
|
if (d != null) {
|
|
184265
|
-
if (this.
|
|
184266
|
-
d.deregisterColumn(this.
|
|
184421
|
+
if (this.bb != null) {
|
|
184422
|
+
d.deregisterColumn(this.bb);
|
|
184267
184423
|
}
|
|
184268
|
-
this.
|
|
184424
|
+
this.bb = null;
|
|
184269
184425
|
}
|
|
184270
|
-
this.
|
|
184426
|
+
this.ep();
|
|
184271
184427
|
return;
|
|
184272
184428
|
}
|
|
184273
184429
|
if (b != null && typeof b === 'string') {
|
|
184274
184430
|
switch (a) {
|
|
184275
184431
|
case XamFunnelChart.$$p[8]:
|
|
184276
|
-
this.
|
|
184277
|
-
this.
|
|
184432
|
+
this.a3.deregisterColumn(this.bb);
|
|
184433
|
+
this.bb = null;
|
|
184278
184434
|
break;
|
|
184279
184435
|
}
|
|
184280
184436
|
}
|
|
184281
184437
|
if (c != null && igniteuiWebcomponentsCore.typeCast(igniteuiWebcomponentsCore.FastItemsSource.$, c) !== null) {
|
|
184282
|
-
if (this.
|
|
184283
|
-
this.
|
|
184438
|
+
if (this.cs != null) {
|
|
184439
|
+
this.bb = this.be(c, this.cs);
|
|
184284
184440
|
}
|
|
184285
184441
|
}
|
|
184286
184442
|
if (c != null && typeof c === 'string') {
|
|
184287
184443
|
switch (a) {
|
|
184288
184444
|
case XamFunnelChart.$$p[8]:
|
|
184289
|
-
this.
|
|
184445
|
+
this.bb = this.be(this.a3, this.cs);
|
|
184290
184446
|
break;
|
|
184291
184447
|
}
|
|
184292
184448
|
}
|
|
184293
|
-
this.
|
|
184449
|
+
this.ep();
|
|
184294
184450
|
};
|
|
184295
|
-
XamFunnelChart.prototype.
|
|
184451
|
+
XamFunnelChart.prototype.bm = function (a, b, c) {
|
|
184296
184452
|
if (a == XamFunnelChart.$$p[10] || a == XamFunnelChart.$$p[19]) {
|
|
184297
184453
|
var d_1 = igniteuiWebcomponentsCore.EnumUtil.getEnumValue(igniteuiWebcomponentsCore.Visibility_$type, b) == 0;
|
|
184298
184454
|
var e_7 = igniteuiWebcomponentsCore.EnumUtil.getEnumValue(igniteuiWebcomponentsCore.Visibility_$type, c) == 0;
|
|
184299
|
-
this.
|
|
184455
|
+
this.as.i(((function () {
|
|
184300
184456
|
var $ret = new PropertyChangedMessage();
|
|
184301
184457
|
$ret.g = a;
|
|
184302
184458
|
$ret.d = e_7;
|
|
@@ -184307,7 +184463,7 @@
|
|
|
184307
184463
|
}
|
|
184308
184464
|
return false;
|
|
184309
184465
|
};
|
|
184310
|
-
XamFunnelChart.prototype.
|
|
184466
|
+
XamFunnelChart.prototype.bl = function (a, b, c) {
|
|
184311
184467
|
if (a == XamFunnelChart.$$p[24]) {
|
|
184312
184468
|
var d = new PropertyChangedMessage();
|
|
184313
184469
|
d.g = a;
|
|
@@ -184317,24 +184473,24 @@
|
|
|
184317
184473
|
if (c != null) {
|
|
184318
184474
|
d.d = c;
|
|
184319
184475
|
}
|
|
184320
|
-
this.
|
|
184476
|
+
this.as.i(d);
|
|
184321
184477
|
return true;
|
|
184322
184478
|
}
|
|
184323
184479
|
return false;
|
|
184324
184480
|
};
|
|
184325
|
-
XamFunnelChart.prototype.
|
|
184481
|
+
XamFunnelChart.prototype.em = function (a) {
|
|
184326
184482
|
var b = a;
|
|
184327
184483
|
if (this.sliceClicked != null) {
|
|
184328
184484
|
var c = new FunnelSliceClickedEventArgs();
|
|
184329
184485
|
c.index = b.c;
|
|
184330
184486
|
c.bounds = b.f;
|
|
184331
|
-
if (this.
|
|
184332
|
-
c.item = this.
|
|
184487
|
+
if (this.a2.count > b.c && b.c >= 0) {
|
|
184488
|
+
c.item = this.a2.item(b.c);
|
|
184333
184489
|
}
|
|
184334
184490
|
this.sliceClicked(this, c);
|
|
184335
184491
|
}
|
|
184336
184492
|
};
|
|
184337
|
-
XamFunnelChart.prototype.
|
|
184493
|
+
XamFunnelChart.prototype.en = function (a) {
|
|
184338
184494
|
var b = a;
|
|
184339
184495
|
switch (b.c) {
|
|
184340
184496
|
case 1:
|
|
@@ -184343,8 +184499,8 @@
|
|
|
184343
184499
|
var c = new FunnelSliceEventArgs();
|
|
184344
184500
|
c.index = b.e;
|
|
184345
184501
|
c.bounds = b.i;
|
|
184346
|
-
if (this.
|
|
184347
|
-
c.item = this.
|
|
184502
|
+
if (this.a2.count > b.e && b.e >= 0) {
|
|
184503
|
+
c.item = this.a2.item(b.e);
|
|
184348
184504
|
}
|
|
184349
184505
|
this.sliceEnter(this, c);
|
|
184350
184506
|
}
|
|
@@ -184356,8 +184512,8 @@
|
|
|
184356
184512
|
var d = new FunnelSliceEventArgs();
|
|
184357
184513
|
d.index = b.e;
|
|
184358
184514
|
d.bounds = b.i;
|
|
184359
|
-
if (this.
|
|
184360
|
-
d.item = this.
|
|
184515
|
+
if (this.a2.count > b.e && b.e >= 0) {
|
|
184516
|
+
d.item = this.a2.item(b.e);
|
|
184361
184517
|
}
|
|
184362
184518
|
this.sliceLeave(this, d);
|
|
184363
184519
|
}
|
|
@@ -184370,8 +184526,8 @@
|
|
|
184370
184526
|
e.index = b.e;
|
|
184371
184527
|
e.bounds = b.i;
|
|
184372
184528
|
e.position = b.h;
|
|
184373
|
-
if (this.
|
|
184374
|
-
e.item = this.
|
|
184529
|
+
if (this.a2.count > b.e && b.e >= 0) {
|
|
184530
|
+
e.item = this.a2.item(b.e);
|
|
184375
184531
|
}
|
|
184376
184532
|
this.sliceHover(this, e);
|
|
184377
184533
|
}
|
|
@@ -184379,12 +184535,72 @@
|
|
|
184379
184535
|
}
|
|
184380
184536
|
}
|
|
184381
184537
|
};
|
|
184382
|
-
XamFunnelChart.prototype.
|
|
184538
|
+
XamFunnelChart.prototype.ej = function (a) {
|
|
184539
|
+
var b = a;
|
|
184540
|
+
var c = this.a2;
|
|
184541
|
+
var d = new igniteuiWebcomponentsCore.Dictionary$2(igniteuiWebcomponentsCore.Base.$, igniteuiWebcomponentsCore.Base.$, 0);
|
|
184542
|
+
var e = new igniteuiWebcomponentsCore.List$1(igniteuiWebcomponentsCore.Base.$, 0);
|
|
184543
|
+
var h = b.c;
|
|
184544
|
+
for (var g = 0; g < h.length; g++) {
|
|
184545
|
+
var f = h[g];
|
|
184546
|
+
if (f >= 0 && f < c.count) {
|
|
184547
|
+
var i = c.item(f);
|
|
184548
|
+
e.add1(i);
|
|
184549
|
+
if (!d.containsKey(i)) {
|
|
184550
|
+
d.addItem(i, i);
|
|
184551
|
+
}
|
|
184552
|
+
}
|
|
184553
|
+
}
|
|
184554
|
+
this.d4(this.ak.ae, this.br, e, d);
|
|
184383
184555
|
};
|
|
184384
|
-
XamFunnelChart.prototype.
|
|
184556
|
+
XamFunnelChart.prototype.ei = function (a, b) {
|
|
184557
|
+
var e_8, _a;
|
|
184558
|
+
var c = new igniteuiWebcomponentsCore.List$1(igniteuiWebcomponentsCore.Number_$type, 0);
|
|
184559
|
+
try {
|
|
184560
|
+
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.ak.ae)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
184561
|
+
var d = _c.value;
|
|
184562
|
+
var e = this.a2.indexOf(d);
|
|
184563
|
+
if (e >= 0 && !c.contains(e)) {
|
|
184564
|
+
c.add(e);
|
|
184565
|
+
}
|
|
184566
|
+
}
|
|
184567
|
+
}
|
|
184568
|
+
catch (e_8_1) {
|
|
184569
|
+
e_8 = { error: e_8_1 };
|
|
184570
|
+
}
|
|
184571
|
+
finally {
|
|
184572
|
+
try {
|
|
184573
|
+
if (_c && !_c.done && (_a = _b.return))
|
|
184574
|
+
_a.call(_b);
|
|
184575
|
+
}
|
|
184576
|
+
finally {
|
|
184577
|
+
if (e_8)
|
|
184578
|
+
throw e_8.error;
|
|
184579
|
+
}
|
|
184580
|
+
}
|
|
184581
|
+
var f = new UserSelectedItemsChangedMessage();
|
|
184582
|
+
f.c = c.toArray();
|
|
184583
|
+
this.as.i(f);
|
|
184584
|
+
if (b.action == 4 && b.newItems == null && b.oldItems == null) {
|
|
184585
|
+
return;
|
|
184586
|
+
}
|
|
184587
|
+
var g = new FunnelChartSelectedItemsCollection();
|
|
184588
|
+
if (b.oldItems != null) {
|
|
184589
|
+
for (var h = 0; h < b.oldItems.count; h++) {
|
|
184590
|
+
g.add1(b.oldItems.item(h));
|
|
184591
|
+
}
|
|
184592
|
+
}
|
|
184593
|
+
var i = new FunnelChartSelectedItemsCollection();
|
|
184594
|
+
if (b.newItems != null) {
|
|
184595
|
+
for (var j = 0; j < b.newItems.count; j++) {
|
|
184596
|
+
i.add1(b.newItems.item(j));
|
|
184597
|
+
}
|
|
184598
|
+
}
|
|
184599
|
+
var k = this.selectedItems;
|
|
184600
|
+
this.ef(this, new FunnelChartSelectedItemsChangedEventArgs(g, i, k));
|
|
184385
184601
|
};
|
|
184386
|
-
XamFunnelChart.prototype.
|
|
184387
|
-
var
|
|
184602
|
+
XamFunnelChart.prototype.d4 = function (a, b, c, d) {
|
|
184603
|
+
var e_9, _a, e_10, _b, e_11, _c;
|
|
184388
184604
|
var e = new igniteuiWebcomponentsCore.List$1(igniteuiWebcomponentsCore.Base.$, 0);
|
|
184389
184605
|
try {
|
|
184390
184606
|
for (var _d = tslib.__values(igniteuiWebcomponentsCore.fromEnum(a)), _e = _d.next(); !_e.done; _e = _d.next()) {
|
|
@@ -184394,8 +184610,8 @@
|
|
|
184394
184610
|
}
|
|
184395
184611
|
}
|
|
184396
184612
|
}
|
|
184397
|
-
catch (
|
|
184398
|
-
|
|
184613
|
+
catch (e_9_1) {
|
|
184614
|
+
e_9 = { error: e_9_1 };
|
|
184399
184615
|
}
|
|
184400
184616
|
finally {
|
|
184401
184617
|
try {
|
|
@@ -184403,8 +184619,8 @@
|
|
|
184403
184619
|
_a.call(_d);
|
|
184404
184620
|
}
|
|
184405
184621
|
finally {
|
|
184406
|
-
if (
|
|
184407
|
-
throw
|
|
184622
|
+
if (e_9)
|
|
184623
|
+
throw e_9.error;
|
|
184408
184624
|
}
|
|
184409
184625
|
}
|
|
184410
184626
|
try {
|
|
@@ -184414,8 +184630,8 @@
|
|
|
184414
184630
|
b.removeItem(g);
|
|
184415
184631
|
}
|
|
184416
184632
|
}
|
|
184417
|
-
catch (
|
|
184418
|
-
|
|
184633
|
+
catch (e_10_1) {
|
|
184634
|
+
e_10 = { error: e_10_1 };
|
|
184419
184635
|
}
|
|
184420
184636
|
finally {
|
|
184421
184637
|
try {
|
|
@@ -184423,8 +184639,8 @@
|
|
|
184423
184639
|
_b.call(_f);
|
|
184424
184640
|
}
|
|
184425
184641
|
finally {
|
|
184426
|
-
if (
|
|
184427
|
-
throw
|
|
184642
|
+
if (e_10)
|
|
184643
|
+
throw e_10.error;
|
|
184428
184644
|
}
|
|
184429
184645
|
}
|
|
184430
184646
|
try {
|
|
@@ -184436,8 +184652,8 @@
|
|
|
184436
184652
|
}
|
|
184437
184653
|
}
|
|
184438
184654
|
}
|
|
184439
|
-
catch (
|
|
184440
|
-
|
|
184655
|
+
catch (e_11_1) {
|
|
184656
|
+
e_11 = { error: e_11_1 };
|
|
184441
184657
|
}
|
|
184442
184658
|
finally {
|
|
184443
184659
|
try {
|
|
@@ -184445,76 +184661,76 @@
|
|
|
184445
184661
|
_c.call(_h);
|
|
184446
184662
|
}
|
|
184447
184663
|
finally {
|
|
184448
|
-
if (
|
|
184449
|
-
throw
|
|
184664
|
+
if (e_11)
|
|
184665
|
+
throw e_11.error;
|
|
184450
184666
|
}
|
|
184451
184667
|
}
|
|
184452
184668
|
};
|
|
184453
184669
|
XamFunnelChart.prototype.getItem = function (a) {
|
|
184454
|
-
return this.
|
|
184670
|
+
return this.a2.item(a);
|
|
184455
184671
|
};
|
|
184456
184672
|
Object.defineProperty(XamFunnelChart.prototype, "count", {
|
|
184457
184673
|
get: function () {
|
|
184458
|
-
return this.
|
|
184674
|
+
return this.a2 != null ? this.a2.count : 0;
|
|
184459
184675
|
},
|
|
184460
184676
|
enumerable: false,
|
|
184461
184677
|
configurable: true
|
|
184462
184678
|
});
|
|
184463
|
-
XamFunnelChart.prototype.
|
|
184464
|
-
this.
|
|
184679
|
+
XamFunnelChart.prototype.d0 = function () {
|
|
184680
|
+
this.a0.i();
|
|
184465
184681
|
};
|
|
184466
184682
|
XamFunnelChart.prototype.provideContainer = function (a) {
|
|
184467
|
-
var b = this.
|
|
184468
|
-
this.
|
|
184469
|
-
this.
|
|
184683
|
+
var b = this.cc;
|
|
184684
|
+
this.cc = a;
|
|
184685
|
+
this.ee("Container", b, this.cc);
|
|
184470
184686
|
};
|
|
184471
184687
|
XamFunnelChart.prototype.notifyResized = function () {
|
|
184472
|
-
this.
|
|
184473
|
-
this.
|
|
184474
|
-
};
|
|
184475
|
-
XamFunnelChart.prototype.ea = function (source_, a, b, c) {
|
|
184476
|
-
this.d6(source_, new igniteuiWebcomponentsCore.NotifyCollectionChangedEventArgs(2, 2, c, b, a));
|
|
184688
|
+
this.a0.g();
|
|
184689
|
+
this.as.i(new ContainerSizeChangedMessage());
|
|
184477
184690
|
};
|
|
184478
|
-
XamFunnelChart.prototype.
|
|
184479
|
-
this.
|
|
184691
|
+
XamFunnelChart.prototype.eb = function (source_, a, b, c) {
|
|
184692
|
+
this.d7(source_, new igniteuiWebcomponentsCore.NotifyCollectionChangedEventArgs(2, 2, c, b, a));
|
|
184480
184693
|
};
|
|
184481
|
-
XamFunnelChart.prototype.
|
|
184482
|
-
this.
|
|
184694
|
+
XamFunnelChart.prototype.d6 = function (source_) {
|
|
184695
|
+
this.d7(source_, new igniteuiWebcomponentsCore.NotifyCollectionChangedEventArgs(0, 4));
|
|
184483
184696
|
};
|
|
184484
184697
|
XamFunnelChart.prototype.d8 = function (source_, a, b) {
|
|
184485
|
-
this.
|
|
184698
|
+
this.d7(source_, new igniteuiWebcomponentsCore.NotifyCollectionChangedEventArgs(1, 0, b, a));
|
|
184699
|
+
};
|
|
184700
|
+
XamFunnelChart.prototype.d9 = function (source_, a, b) {
|
|
184701
|
+
this.d7(source_, new igniteuiWebcomponentsCore.NotifyCollectionChangedEventArgs(1, 1, b, a));
|
|
184486
184702
|
};
|
|
184487
|
-
XamFunnelChart.prototype.
|
|
184703
|
+
XamFunnelChart.prototype.d7 = function (s_, a) {
|
|
184488
184704
|
if (s_.dataView && s_.dataSource) {
|
|
184489
184705
|
s_ = s_.dataView();
|
|
184490
184706
|
}
|
|
184491
184707
|
;
|
|
184492
184708
|
if (s_ == this.itemsSource) {
|
|
184493
|
-
var b = this.
|
|
184709
|
+
var b = this.a2;
|
|
184494
184710
|
if (b != null) {
|
|
184495
184711
|
b.handleCollectionChanged(a);
|
|
184496
184712
|
}
|
|
184497
184713
|
}
|
|
184498
184714
|
};
|
|
184499
|
-
XamFunnelChart.prototype.
|
|
184500
|
-
var a = this.
|
|
184715
|
+
XamFunnelChart.prototype.a1 = function () {
|
|
184716
|
+
var a = this.a0;
|
|
184501
184717
|
return a == null ? null : a.c;
|
|
184502
184718
|
};
|
|
184503
|
-
XamFunnelChart.prototype.
|
|
184504
|
-
var a = this.
|
|
184719
|
+
XamFunnelChart.prototype.ay = function () {
|
|
184720
|
+
var a = this.a1();
|
|
184505
184721
|
return a == null ? null : a.ai;
|
|
184506
184722
|
};
|
|
184507
184723
|
Object.defineProperty(XamFunnelChart.prototype, "ag", {
|
|
184508
184724
|
get: function () {
|
|
184509
|
-
var a = this.
|
|
184725
|
+
var a = this.ay();
|
|
184510
184726
|
return a == null ? null : a.a();
|
|
184511
184727
|
},
|
|
184512
184728
|
set: function (a) {
|
|
184513
|
-
var b = this.
|
|
184729
|
+
var b = this.ay();
|
|
184514
184730
|
if (b == null) {
|
|
184515
184731
|
return;
|
|
184516
184732
|
}
|
|
184517
|
-
var c = this.
|
|
184733
|
+
var c = this.a1();
|
|
184518
184734
|
b.f();
|
|
184519
184735
|
var d = a == null ? 0 : a.length;
|
|
184520
184736
|
while (d-- > 0) {
|
|
@@ -184526,12 +184742,12 @@
|
|
|
184526
184742
|
enumerable: false,
|
|
184527
184743
|
configurable: true
|
|
184528
184744
|
});
|
|
184529
|
-
XamFunnelChart.prototype.
|
|
184530
|
-
var b = this.
|
|
184745
|
+
XamFunnelChart.prototype.eo = function (a) {
|
|
184746
|
+
var b = this.ay();
|
|
184531
184747
|
if (b == null) {
|
|
184532
184748
|
return;
|
|
184533
184749
|
}
|
|
184534
|
-
var c = this.
|
|
184750
|
+
var c = this.a1();
|
|
184535
184751
|
var d = c.ao.a.item(a);
|
|
184536
184752
|
if (d != null) {
|
|
184537
184753
|
c.ai.k(a, d);
|
|
@@ -184539,9 +184755,9 @@
|
|
|
184539
184755
|
c.dj();
|
|
184540
184756
|
}
|
|
184541
184757
|
};
|
|
184542
|
-
XamFunnelChart.prototype.
|
|
184758
|
+
XamFunnelChart.prototype.az = function () {
|
|
184543
184759
|
var a = new FunnelChartVisualData();
|
|
184544
|
-
var b = this.
|
|
184760
|
+
var b = this.a0.c.ag;
|
|
184545
184761
|
if (b != null) {
|
|
184546
184762
|
for (var c = 0; c < b.count; c++) {
|
|
184547
184763
|
var d = b._inner[c].d();
|
|
@@ -184549,14 +184765,14 @@
|
|
|
184549
184765
|
}
|
|
184550
184766
|
}
|
|
184551
184767
|
a.opacity = this._opacity;
|
|
184552
|
-
a.isInverted = this.
|
|
184553
|
-
a.selectedItems = this.
|
|
184768
|
+
a.isInverted = this.bn;
|
|
184769
|
+
a.selectedItems = this.selectedItems.ae;
|
|
184554
184770
|
a.name = this.name;
|
|
184555
|
-
a.viewport = new igniteuiWebcomponentsCore.RectData(0, 0, this.
|
|
184771
|
+
a.viewport = new igniteuiWebcomponentsCore.RectData(0, 0, this.a0.c.b8, this.a0.c.b7);
|
|
184556
184772
|
return a;
|
|
184557
184773
|
};
|
|
184558
|
-
XamFunnelChart.prototype.
|
|
184559
|
-
var a = this.
|
|
184774
|
+
XamFunnelChart.prototype.cm = function () {
|
|
184775
|
+
var a = this.az();
|
|
184560
184776
|
a.scaleByViewport();
|
|
184561
184777
|
return a.serialize();
|
|
184562
184778
|
};
|
|
@@ -184565,30 +184781,30 @@
|
|
|
184565
184781
|
};
|
|
184566
184782
|
XamFunnelChart.prototype.forSubItems = function (a) {
|
|
184567
184783
|
};
|
|
184568
|
-
Object.defineProperty(XamFunnelChart.prototype, "
|
|
184784
|
+
Object.defineProperty(XamFunnelChart.prototype, "b4", {
|
|
184569
184785
|
get: function () {
|
|
184570
|
-
return this.
|
|
184786
|
+
return this.bw;
|
|
184571
184787
|
},
|
|
184572
184788
|
set: function (a) {
|
|
184573
184789
|
if (igniteuiWebcomponentsCore.isNaN_(a) || a == 0) {
|
|
184574
184790
|
return;
|
|
184575
184791
|
}
|
|
184576
|
-
var b = this.
|
|
184577
|
-
this.
|
|
184578
|
-
this.
|
|
184792
|
+
var b = this.bw;
|
|
184793
|
+
this.bw = a;
|
|
184794
|
+
this.ee("PixelScalingRatio", b, this.bw);
|
|
184579
184795
|
},
|
|
184580
184796
|
enumerable: false,
|
|
184581
184797
|
configurable: true
|
|
184582
184798
|
});
|
|
184583
|
-
Object.defineProperty(XamFunnelChart.prototype, "
|
|
184799
|
+
Object.defineProperty(XamFunnelChart.prototype, "by", {
|
|
184584
184800
|
get: function () {
|
|
184585
|
-
return this.
|
|
184801
|
+
return this.bv;
|
|
184586
184802
|
},
|
|
184587
184803
|
set: function (a) {
|
|
184588
|
-
var b = this.
|
|
184589
|
-
this.
|
|
184590
|
-
if (this.
|
|
184591
|
-
this.
|
|
184804
|
+
var b = this.bv;
|
|
184805
|
+
this.bv = a;
|
|
184806
|
+
if (this.bv != b) {
|
|
184807
|
+
this.ee("ActualPixelScalingRatio", b, this.bv);
|
|
184592
184808
|
}
|
|
184593
184809
|
},
|
|
184594
184810
|
enumerable: false,
|
|
@@ -184636,37 +184852,37 @@
|
|
|
184636
184852
|
enumerable: false,
|
|
184637
184853
|
configurable: true
|
|
184638
184854
|
});
|
|
184639
|
-
Object.defineProperty(XamFunnelChart.prototype, "
|
|
184855
|
+
Object.defineProperty(XamFunnelChart.prototype, "fp", {
|
|
184640
184856
|
get: function () {
|
|
184641
|
-
return this.
|
|
184857
|
+
return this.fn;
|
|
184642
184858
|
},
|
|
184643
184859
|
set: function (a) {
|
|
184644
|
-
var b = this.
|
|
184860
|
+
var b = this.fp;
|
|
184645
184861
|
if (a != b) {
|
|
184646
|
-
this.
|
|
184647
|
-
this.
|
|
184862
|
+
this.fn = a;
|
|
184863
|
+
this.ee("OuterLabelTextColor", b, this.fp);
|
|
184648
184864
|
}
|
|
184649
184865
|
},
|
|
184650
184866
|
enumerable: false,
|
|
184651
184867
|
configurable: true
|
|
184652
184868
|
});
|
|
184653
|
-
Object.defineProperty(XamFunnelChart.prototype, "
|
|
184869
|
+
Object.defineProperty(XamFunnelChart.prototype, "fq", {
|
|
184654
184870
|
get: function () {
|
|
184655
|
-
return this.
|
|
184871
|
+
return this.fo;
|
|
184656
184872
|
},
|
|
184657
184873
|
set: function (a) {
|
|
184658
|
-
var b = this.
|
|
184874
|
+
var b = this.fq;
|
|
184659
184875
|
if (a != b) {
|
|
184660
|
-
this.
|
|
184661
|
-
this.
|
|
184876
|
+
this.fo = a;
|
|
184877
|
+
this.ee("LabelTextColor", b, this.fq);
|
|
184662
184878
|
}
|
|
184663
184879
|
},
|
|
184664
184880
|
enumerable: false,
|
|
184665
184881
|
configurable: true
|
|
184666
184882
|
});
|
|
184667
184883
|
XamFunnelChart.$t = igniteuiWebcomponentsCore.markType(XamFunnelChart, 'XamFunnelChart', igniteuiWebcomponentsCore.Control.$, [IItemProvider_$type, igniteuiWebcomponentsCore.ILegendOwner_$type, igniteuiWebcomponentsCore.ILegendTemplateProvider_$type, igniteuiWebcomponentsCore.ILegendSeries_$type]);
|
|
184668
|
-
XamFunnelChart.
|
|
184669
|
-
XamFunnelChart.$$p = igniteuiWebcomponentsCore.markDep(igniteuiWebcomponentsCore.DependencyProperty, igniteuiWebcomponentsCore.PropertyMetadata, XamFunnelChart, '
|
|
184884
|
+
XamFunnelChart.ez = igniteuiWebcomponentsCore.DependencyProperty.i("HighlightValueDisplayMode", igniteuiWebcomponentsCore.HighlightedValueDisplayMode_$type, XamFunnelChart.$, new igniteuiWebcomponentsCore.PropertyMetadata(2, igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.HighlightedValueDisplayMode_$type, 0), function (a, b) { return a.ee("HighlightValueDisplayMode", b.oldValue, b.newValue); }));
|
|
184885
|
+
XamFunnelChart.$$p = igniteuiWebcomponentsCore.markDep(igniteuiWebcomponentsCore.DependencyProperty, igniteuiWebcomponentsCore.PropertyMetadata, XamFunnelChart, 'ee', ['AllowSliceSelection:bh:er', [0, false], 'BottomEdgeWidth:bz:es', [1, 0.35], 'Brushes:ah:et', [igniteuiWebcomponentsCore.BrushCollection.$, null], 'FastItemsSource:a2:eu', [igniteuiWebcomponentsCore.FastItemsSource.$], 'FunnelSliceDisplay:an:ev', [FunnelSliceDisplay_$type, igniteuiWebcomponentsCore.enumGetBox(FunnelSliceDisplay_$type, 0)], 'HighlightFastItemsSource:a3:ey', [igniteuiWebcomponentsCore.FastItemsSource.$], 'HighlightValueOpacity:b1:e0', [1, 0.5], 'HighlightedItemsSource::ew', [igniteuiWebcomponentsCore.IEnumerable_$type, null], 'HighlightedValueMemberPath:cs:ex', [2, null], 'InnerLabelMemberPath:cz:e1', [2, null], 'InnerLabelVisibility:fv:e2', [igniteuiWebcomponentsCore.Visibility_$type, igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.Visibility_$type, 0)], 'IsInverted:bn:e3', [0, false], 'ItemsSource::e4', [igniteuiWebcomponentsCore.IEnumerable_$type, null], 'LegendItemBadgeTemplate::e5', [igniteuiWebcomponentsCore.DataTemplate.$, null], 'LegendItemTemplate::e6', [igniteuiWebcomponentsCore.DataTemplate.$, null], 'Legend::e7', [igniteuiWebcomponentsCore.IChartLegend_$type, null], 'LowerBezierControlPoint:fr:e8', [igniteuiWebcomponentsCore.Point_$type, { $type: igniteuiWebcomponentsCore.Point_$type, x: 0.5, y: 1 }], 'OuterLabelAlignment:ax:e9', [OuterLabelAlignment_$type, igniteuiWebcomponentsCore.enumGetBox(OuterLabelAlignment_$type, 0)], 'OuterLabelMemberPath:da:fa', [2, null], 'OuterLabelVisibility:fw:fb', [igniteuiWebcomponentsCore.Visibility_$type, igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.Visibility_$type, 1)], 'OutlineThickness:b2:fd', [1, -1], 'Outlines:ai:fc', [igniteuiWebcomponentsCore.BrushCollection.$, null], 'SelectedSliceStyle:ft:fe', [igniteuiWebcomponentsCore.Style.$, null], 'ToolTip:cd:ff', [4, null], 'TransitionDuration:cb:fg', [1, 0], 'UnselectedSliceStyle:fu:fh', [igniteuiWebcomponentsCore.Style.$, null], 'UpperBezierControlPoint:fs:fi', [igniteuiWebcomponentsCore.Point_$type, { $type: igniteuiWebcomponentsCore.Point_$type, x: 0.5, y: 0 }], 'UseBezierCurve:bo:fj', [0, false], 'UseOuterLabelsForLegend:bp:fk', [0, false], 'UseUnselectedStyle:bq:fl', [0, false], 'ValueMemberPath:dw:fm', [2, null]]);
|
|
184670
184886
|
return XamFunnelChart;
|
|
184671
184887
|
}(igniteuiWebcomponentsCore.Control));
|
|
184672
184888
|
/**
|
|
@@ -184691,7 +184907,7 @@
|
|
|
184691
184907
|
a.i = c;
|
|
184692
184908
|
_this.b = d;
|
|
184693
184909
|
_this.d = a;
|
|
184694
|
-
b.
|
|
184910
|
+
b.aw = c;
|
|
184695
184911
|
_this.a = b;
|
|
184696
184912
|
c.c("Model", _this.a);
|
|
184697
184913
|
return _this;
|
|
@@ -184906,6 +185122,177 @@
|
|
|
184906
185122
|
return IgcFunnelSliceEventArgs;
|
|
184907
185123
|
}());
|
|
184908
185124
|
|
|
185125
|
+
var IgcFunnelChartSelectedItemsCollection = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
185126
|
+
tslib.__extends(IgcFunnelChartSelectedItemsCollection, _super);
|
|
185127
|
+
function IgcFunnelChartSelectedItemsCollection(list) {
|
|
185128
|
+
var _this = _super.call(this) || this;
|
|
185129
|
+
if (list) {
|
|
185130
|
+
for (var i = 0; i < list.length; i++) {
|
|
185131
|
+
_this.add(list[i]);
|
|
185132
|
+
}
|
|
185133
|
+
}
|
|
185134
|
+
return _this;
|
|
185135
|
+
}
|
|
185136
|
+
IgcFunnelChartSelectedItemsCollection.prototype._createInnerColl = function () {
|
|
185137
|
+
var coll = new igniteuiWebcomponentsCore.SyncableObservableCollection$2(igniteuiWebcomponentsCore.Base.$type, igniteuiWebcomponentsCore.Base.$type, 0);
|
|
185138
|
+
coll.compare = function (ext, int) {
|
|
185139
|
+
var comp = ext;
|
|
185140
|
+
if (comp.equals) {
|
|
185141
|
+
return comp.equals(int);
|
|
185142
|
+
}
|
|
185143
|
+
return comp === int;
|
|
185144
|
+
};
|
|
185145
|
+
coll.createTo = function (ext) {
|
|
185146
|
+
return ext;
|
|
185147
|
+
};
|
|
185148
|
+
coll.createFrom = function (int) {
|
|
185149
|
+
return int;
|
|
185150
|
+
};
|
|
185151
|
+
return coll;
|
|
185152
|
+
};
|
|
185153
|
+
return IgcFunnelChartSelectedItemsCollection;
|
|
185154
|
+
}(igniteuiWebcomponentsCore.IgCollection));
|
|
185155
|
+
|
|
185156
|
+
/**
|
|
185157
|
+
* Provides data for the SelectedItemsChanged event.
|
|
185158
|
+
*/
|
|
185159
|
+
var IgcFunnelChartSelectedItemsChangedEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
185160
|
+
function IgcFunnelChartSelectedItemsChangedEventArgs() {
|
|
185161
|
+
this._oldItems = null;
|
|
185162
|
+
this._newItems = null;
|
|
185163
|
+
this._currentItems = null;
|
|
185164
|
+
}
|
|
185165
|
+
Object.defineProperty(IgcFunnelChartSelectedItemsChangedEventArgs.prototype, "i", {
|
|
185166
|
+
/**
|
|
185167
|
+
* @hidden
|
|
185168
|
+
*/
|
|
185169
|
+
get: function () {
|
|
185170
|
+
return this._implementation;
|
|
185171
|
+
},
|
|
185172
|
+
enumerable: false,
|
|
185173
|
+
configurable: true
|
|
185174
|
+
});
|
|
185175
|
+
IgcFunnelChartSelectedItemsChangedEventArgs.prototype.onImplementationCreated = function () {
|
|
185176
|
+
};
|
|
185177
|
+
IgcFunnelChartSelectedItemsChangedEventArgs.prototype._provideImplementation = function (i) {
|
|
185178
|
+
this._implementation = i;
|
|
185179
|
+
this._implementation.externalObject = this;
|
|
185180
|
+
this.onImplementationCreated();
|
|
185181
|
+
if (this._initializeAdapters) {
|
|
185182
|
+
this._initializeAdapters();
|
|
185183
|
+
}
|
|
185184
|
+
};
|
|
185185
|
+
Object.defineProperty(IgcFunnelChartSelectedItemsChangedEventArgs.prototype, "oldItems", {
|
|
185186
|
+
/**
|
|
185187
|
+
* A list of the previously selected items.
|
|
185188
|
+
*/
|
|
185189
|
+
get: function () {
|
|
185190
|
+
if (this._oldItems === null) {
|
|
185191
|
+
var coll = new IgcFunnelChartSelectedItemsCollection();
|
|
185192
|
+
var innerColl = this.i.oldItems;
|
|
185193
|
+
if (!innerColl) {
|
|
185194
|
+
innerColl = new FunnelChartSelectedItemsCollection();
|
|
185195
|
+
}
|
|
185196
|
+
this._oldItems = coll._fromInner(innerColl);
|
|
185197
|
+
this.i.oldItems = innerColl;
|
|
185198
|
+
}
|
|
185199
|
+
return this._oldItems;
|
|
185200
|
+
},
|
|
185201
|
+
set: function (v) {
|
|
185202
|
+
if (this._oldItems !== null) {
|
|
185203
|
+
this._oldItems._setSyncTarget(null);
|
|
185204
|
+
this._oldItems = null;
|
|
185205
|
+
}
|
|
185206
|
+
var coll = new IgcFunnelChartSelectedItemsCollection();
|
|
185207
|
+
this._oldItems = coll._fromOuter(v);
|
|
185208
|
+
var syncColl = new igniteuiWebcomponentsCore.SyncableObservableCollection$1(igniteuiWebcomponentsCore.Base.$type);
|
|
185209
|
+
var innerColl = this.i.oldItems;
|
|
185210
|
+
if (!innerColl) {
|
|
185211
|
+
innerColl = new FunnelChartSelectedItemsCollection();
|
|
185212
|
+
}
|
|
185213
|
+
syncColl._inner = innerColl;
|
|
185214
|
+
syncColl.clear();
|
|
185215
|
+
this._oldItems._setSyncTarget(syncColl);
|
|
185216
|
+
this.i.oldItems = innerColl;
|
|
185217
|
+
},
|
|
185218
|
+
enumerable: false,
|
|
185219
|
+
configurable: true
|
|
185220
|
+
});
|
|
185221
|
+
Object.defineProperty(IgcFunnelChartSelectedItemsChangedEventArgs.prototype, "newItems", {
|
|
185222
|
+
/**
|
|
185223
|
+
* A list of the items being selected.
|
|
185224
|
+
*/
|
|
185225
|
+
get: function () {
|
|
185226
|
+
if (this._newItems === null) {
|
|
185227
|
+
var coll = new IgcFunnelChartSelectedItemsCollection();
|
|
185228
|
+
var innerColl = this.i.newItems;
|
|
185229
|
+
if (!innerColl) {
|
|
185230
|
+
innerColl = new FunnelChartSelectedItemsCollection();
|
|
185231
|
+
}
|
|
185232
|
+
this._newItems = coll._fromInner(innerColl);
|
|
185233
|
+
this.i.newItems = innerColl;
|
|
185234
|
+
}
|
|
185235
|
+
return this._newItems;
|
|
185236
|
+
},
|
|
185237
|
+
set: function (v) {
|
|
185238
|
+
if (this._newItems !== null) {
|
|
185239
|
+
this._newItems._setSyncTarget(null);
|
|
185240
|
+
this._newItems = null;
|
|
185241
|
+
}
|
|
185242
|
+
var coll = new IgcFunnelChartSelectedItemsCollection();
|
|
185243
|
+
this._newItems = coll._fromOuter(v);
|
|
185244
|
+
var syncColl = new igniteuiWebcomponentsCore.SyncableObservableCollection$1(igniteuiWebcomponentsCore.Base.$type);
|
|
185245
|
+
var innerColl = this.i.newItems;
|
|
185246
|
+
if (!innerColl) {
|
|
185247
|
+
innerColl = new FunnelChartSelectedItemsCollection();
|
|
185248
|
+
}
|
|
185249
|
+
syncColl._inner = innerColl;
|
|
185250
|
+
syncColl.clear();
|
|
185251
|
+
this._newItems._setSyncTarget(syncColl);
|
|
185252
|
+
this.i.newItems = innerColl;
|
|
185253
|
+
},
|
|
185254
|
+
enumerable: false,
|
|
185255
|
+
configurable: true
|
|
185256
|
+
});
|
|
185257
|
+
Object.defineProperty(IgcFunnelChartSelectedItemsChangedEventArgs.prototype, "currentItems", {
|
|
185258
|
+
/**
|
|
185259
|
+
* A list of the current items selected.
|
|
185260
|
+
*/
|
|
185261
|
+
get: function () {
|
|
185262
|
+
if (this._currentItems === null) {
|
|
185263
|
+
var coll = new IgcFunnelChartSelectedItemsCollection();
|
|
185264
|
+
var innerColl = this.i.currentItems;
|
|
185265
|
+
if (!innerColl) {
|
|
185266
|
+
innerColl = new FunnelChartSelectedItemsCollection();
|
|
185267
|
+
}
|
|
185268
|
+
this._currentItems = coll._fromInner(innerColl);
|
|
185269
|
+
this.i.currentItems = innerColl;
|
|
185270
|
+
}
|
|
185271
|
+
return this._currentItems;
|
|
185272
|
+
},
|
|
185273
|
+
set: function (v) {
|
|
185274
|
+
if (this._currentItems !== null) {
|
|
185275
|
+
this._currentItems._setSyncTarget(null);
|
|
185276
|
+
this._currentItems = null;
|
|
185277
|
+
}
|
|
185278
|
+
var coll = new IgcFunnelChartSelectedItemsCollection();
|
|
185279
|
+
this._currentItems = coll._fromOuter(v);
|
|
185280
|
+
var syncColl = new igniteuiWebcomponentsCore.SyncableObservableCollection$1(igniteuiWebcomponentsCore.Base.$type);
|
|
185281
|
+
var innerColl = this.i.currentItems;
|
|
185282
|
+
if (!innerColl) {
|
|
185283
|
+
innerColl = new FunnelChartSelectedItemsCollection();
|
|
185284
|
+
}
|
|
185285
|
+
syncColl._inner = innerColl;
|
|
185286
|
+
syncColl.clear();
|
|
185287
|
+
this._currentItems._setSyncTarget(syncColl);
|
|
185288
|
+
this.i.currentItems = innerColl;
|
|
185289
|
+
},
|
|
185290
|
+
enumerable: false,
|
|
185291
|
+
configurable: true
|
|
185292
|
+
});
|
|
185293
|
+
return IgcFunnelChartSelectedItemsChangedEventArgs;
|
|
185294
|
+
}());
|
|
185295
|
+
|
|
184909
185296
|
var IgcFunnelChartComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
184910
185297
|
tslib.__extends(IgcFunnelChartComponent, _super);
|
|
184911
185298
|
function IgcFunnelChartComponent() {
|
|
@@ -184916,11 +185303,14 @@
|
|
|
184916
185303
|
_this._attached = false;
|
|
184917
185304
|
_this._queuedSetAttributes = [];
|
|
184918
185305
|
_this._updatingFromAttribute = false;
|
|
185306
|
+
_this._selectedItems = null;
|
|
184919
185307
|
_this.__p = null;
|
|
184920
185308
|
_this._hasUserValues = new Set();
|
|
184921
185309
|
_this._stylingContainer = null;
|
|
184922
185310
|
_this._stylingParent = null;
|
|
184923
185311
|
_this._inStyling = false;
|
|
185312
|
+
_this._selectedItemsChanged = null;
|
|
185313
|
+
_this._selectedItemsChanged_wrapped = null;
|
|
184924
185314
|
_this._sliceClicked = null;
|
|
184925
185315
|
_this._sliceClicked_wrapped = null;
|
|
184926
185316
|
_this._sliceEnter = null;
|
|
@@ -185146,10 +185536,10 @@
|
|
|
185146
185536
|
* Gets or sets the value member path for the funnel chart.
|
|
185147
185537
|
*/
|
|
185148
185538
|
get: function () {
|
|
185149
|
-
return this.i.
|
|
185539
|
+
return this.i.dw;
|
|
185150
185540
|
},
|
|
185151
185541
|
set: function (v) {
|
|
185152
|
-
this.i.
|
|
185542
|
+
this.i.dw = v;
|
|
185153
185543
|
},
|
|
185154
185544
|
enumerable: false,
|
|
185155
185545
|
configurable: true
|
|
@@ -185159,10 +185549,10 @@
|
|
|
185159
185549
|
* Gets or sets the highlighted value member path for the funnel chart.
|
|
185160
185550
|
*/
|
|
185161
185551
|
get: function () {
|
|
185162
|
-
return this.i.
|
|
185552
|
+
return this.i.cs;
|
|
185163
185553
|
},
|
|
185164
185554
|
set: function (v) {
|
|
185165
|
-
this.i.
|
|
185555
|
+
this.i.cs = v;
|
|
185166
185556
|
},
|
|
185167
185557
|
enumerable: false,
|
|
185168
185558
|
configurable: true
|
|
@@ -185172,11 +185562,11 @@
|
|
|
185172
185562
|
* Gets the actual opacity of the primary needle while highlighting
|
|
185173
185563
|
*/
|
|
185174
185564
|
get: function () {
|
|
185175
|
-
return this.i.
|
|
185565
|
+
return this.i.bx;
|
|
185176
185566
|
},
|
|
185177
185567
|
set: function (v) {
|
|
185178
|
-
this.i.
|
|
185179
|
-
this._a("actualHighlightValueOpacity", this.i.
|
|
185568
|
+
this.i.bx = +v;
|
|
185569
|
+
this._a("actualHighlightValueOpacity", this.i.bx);
|
|
185180
185570
|
},
|
|
185181
185571
|
enumerable: false,
|
|
185182
185572
|
configurable: true
|
|
@@ -185186,11 +185576,11 @@
|
|
|
185186
185576
|
* Gets or sets the opacity while highlighting
|
|
185187
185577
|
*/
|
|
185188
185578
|
get: function () {
|
|
185189
|
-
return this.i.
|
|
185579
|
+
return this.i.b1;
|
|
185190
185580
|
},
|
|
185191
185581
|
set: function (v) {
|
|
185192
|
-
this.i.
|
|
185193
|
-
this._a("highlightValueOpacity", this.i.
|
|
185582
|
+
this.i.b1 = +v;
|
|
185583
|
+
this._a("highlightValueOpacity", this.i.b1);
|
|
185194
185584
|
},
|
|
185195
185585
|
enumerable: false,
|
|
185196
185586
|
configurable: true
|
|
@@ -185200,11 +185590,11 @@
|
|
|
185200
185590
|
* Gets whether and how to display the highlighted value.
|
|
185201
185591
|
*/
|
|
185202
185592
|
get: function () {
|
|
185203
|
-
return this.i.
|
|
185593
|
+
return this.i.a5;
|
|
185204
185594
|
},
|
|
185205
185595
|
set: function (v) {
|
|
185206
|
-
this.i.
|
|
185207
|
-
this._a("actualHighlightValueDisplayMode", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.HighlightedValueDisplayMode_$type, this.i.
|
|
185596
|
+
this.i.a5 = igniteuiWebcomponentsCore.ensureEnum(igniteuiWebcomponentsCore.HighlightedValueDisplayMode_$type, v);
|
|
185597
|
+
this._a("actualHighlightValueDisplayMode", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.HighlightedValueDisplayMode_$type, this.i.a5));
|
|
185208
185598
|
},
|
|
185209
185599
|
enumerable: false,
|
|
185210
185600
|
configurable: true
|
|
@@ -185214,11 +185604,11 @@
|
|
|
185214
185604
|
* Gets or sets whether and how to display the highlighted value.
|
|
185215
185605
|
*/
|
|
185216
185606
|
get: function () {
|
|
185217
|
-
return this.i.
|
|
185607
|
+
return this.i.a6;
|
|
185218
185608
|
},
|
|
185219
185609
|
set: function (v) {
|
|
185220
|
-
this.i.
|
|
185221
|
-
this._a("highlightValueDisplayMode", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.HighlightedValueDisplayMode_$type, this.i.
|
|
185610
|
+
this.i.a6 = igniteuiWebcomponentsCore.ensureEnum(igniteuiWebcomponentsCore.HighlightedValueDisplayMode_$type, v);
|
|
185611
|
+
this._a("highlightValueDisplayMode", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.HighlightedValueDisplayMode_$type, this.i.a6));
|
|
185222
185612
|
},
|
|
185223
185613
|
enumerable: false,
|
|
185224
185614
|
configurable: true
|
|
@@ -185256,11 +185646,11 @@
|
|
|
185256
185646
|
* Gets or sets the percentage (from near 0 to 1) of space the bottom edge of the funnel should take.
|
|
185257
185647
|
*/
|
|
185258
185648
|
get: function () {
|
|
185259
|
-
return this.i.
|
|
185649
|
+
return this.i.bz;
|
|
185260
185650
|
},
|
|
185261
185651
|
set: function (v) {
|
|
185262
|
-
this.i.
|
|
185263
|
-
this._a("bottomEdgeWidth", this.i.
|
|
185652
|
+
this.i.bz = +v;
|
|
185653
|
+
this._a("bottomEdgeWidth", this.i.bz);
|
|
185264
185654
|
},
|
|
185265
185655
|
enumerable: false,
|
|
185266
185656
|
configurable: true
|
|
@@ -185270,10 +185660,10 @@
|
|
|
185270
185660
|
* Gets or sets the InnerLabel mapping property for the current series object.
|
|
185271
185661
|
*/
|
|
185272
185662
|
get: function () {
|
|
185273
|
-
return this.i.
|
|
185663
|
+
return this.i.cz;
|
|
185274
185664
|
},
|
|
185275
185665
|
set: function (v) {
|
|
185276
|
-
this.i.
|
|
185666
|
+
this.i.cz = v;
|
|
185277
185667
|
},
|
|
185278
185668
|
enumerable: false,
|
|
185279
185669
|
configurable: true
|
|
@@ -185283,10 +185673,10 @@
|
|
|
185283
185673
|
* Gets or sets the OuterLabel mapping property for the current series object.
|
|
185284
185674
|
*/
|
|
185285
185675
|
get: function () {
|
|
185286
|
-
return this.i.
|
|
185676
|
+
return this.i.da;
|
|
185287
185677
|
},
|
|
185288
185678
|
set: function (v) {
|
|
185289
|
-
this.i.
|
|
185679
|
+
this.i.da = v;
|
|
185290
185680
|
},
|
|
185291
185681
|
enumerable: false,
|
|
185292
185682
|
configurable: true
|
|
@@ -185296,11 +185686,11 @@
|
|
|
185296
185686
|
* Gets or sets whether the inner labels are visible.
|
|
185297
185687
|
*/
|
|
185298
185688
|
get: function () {
|
|
185299
|
-
return this.i.
|
|
185689
|
+
return this.i.fv;
|
|
185300
185690
|
},
|
|
185301
185691
|
set: function (v) {
|
|
185302
|
-
this.i.
|
|
185303
|
-
this._a("innerLabelVisibility", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.Visibility_$type, this.i.
|
|
185692
|
+
this.i.fv = igniteuiWebcomponentsCore.ensureEnum(igniteuiWebcomponentsCore.Visibility_$type, v);
|
|
185693
|
+
this._a("innerLabelVisibility", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.Visibility_$type, this.i.fv));
|
|
185304
185694
|
},
|
|
185305
185695
|
enumerable: false,
|
|
185306
185696
|
configurable: true
|
|
@@ -185310,11 +185700,11 @@
|
|
|
185310
185700
|
* Gets or sets whether the outer labels are visible.
|
|
185311
185701
|
*/
|
|
185312
185702
|
get: function () {
|
|
185313
|
-
return this.i.
|
|
185703
|
+
return this.i.fw;
|
|
185314
185704
|
},
|
|
185315
185705
|
set: function (v) {
|
|
185316
|
-
this.i.
|
|
185317
|
-
this._a("outerLabelVisibility", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.Visibility_$type, this.i.
|
|
185706
|
+
this.i.fw = igniteuiWebcomponentsCore.ensureEnum(igniteuiWebcomponentsCore.Visibility_$type, v);
|
|
185707
|
+
this._a("outerLabelVisibility", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.Visibility_$type, this.i.fw));
|
|
185318
185708
|
},
|
|
185319
185709
|
enumerable: false,
|
|
185320
185710
|
configurable: true
|
|
@@ -185324,11 +185714,11 @@
|
|
|
185324
185714
|
* Gets or sets which side of the chart the outer labels should appear.
|
|
185325
185715
|
*/
|
|
185326
185716
|
get: function () {
|
|
185327
|
-
return this.i.
|
|
185717
|
+
return this.i.ax;
|
|
185328
185718
|
},
|
|
185329
185719
|
set: function (v) {
|
|
185330
|
-
this.i.
|
|
185331
|
-
this._a("outerLabelAlignment", igniteuiWebcomponentsCore.enumToString(OuterLabelAlignment_$type, this.i.
|
|
185720
|
+
this.i.ax = igniteuiWebcomponentsCore.ensureEnum(OuterLabelAlignment_$type, v);
|
|
185721
|
+
this._a("outerLabelAlignment", igniteuiWebcomponentsCore.enumToString(OuterLabelAlignment_$type, this.i.ax));
|
|
185332
185722
|
},
|
|
185333
185723
|
enumerable: false,
|
|
185334
185724
|
configurable: true
|
|
@@ -185338,11 +185728,11 @@
|
|
|
185338
185728
|
* Gets or sets how the heights of the funnel slices should be configured.
|
|
185339
185729
|
*/
|
|
185340
185730
|
get: function () {
|
|
185341
|
-
return this.i.
|
|
185731
|
+
return this.i.an;
|
|
185342
185732
|
},
|
|
185343
185733
|
set: function (v) {
|
|
185344
|
-
this.i.
|
|
185345
|
-
this._a("funnelSliceDisplay", igniteuiWebcomponentsCore.enumToString(FunnelSliceDisplay_$type, this.i.
|
|
185734
|
+
this.i.an = igniteuiWebcomponentsCore.ensureEnum(FunnelSliceDisplay_$type, v);
|
|
185735
|
+
this._a("funnelSliceDisplay", igniteuiWebcomponentsCore.enumToString(FunnelSliceDisplay_$type, this.i.an));
|
|
185346
185736
|
},
|
|
185347
185737
|
enumerable: false,
|
|
185348
185738
|
configurable: true
|
|
@@ -185352,10 +185742,10 @@
|
|
|
185352
185742
|
* Gets or sets the formatter function for inner labels. Function should return string and it takes 3 parameters: 1st-value of item to format, 2nd-index of item within data, 3rd-reference to the funnel chart.
|
|
185353
185743
|
*/
|
|
185354
185744
|
get: function () {
|
|
185355
|
-
return this.i.
|
|
185745
|
+
return this.i.b9;
|
|
185356
185746
|
},
|
|
185357
185747
|
set: function (v) {
|
|
185358
|
-
this.i.
|
|
185748
|
+
this.i.b9 = v;
|
|
185359
185749
|
},
|
|
185360
185750
|
enumerable: false,
|
|
185361
185751
|
configurable: true
|
|
@@ -185365,10 +185755,10 @@
|
|
|
185365
185755
|
* Gets or sets the formatter function for outer labels. Function should return string and it takes 3 parameters: 1st-value of item to format, 2nd-index of item within data, 3rd-reference to the funnel chart.
|
|
185366
185756
|
*/
|
|
185367
185757
|
get: function () {
|
|
185368
|
-
return this.i.
|
|
185758
|
+
return this.i.ca;
|
|
185369
185759
|
},
|
|
185370
185760
|
set: function (v) {
|
|
185371
|
-
this.i.
|
|
185761
|
+
this.i.ca = v;
|
|
185372
185762
|
},
|
|
185373
185763
|
enumerable: false,
|
|
185374
185764
|
configurable: true
|
|
@@ -185378,11 +185768,11 @@
|
|
|
185378
185768
|
* Gets or sets how long the animations should take to run.
|
|
185379
185769
|
*/
|
|
185380
185770
|
get: function () {
|
|
185381
|
-
return this.i.
|
|
185771
|
+
return this.i.cb;
|
|
185382
185772
|
},
|
|
185383
185773
|
set: function (v) {
|
|
185384
|
-
this.i.
|
|
185385
|
-
this._a("transitionDuration", this.i.
|
|
185774
|
+
this.i.cb = +v;
|
|
185775
|
+
this._a("transitionDuration", this.i.cb);
|
|
185386
185776
|
},
|
|
185387
185777
|
enumerable: false,
|
|
185388
185778
|
configurable: true
|
|
@@ -185392,11 +185782,11 @@
|
|
|
185392
185782
|
* Gets or sets if the funnel should be rendered inverted.
|
|
185393
185783
|
*/
|
|
185394
185784
|
get: function () {
|
|
185395
|
-
return this.i.
|
|
185785
|
+
return this.i.bn;
|
|
185396
185786
|
},
|
|
185397
185787
|
set: function (v) {
|
|
185398
|
-
this.i.
|
|
185399
|
-
this._a("isInverted", this.i.
|
|
185788
|
+
this.i.bn = igniteuiWebcomponentsCore.ensureBool(v);
|
|
185789
|
+
this._a("isInverted", this.i.bn);
|
|
185400
185790
|
},
|
|
185401
185791
|
enumerable: false,
|
|
185402
185792
|
configurable: true
|
|
@@ -185406,11 +185796,11 @@
|
|
|
185406
185796
|
* Gets or sets whether to use a Bezier curve to define the funnel.
|
|
185407
185797
|
*/
|
|
185408
185798
|
get: function () {
|
|
185409
|
-
return this.i.
|
|
185799
|
+
return this.i.bo;
|
|
185410
185800
|
},
|
|
185411
185801
|
set: function (v) {
|
|
185412
|
-
this.i.
|
|
185413
|
-
this._a("useBezierCurve", this.i.
|
|
185802
|
+
this.i.bo = igniteuiWebcomponentsCore.ensureBool(v);
|
|
185803
|
+
this._a("useBezierCurve", this.i.bo);
|
|
185414
185804
|
},
|
|
185415
185805
|
enumerable: false,
|
|
185416
185806
|
configurable: true
|
|
@@ -185420,11 +185810,11 @@
|
|
|
185420
185810
|
* Gets or sets whether to allow slices to be selected.
|
|
185421
185811
|
*/
|
|
185422
185812
|
get: function () {
|
|
185423
|
-
return this.i.
|
|
185813
|
+
return this.i.bh;
|
|
185424
185814
|
},
|
|
185425
185815
|
set: function (v) {
|
|
185426
|
-
this.i.
|
|
185427
|
-
this._a("allowSliceSelection", this.i.
|
|
185816
|
+
this.i.bh = igniteuiWebcomponentsCore.ensureBool(v);
|
|
185817
|
+
this._a("allowSliceSelection", this.i.bh);
|
|
185428
185818
|
},
|
|
185429
185819
|
enumerable: false,
|
|
185430
185820
|
configurable: true
|
|
@@ -185434,11 +185824,11 @@
|
|
|
185434
185824
|
* Gets or sets whether to use the unselected style on unselected slices.
|
|
185435
185825
|
*/
|
|
185436
185826
|
get: function () {
|
|
185437
|
-
return this.i.
|
|
185827
|
+
return this.i.bq;
|
|
185438
185828
|
},
|
|
185439
185829
|
set: function (v) {
|
|
185440
|
-
this.i.
|
|
185441
|
-
this._a("useUnselectedStyle", this.i.
|
|
185830
|
+
this.i.bq = igniteuiWebcomponentsCore.ensureBool(v);
|
|
185831
|
+
this._a("useUnselectedStyle", this.i.bq);
|
|
185442
185832
|
},
|
|
185443
185833
|
enumerable: false,
|
|
185444
185834
|
configurable: true
|
|
@@ -185448,11 +185838,11 @@
|
|
|
185448
185838
|
* Gets or sets the fill brush.
|
|
185449
185839
|
*/
|
|
185450
185840
|
get: function () {
|
|
185451
|
-
return this.i.
|
|
185841
|
+
return this.i.ft ? this.i.ft.fill : null;
|
|
185452
185842
|
},
|
|
185453
185843
|
set: function (v) {
|
|
185454
185844
|
this.ensureSelectedSliceStyle();
|
|
185455
|
-
this.i.
|
|
185845
|
+
this.i.ft.fill = v;
|
|
185456
185846
|
},
|
|
185457
185847
|
enumerable: false,
|
|
185458
185848
|
configurable: true
|
|
@@ -185462,11 +185852,11 @@
|
|
|
185462
185852
|
* Gets or sets the stroke brush.
|
|
185463
185853
|
*/
|
|
185464
185854
|
get: function () {
|
|
185465
|
-
return this.i.
|
|
185855
|
+
return this.i.ft ? this.i.ft.stroke : null;
|
|
185466
185856
|
},
|
|
185467
185857
|
set: function (v) {
|
|
185468
185858
|
this.ensureSelectedSliceStyle();
|
|
185469
|
-
this.i.
|
|
185859
|
+
this.i.ft.stroke = v;
|
|
185470
185860
|
},
|
|
185471
185861
|
enumerable: false,
|
|
185472
185862
|
configurable: true
|
|
@@ -185476,12 +185866,12 @@
|
|
|
185476
185866
|
* Gets or sets the stroke thickness.
|
|
185477
185867
|
*/
|
|
185478
185868
|
get: function () {
|
|
185479
|
-
return this.i.
|
|
185869
|
+
return this.i.ft ? this.i.ft.strokeThickness : NaN;
|
|
185480
185870
|
},
|
|
185481
185871
|
set: function (v) {
|
|
185482
185872
|
this.ensureSelectedSliceStyle();
|
|
185483
|
-
this.i.
|
|
185484
|
-
this._a("selectedSliceStrokeThickness", this.i.
|
|
185873
|
+
this.i.ft.strokeThickness = +v;
|
|
185874
|
+
this._a("selectedSliceStrokeThickness", this.i.ft.strokeThickness);
|
|
185485
185875
|
},
|
|
185486
185876
|
enumerable: false,
|
|
185487
185877
|
configurable: true
|
|
@@ -185491,32 +185881,32 @@
|
|
|
185491
185881
|
* Gets or sets the opacity.
|
|
185492
185882
|
*/
|
|
185493
185883
|
get: function () {
|
|
185494
|
-
return this.i.
|
|
185884
|
+
return this.i.ft ? this.i.ft.opacity : NaN;
|
|
185495
185885
|
},
|
|
185496
185886
|
set: function (v) {
|
|
185497
185887
|
this.ensureSelectedSliceStyle();
|
|
185498
|
-
this.i.
|
|
185499
|
-
this._a("selectedSliceOpacity", this.i.
|
|
185888
|
+
this.i.ft.opacity = +v;
|
|
185889
|
+
this._a("selectedSliceOpacity", this.i.ft.opacity);
|
|
185500
185890
|
},
|
|
185501
185891
|
enumerable: false,
|
|
185502
185892
|
configurable: true
|
|
185503
185893
|
});
|
|
185504
185894
|
IgcFunnelChartComponent.prototype.ensureSelectedSliceStyle = function () {
|
|
185505
|
-
if (this.i.
|
|
185895
|
+
if (this.i.ft) {
|
|
185506
185896
|
return;
|
|
185507
185897
|
}
|
|
185508
|
-
this.i.
|
|
185898
|
+
this.i.ft = new igniteuiWebcomponentsCore.Style();
|
|
185509
185899
|
};
|
|
185510
185900
|
Object.defineProperty(IgcFunnelChartComponent.prototype, "unselectedSliceFill", {
|
|
185511
185901
|
/**
|
|
185512
185902
|
* Gets or sets the fill brush.
|
|
185513
185903
|
*/
|
|
185514
185904
|
get: function () {
|
|
185515
|
-
return this.i.
|
|
185905
|
+
return this.i.fu ? this.i.fu.fill : null;
|
|
185516
185906
|
},
|
|
185517
185907
|
set: function (v) {
|
|
185518
185908
|
this.ensureUnselectedSliceStyle();
|
|
185519
|
-
this.i.
|
|
185909
|
+
this.i.fu.fill = v;
|
|
185520
185910
|
},
|
|
185521
185911
|
enumerable: false,
|
|
185522
185912
|
configurable: true
|
|
@@ -185526,11 +185916,11 @@
|
|
|
185526
185916
|
* Gets or sets the stroke brush.
|
|
185527
185917
|
*/
|
|
185528
185918
|
get: function () {
|
|
185529
|
-
return this.i.
|
|
185919
|
+
return this.i.fu ? this.i.fu.stroke : null;
|
|
185530
185920
|
},
|
|
185531
185921
|
set: function (v) {
|
|
185532
185922
|
this.ensureUnselectedSliceStyle();
|
|
185533
|
-
this.i.
|
|
185923
|
+
this.i.fu.stroke = v;
|
|
185534
185924
|
},
|
|
185535
185925
|
enumerable: false,
|
|
185536
185926
|
configurable: true
|
|
@@ -185540,12 +185930,12 @@
|
|
|
185540
185930
|
* Gets or sets the stroke thickness.
|
|
185541
185931
|
*/
|
|
185542
185932
|
get: function () {
|
|
185543
|
-
return this.i.
|
|
185933
|
+
return this.i.fu ? this.i.fu.strokeThickness : NaN;
|
|
185544
185934
|
},
|
|
185545
185935
|
set: function (v) {
|
|
185546
185936
|
this.ensureUnselectedSliceStyle();
|
|
185547
|
-
this.i.
|
|
185548
|
-
this._a("unselectedSliceStrokeThickness", this.i.
|
|
185937
|
+
this.i.fu.strokeThickness = +v;
|
|
185938
|
+
this._a("unselectedSliceStrokeThickness", this.i.fu.strokeThickness);
|
|
185549
185939
|
},
|
|
185550
185940
|
enumerable: false,
|
|
185551
185941
|
configurable: true
|
|
@@ -185555,22 +185945,56 @@
|
|
|
185555
185945
|
* Gets or sets the opacity.
|
|
185556
185946
|
*/
|
|
185557
185947
|
get: function () {
|
|
185558
|
-
return this.i.
|
|
185948
|
+
return this.i.fu ? this.i.fu.opacity : NaN;
|
|
185559
185949
|
},
|
|
185560
185950
|
set: function (v) {
|
|
185561
185951
|
this.ensureUnselectedSliceStyle();
|
|
185562
|
-
this.i.
|
|
185563
|
-
this._a("unselectedSliceOpacity", this.i.
|
|
185952
|
+
this.i.fu.opacity = +v;
|
|
185953
|
+
this._a("unselectedSliceOpacity", this.i.fu.opacity);
|
|
185564
185954
|
},
|
|
185565
185955
|
enumerable: false,
|
|
185566
185956
|
configurable: true
|
|
185567
185957
|
});
|
|
185568
185958
|
IgcFunnelChartComponent.prototype.ensureUnselectedSliceStyle = function () {
|
|
185569
|
-
if (this.i.
|
|
185959
|
+
if (this.i.fu) {
|
|
185570
185960
|
return;
|
|
185571
185961
|
}
|
|
185572
|
-
this.i.
|
|
185962
|
+
this.i.fu = new igniteuiWebcomponentsCore.Style();
|
|
185573
185963
|
};
|
|
185964
|
+
Object.defineProperty(IgcFunnelChartComponent.prototype, "selectedItems", {
|
|
185965
|
+
/**
|
|
185966
|
+
* Represents the current selected items.
|
|
185967
|
+
*/
|
|
185968
|
+
get: function () {
|
|
185969
|
+
if (this._selectedItems === null) {
|
|
185970
|
+
var coll = new IgcFunnelChartSelectedItemsCollection();
|
|
185971
|
+
var innerColl = this.i.selectedItems;
|
|
185972
|
+
if (!innerColl) {
|
|
185973
|
+
innerColl = new FunnelChartSelectedItemsCollection();
|
|
185974
|
+
}
|
|
185975
|
+
this._selectedItems = coll._fromInner(innerColl);
|
|
185976
|
+
}
|
|
185977
|
+
return this._selectedItems;
|
|
185978
|
+
},
|
|
185979
|
+
set: function (v) {
|
|
185980
|
+
if (this._selectedItems !== null) {
|
|
185981
|
+
this._selectedItems._setSyncTarget(null);
|
|
185982
|
+
this._selectedItems = null;
|
|
185983
|
+
}
|
|
185984
|
+
var coll = new IgcFunnelChartSelectedItemsCollection();
|
|
185985
|
+
this._selectedItems = coll._fromOuter(v);
|
|
185986
|
+
var syncColl = new igniteuiWebcomponentsCore.SyncableObservableCollection$1(igniteuiWebcomponentsCore.Base.$type);
|
|
185987
|
+
var innerColl = this.i.selectedItems;
|
|
185988
|
+
if (!innerColl) {
|
|
185989
|
+
innerColl = new FunnelChartSelectedItemsCollection();
|
|
185990
|
+
}
|
|
185991
|
+
syncColl._inner = innerColl;
|
|
185992
|
+
syncColl.clear();
|
|
185993
|
+
this._selectedItems._setSyncTarget(syncColl);
|
|
185994
|
+
},
|
|
185995
|
+
enumerable: false,
|
|
185996
|
+
configurable: true
|
|
185997
|
+
});
|
|
185574
185998
|
Object.defineProperty(IgcFunnelChartComponent.prototype, "legendItemBadgeTemplate", {
|
|
185575
185999
|
/**
|
|
185576
186000
|
* Gets or sets the LegendItemBadgeTemplate to use for the legend items.
|
|
@@ -185589,11 +186013,11 @@
|
|
|
185589
186013
|
* Gets or sets whether to use the outer labels to identify the legend items.
|
|
185590
186014
|
*/
|
|
185591
186015
|
get: function () {
|
|
185592
|
-
return this.i.
|
|
186016
|
+
return this.i.bp;
|
|
185593
186017
|
},
|
|
185594
186018
|
set: function (v) {
|
|
185595
|
-
this.i.
|
|
185596
|
-
this._a("useOuterLabelsForLegend", this.i.
|
|
186019
|
+
this.i.bp = igniteuiWebcomponentsCore.ensureBool(v);
|
|
186020
|
+
this._a("useOuterLabelsForLegend", this.i.bp);
|
|
185597
186021
|
},
|
|
185598
186022
|
enumerable: false,
|
|
185599
186023
|
configurable: true
|
|
@@ -185603,10 +186027,10 @@
|
|
|
185603
186027
|
* Gets or sets the text style for inner labels
|
|
185604
186028
|
*/
|
|
185605
186029
|
get: function () {
|
|
185606
|
-
return this.i.
|
|
186030
|
+
return this.i.dl;
|
|
185607
186031
|
},
|
|
185608
186032
|
set: function (v) {
|
|
185609
|
-
this.i.
|
|
186033
|
+
this.i.dl = v;
|
|
185610
186034
|
},
|
|
185611
186035
|
enumerable: false,
|
|
185612
186036
|
configurable: true
|
|
@@ -185616,10 +186040,10 @@
|
|
|
185616
186040
|
* Gets or sets the text style for outer labels
|
|
185617
186041
|
*/
|
|
185618
186042
|
get: function () {
|
|
185619
|
-
return this.i.
|
|
186043
|
+
return this.i.dd;
|
|
185620
186044
|
},
|
|
185621
186045
|
set: function (v) {
|
|
185622
|
-
this.i.
|
|
186046
|
+
this.i.dd = v;
|
|
185623
186047
|
},
|
|
185624
186048
|
enumerable: false,
|
|
185625
186049
|
configurable: true
|
|
@@ -185629,11 +186053,11 @@
|
|
|
185629
186053
|
* Gets or sets the thickness of outline around slices.
|
|
185630
186054
|
*/
|
|
185631
186055
|
get: function () {
|
|
185632
|
-
return this.i.
|
|
186056
|
+
return this.i.b2;
|
|
185633
186057
|
},
|
|
185634
186058
|
set: function (v) {
|
|
185635
|
-
this.i.
|
|
185636
|
-
this._a("outlineThickness", this.i.
|
|
186059
|
+
this.i.b2 = +v;
|
|
186060
|
+
this._a("outlineThickness", this.i.b2);
|
|
185637
186061
|
},
|
|
185638
186062
|
enumerable: false,
|
|
185639
186063
|
configurable: true
|
|
@@ -185645,11 +186069,11 @@
|
|
|
185645
186069
|
* to appear blurry.
|
|
185646
186070
|
*/
|
|
185647
186071
|
get: function () {
|
|
185648
|
-
return this.i.
|
|
186072
|
+
return this.i.b4;
|
|
185649
186073
|
},
|
|
185650
186074
|
set: function (v) {
|
|
185651
|
-
this.i.
|
|
185652
|
-
this._a("pixelScalingRatio", this.i.
|
|
186075
|
+
this.i.b4 = +v;
|
|
186076
|
+
this._a("pixelScalingRatio", this.i.b4);
|
|
185653
186077
|
},
|
|
185654
186078
|
enumerable: false,
|
|
185655
186079
|
configurable: true
|
|
@@ -185659,11 +186083,11 @@
|
|
|
185659
186083
|
* Gets or sets the brush used for the outer labels.
|
|
185660
186084
|
*/
|
|
185661
186085
|
get: function () {
|
|
185662
|
-
return igniteuiWebcomponentsCore.brushToString(this.i.
|
|
186086
|
+
return igniteuiWebcomponentsCore.brushToString(this.i.fp);
|
|
185663
186087
|
},
|
|
185664
186088
|
set: function (v) {
|
|
185665
|
-
this.i.
|
|
185666
|
-
this._a("outerLabelTextColor", igniteuiWebcomponentsCore.brushToString(this.i.
|
|
186089
|
+
this.i.fp = igniteuiWebcomponentsCore.stringToBrush(v);
|
|
186090
|
+
this._a("outerLabelTextColor", igniteuiWebcomponentsCore.brushToString(this.i.fp));
|
|
185667
186091
|
},
|
|
185668
186092
|
enumerable: false,
|
|
185669
186093
|
configurable: true
|
|
@@ -185673,11 +186097,11 @@
|
|
|
185673
186097
|
* Gets or sets the brush used for the inner labels.
|
|
185674
186098
|
*/
|
|
185675
186099
|
get: function () {
|
|
185676
|
-
return igniteuiWebcomponentsCore.brushToString(this.i.
|
|
186100
|
+
return igniteuiWebcomponentsCore.brushToString(this.i.fq);
|
|
185677
186101
|
},
|
|
185678
186102
|
set: function (v) {
|
|
185679
|
-
this.i.
|
|
185680
|
-
this._a("textColor", igniteuiWebcomponentsCore.brushToString(this.i.
|
|
186103
|
+
this.i.fq = igniteuiWebcomponentsCore.stringToBrush(v);
|
|
186104
|
+
this._a("textColor", igniteuiWebcomponentsCore.brushToString(this.i.fq));
|
|
185681
186105
|
},
|
|
185682
186106
|
enumerable: false,
|
|
185683
186107
|
configurable: true
|
|
@@ -185754,7 +186178,7 @@
|
|
|
185754
186178
|
|
|
185755
186179
|
*/
|
|
185756
186180
|
IgcFunnelChartComponent.prototype.flush = function () {
|
|
185757
|
-
this.i.
|
|
186181
|
+
this.i.d0();
|
|
185758
186182
|
};
|
|
185759
186183
|
/**
|
|
185760
186184
|
* Provides container for funnel chart
|
|
@@ -185771,7 +186195,7 @@
|
|
|
185771
186195
|
this.i.notifyResized();
|
|
185772
186196
|
};
|
|
185773
186197
|
IgcFunnelChartComponent.prototype.notifySetItem = function (source_, index, oldItem, newItem) {
|
|
185774
|
-
this.i.
|
|
186198
|
+
this.i.eb(source_, index, oldItem, newItem);
|
|
185775
186199
|
};
|
|
185776
186200
|
/**
|
|
185777
186201
|
* Manually notifies the chart's data source that the data it has bound to has been cleared and needs to be re-examined.
|
|
@@ -185779,29 +186203,60 @@
|
|
|
185779
186203
|
|
|
185780
186204
|
*/
|
|
185781
186205
|
IgcFunnelChartComponent.prototype.notifyClearItems = function (source_) {
|
|
185782
|
-
this.i.
|
|
186206
|
+
this.i.d6(source_);
|
|
185783
186207
|
};
|
|
185784
186208
|
IgcFunnelChartComponent.prototype.notifyInsertItem = function (source_, index, newItem) {
|
|
185785
|
-
this.i.
|
|
186209
|
+
this.i.d8(source_, index, newItem);
|
|
185786
186210
|
};
|
|
185787
186211
|
IgcFunnelChartComponent.prototype.notifyRemoveItem = function (source_, index, oldItem) {
|
|
185788
|
-
this.i.
|
|
186212
|
+
this.i.d9(source_, index, oldItem);
|
|
185789
186213
|
};
|
|
185790
186214
|
/**
|
|
185791
186215
|
* Toggle selection of item at index.
|
|
185792
186216
|
|
|
185793
186217
|
*/
|
|
185794
186218
|
IgcFunnelChartComponent.prototype.toggleSelection = function (index) {
|
|
185795
|
-
this.i.
|
|
186219
|
+
this.i.eo(index);
|
|
185796
186220
|
};
|
|
185797
186221
|
/**
|
|
185798
186222
|
* Exports and serializes the chart visuals.
|
|
185799
186223
|
|
|
185800
186224
|
*/
|
|
185801
186225
|
IgcFunnelChartComponent.prototype.exportSerializedVisualData = function () {
|
|
185802
|
-
var iv = this.i.
|
|
186226
|
+
var iv = this.i.cm();
|
|
185803
186227
|
return (iv);
|
|
185804
186228
|
};
|
|
186229
|
+
Object.defineProperty(IgcFunnelChartComponent.prototype, "selectedItemsChanged", {
|
|
186230
|
+
/**
|
|
186231
|
+
* Raised when the SelectedItems collection has changed.
|
|
186232
|
+
*/
|
|
186233
|
+
get: function () {
|
|
186234
|
+
return this._selectedItemsChanged;
|
|
186235
|
+
},
|
|
186236
|
+
set: function (ev) {
|
|
186237
|
+
var _this = this;
|
|
186238
|
+
if (this._selectedItemsChanged_wrapped !== null) {
|
|
186239
|
+
this.i.selectedItemsChanged = igniteuiWebcomponentsCore.delegateRemove(this.i.selectedItemsChanged, this._selectedItemsChanged_wrapped);
|
|
186240
|
+
this._selectedItemsChanged_wrapped = null;
|
|
186241
|
+
this._selectedItemsChanged = null;
|
|
186242
|
+
}
|
|
186243
|
+
this._selectedItemsChanged = ev;
|
|
186244
|
+
this._selectedItemsChanged_wrapped = function (o, e) {
|
|
186245
|
+
var outerArgs = new IgcFunnelChartSelectedItemsChangedEventArgs();
|
|
186246
|
+
outerArgs._provideImplementation(e);
|
|
186247
|
+
if (_this.beforeSelectedItemsChanged) {
|
|
186248
|
+
_this.beforeSelectedItemsChanged(_this, outerArgs);
|
|
186249
|
+
}
|
|
186250
|
+
if (_this._selectedItemsChanged) {
|
|
186251
|
+
_this._selectedItemsChanged(_this, outerArgs);
|
|
186252
|
+
}
|
|
186253
|
+
};
|
|
186254
|
+
this.i.selectedItemsChanged = igniteuiWebcomponentsCore.delegateCombine(this.i.selectedItemsChanged, this._selectedItemsChanged_wrapped);
|
|
186255
|
+
;
|
|
186256
|
+
},
|
|
186257
|
+
enumerable: false,
|
|
186258
|
+
configurable: true
|
|
186259
|
+
});
|
|
185805
186260
|
Object.defineProperty(IgcFunnelChartComponent.prototype, "sliceClicked", {
|
|
185806
186261
|
/**
|
|
185807
186262
|
* Event which is raised when a slice is clicked.
|
|
@@ -191732,6 +192187,51 @@
|
|
|
191732
192187
|
enumerable: false,
|
|
191733
192188
|
configurable: true
|
|
191734
192189
|
});
|
|
192190
|
+
Object.defineProperty(IgcSeriesViewerComponent.prototype, "previewPathStroke", {
|
|
192191
|
+
/**
|
|
192192
|
+
* Gets or sets the brush used as the border for the current SeriesViewer object's preview path.
|
|
192193
|
+
* Null is treated as auto.
|
|
192194
|
+
*/
|
|
192195
|
+
get: function () {
|
|
192196
|
+
return igniteuiWebcomponentsCore.brushToString(this.i.vn);
|
|
192197
|
+
},
|
|
192198
|
+
set: function (v) {
|
|
192199
|
+
this.i.vn = igniteuiWebcomponentsCore.stringToBrush(v);
|
|
192200
|
+
this._a("previewPathStroke", igniteuiWebcomponentsCore.brushToString(this.i.vn));
|
|
192201
|
+
},
|
|
192202
|
+
enumerable: false,
|
|
192203
|
+
configurable: true
|
|
192204
|
+
});
|
|
192205
|
+
Object.defineProperty(IgcSeriesViewerComponent.prototype, "previewPathFill", {
|
|
192206
|
+
/**
|
|
192207
|
+
* Gets or sets the brush used as the fill for the current SeriesViewer object's preview path.
|
|
192208
|
+
* Null is treated as auto.
|
|
192209
|
+
*/
|
|
192210
|
+
get: function () {
|
|
192211
|
+
return igniteuiWebcomponentsCore.brushToString(this.i.vm);
|
|
192212
|
+
},
|
|
192213
|
+
set: function (v) {
|
|
192214
|
+
this.i.vm = igniteuiWebcomponentsCore.stringToBrush(v);
|
|
192215
|
+
this._a("previewPathFill", igniteuiWebcomponentsCore.brushToString(this.i.vm));
|
|
192216
|
+
},
|
|
192217
|
+
enumerable: false,
|
|
192218
|
+
configurable: true
|
|
192219
|
+
});
|
|
192220
|
+
Object.defineProperty(IgcSeriesViewerComponent.prototype, "previewPathOpacity", {
|
|
192221
|
+
/**
|
|
192222
|
+
* Gets or sets the opacity used as for the fill for the current SeriesViewer object's preview path.
|
|
192223
|
+
* Null is treated as auto.
|
|
192224
|
+
*/
|
|
192225
|
+
get: function () {
|
|
192226
|
+
return this.i.h4;
|
|
192227
|
+
},
|
|
192228
|
+
set: function (v) {
|
|
192229
|
+
this.i.h4 = +v;
|
|
192230
|
+
this._a("previewPathOpacity", this.i.h4);
|
|
192231
|
+
},
|
|
192232
|
+
enumerable: false,
|
|
192233
|
+
configurable: true
|
|
192234
|
+
});
|
|
191735
192235
|
Object.defineProperty(IgcSeriesViewerComponent.prototype, "isDetached", {
|
|
191736
192236
|
get: function () {
|
|
191737
192237
|
return this.i.isDetached;
|
|
@@ -258060,6 +258560,7 @@
|
|
|
258060
258560
|
exports.AxisRenderMessage_Spark = AxisRenderMessage_Spark;
|
|
258061
258561
|
exports.AxisRendererBase = AxisRendererBase;
|
|
258062
258562
|
exports.AxisRenderingParametersBase = AxisRenderingParametersBase;
|
|
258563
|
+
exports.AxisStrokeSettings = AxisStrokeSettings;
|
|
258063
258564
|
exports.AxisTitlePosition = AxisTitlePosition;
|
|
258064
258565
|
exports.AxisTitlePosition_$type = AxisTitlePosition_$type;
|
|
258065
258566
|
exports.AxisView = AxisView;
|
|
@@ -258408,6 +258909,8 @@
|
|
|
258408
258909
|
exports.FrameRenderCompleteMessage = FrameRenderCompleteMessage;
|
|
258409
258910
|
exports.FullStochasticOscillatorIndicator = FullStochasticOscillatorIndicator;
|
|
258410
258911
|
exports.FullStochasticOscillatorIndicatorStrategy = FullStochasticOscillatorIndicatorStrategy;
|
|
258912
|
+
exports.FunnelChartSelectedItemsChangedEventArgs = FunnelChartSelectedItemsChangedEventArgs;
|
|
258913
|
+
exports.FunnelChartSelectedItemsCollection = FunnelChartSelectedItemsCollection;
|
|
258411
258914
|
exports.FunnelChartVisualData = FunnelChartVisualData;
|
|
258412
258915
|
exports.FunnelDataContext = FunnelDataContext;
|
|
258413
258916
|
exports.FunnelFrame = FunnelFrame;
|
|
@@ -258720,6 +259223,8 @@
|
|
|
258720
259223
|
exports.IgcFunnelChartComponent = IgcFunnelChartComponent;
|
|
258721
259224
|
exports.IgcFunnelChartCoreModule = IgcFunnelChartCoreModule;
|
|
258722
259225
|
exports.IgcFunnelChartModule = IgcFunnelChartModule;
|
|
259226
|
+
exports.IgcFunnelChartSelectedItemsChangedEventArgs = IgcFunnelChartSelectedItemsChangedEventArgs;
|
|
259227
|
+
exports.IgcFunnelChartSelectedItemsCollection = IgcFunnelChartSelectedItemsCollection;
|
|
258723
259228
|
exports.IgcFunnelDataContext = IgcFunnelDataContext;
|
|
258724
259229
|
exports.IgcFunnelSliceClickedEventArgs = IgcFunnelSliceClickedEventArgs;
|
|
258725
259230
|
exports.IgcFunnelSliceDataContext = IgcFunnelSliceDataContext;
|