igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
1,088 lines (1,087 loc) • 34.6 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
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.
*/
import { __extends } from "tslib";
import { RadialBaseChart } from "./RadialBaseChart";
import { ProportionalCategoryAngleAxis } from "./ProportionalCategoryAngleAxis";
import { NumericRadiusAxis } from "./NumericRadiusAxis";
import { Base, typeCast, runOn, delegateCombine, enumGetBox, markType } from "igniteui-webcomponents-core";
import { PieChartSweepDirection_$type } from "./PieChartSweepDirection";
import { CalloutCollisionMode_$type } from "igniteui-webcomponents-core";
import { LegendEmptyValuesMode_$type } from "igniteui-webcomponents-core";
import { OthersCategoryType_$type } from "igniteui-webcomponents-core";
import { AxisRangeBufferMode_$type } from "./AxisRangeBufferMode";
import { RadialLabelMode_$type } from "igniteui-webcomponents-core";
import { CollisionAvoidanceType_$type } from "./CollisionAvoidanceType";
import { RadialBase } from "./RadialBase";
import { List$1 } from "igniteui-webcomponents-core";
import { RadialPieSeries } from "./RadialPieSeries";
import { AnchoredRadialSeries } from "./AnchoredRadialSeries";
import { AxisLabelSettings } from "./AxisLabelSettings";
import { OthersCategoryContext } from "./OthersCategoryContext";
import { isNaN_ } from "igniteui-webcomponents-core";
/**
* @hidden
*/
var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(DataPieBaseChart, _super);
function DataPieBaseChart() {
var _this = _super.call(this) || this;
_this.ajl = null;
_this.aho = null;
_this.ajh = null;
_this.ahm = null;
_this.ajj = null;
_this.ahn = null;
_this.ajg = null;
_this.ahl = null;
_this.ais = 0;
_this.ah6 = 0;
_this.ahv = 6;
_this.ak8 = null;
_this.ak7 = null;
_this.ajm = null;
_this.ajf = null;
_this.ahz = 0;
_this.ah4 = 1;
_this.ait = 3;
_this.aji = null;
_this.aje = null;
_this.aii = true;
_this.aht = 0;
_this.aiq = 0;
_this.air = 0;
_this.aiw = 0;
_this.aij = false;
_this.ajc = 10;
_this.aiy = NaN;
_this.aix = NaN;
_this.aiz = 0;
_this.aiu = NaN;
_this.aiv = NaN;
_this.ajk = " - ";
_this.aib = 0;
_this.aia = 0;
_this.aif = true;
_this.aih = true;
_this.ahx = 0;
_this.aig = false;
return _this;
}
DataPieBaseChart.prototype.hg = function () {
return true;
};
DataPieBaseChart.prototype.ak3 = function (a) {
this.ak4(function (b, c) { return a(b); });
};
DataPieBaseChart.prototype.ak4 = function (a) {
if (this.dataChart == null) {
return;
}
for (var b = 0; b < this.dataChart.series.count; b++) {
var c = this.dataChart.series._inner[b];
if (c.fu) {
a(c, b);
}
}
};
DataPieBaseChart.prototype.ak1 = function (a) {
this.ak2(function (b, c) { return a(b); });
};
DataPieBaseChart.prototype.ak2 = function (a) {
if (this.dataChart == null) {
return;
}
for (var b = 0; b < this.dataChart.series.count; b++) {
var c = this.dataChart.series._inner[b];
if (c.fu) {
a(c, b);
}
}
};
DataPieBaseChart.prototype.xa = function () {
var a = this.bf.dataSeries != null ? this.bf.dataSeries.count : 0;
_super.prototype.xa.call(this);
if (this.ajt != null) {
var b = this.ajt;
this.angleAxis.f2 = b;
}
else {
this.angleAxis.f2 = this.ac6 == null ? RadialBaseChart.aen(this.angleAxis, this.bf.dataSeries) : this.ac6;
}
this.angleAxis.itemsSource = this.dataChart != null && this.dataChart.series.count > 0 ? this.dataChart.series._inner[0].itemsSource : null;
if (this.aky != null) {
this.angleAxis.or = this.aky;
}
else {
this.angleAxis.or = (this.dataChart != null && this.dataChart.series.count > 0 && typeCast(RadialPieSeries.$, this.dataChart.series._inner[0]) !== null) ? this.dataChart.series._inner[0].ac0 : null;
}
};
DataPieBaseChart.prototype.c2 = function (a, b) {
if (this.c5 == null || this.c5.count == 0) {
return 13;
}
var c = _super.prototype.c2.call(this, a, b);
if (c == 1) {
return 13;
}
return c;
};
DataPieBaseChart.prototype.w8 = function (a) {
};
DataPieBaseChart.prototype.hc = function (a) {
if (!_super.prototype.hc.call(this, a)) {
return false;
}
return true;
};
DataPieBaseChart.prototype.xb = function () {
this.valueAxis.lo = this.aip;
this.valueAxis.mm = this.ajd;
};
Object.defineProperty(DataPieBaseChart.prototype, "angleAxis", {
get: function () {
return this.ah8;
},
set: function (a) {
var b = this.angleAxis;
if (a != b) {
this.ah8 = a;
this.wd("AngleAxis", b, this.angleAxis);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "valueAxis", {
get: function () {
return this.ah1;
},
set: function (a) {
var b = this.valueAxis;
if (a != b) {
this.ah1 = a;
this.wd("ValueAxis", b, this.valueAxis);
}
},
enumerable: false,
configurable: true
});
DataPieBaseChart.prototype.get_aim = function () {
return false;
};
Object.defineProperty(DataPieBaseChart.prototype, "aim", {
get: function () {
return this.get_aim();
},
enumerable: false,
configurable: true
});
DataPieBaseChart.prototype.dc = function (a, b) {
var c = null;
if (b == 35) {
c = this.aie(a, b);
}
if (a.index > 0) {
if (!this.aim) {
if (c != null) {
c.o4();
}
return null;
}
}
return c;
};
DataPieBaseChart.prototype.vn = function (a, b) {
_super.prototype.vn.call(this, a, b);
if (this.g0(a) && this.ce.isCalloutLayer(a)) {
if (this.ala != null) {
this.ce.setCalloutLightColor(a, this.ala);
}
if (this.ak9 != null) {
this.ce.setCalloutDarkColor(a, this.ak9);
}
var c = this.ah;
if (this.ahw != 0) {
c = this.ahw;
}
this.ce.setCollisionMode(a, c);
}
};
DataPieBaseChart.prototype.aie = function (a, b) {
var c = null;
if (b == 35) {
c = this.df(35);
}
else {
c = this.df(35);
}
if (this.aky != null) {
c.ac0 = this.aky;
}
else {
c.ac0 = a.getMemberPathFor(0);
}
if (this.ajw != null) {
c.ad3 = this.ajw;
}
c.adt = this.ah0;
c.y4 = this.angleAxis;
c.za = this.valueAxis;
c.ha = true;
c.ack = true;
c.aa5 = this.aki;
c.yw = this.ahs;
c.aa2 = this.akb;
c.yv = this.ahr;
c.aav = this.aj2;
c.yt = this.ahq;
c.aaz = this.ajy;
c.yu = this.ahp;
c.zh = this.aid;
c.zi = this.aic;
c.aag = this.akg;
return c;
};
DataPieBaseChart.prototype.aaq = function () {
return this.angleAxis;
};
DataPieBaseChart.prototype.aar = function () {
return this.valueAxis;
};
DataPieBaseChart.prototype.ux = function () {
this.angleAxis = new ProportionalCategoryAngleAxis();
this.angleAxis.name = "angleAxis";
var a = this.angleAxis;
a.propertyChanged = delegateCombine(a.propertyChanged, runOn(this, this.ak5));
this.angleAxis.k5 = 0;
this.valueAxis = new NumericRadiusAxis();
this.valueAxis.name = "valueAxis";
var b = this.valueAxis;
b.propertyChanged = delegateCombine(b.propertyChanged, runOn(this, this.ak6));
if (this.angleAxis.az == null) {
this.angleAxis.az = new AxisLabelSettings();
}
if (this.valueAxis.az == null) {
this.valueAxis.az = new AxisLabelSettings();
}
};
DataPieBaseChart.prototype.ak5 = function (a, b) {
switch (b.propertyName) {
case "ActualMinimumValue":
this.wv("AngleAxisActualMinimum");
break;
case "ActualMaximumValue":
this.wv("AngleAxisActualMaximum");
break;
}
};
DataPieBaseChart.prototype.ak6 = function (a, b) {
switch (b.propertyName) {
case "ActualMinimumValue":
this.wv("ValueAxisActualMinimum");
break;
case "ActualMaximumValue":
this.wv("ValueAxisActualMaximum");
break;
}
};
DataPieBaseChart.prototype.ur = function (a, b) {
var c = typeCast(RadialBase.$, a);
if (c != null) {
c.xf = this.c2(a, b);
}
};
DataPieBaseChart.prototype.afx = function (a) {
_super.prototype.afx.call(this, a);
a.lf = this.ain;
a.lj = this.aio;
a.og = this.ai2;
if (!isNaN_(this.ai4)) {
a.oh = this.ai4;
}
else {
a.oh = 0.65;
}
};
DataPieBaseChart.prototype.afv = function (a) {
_super.prototype.afv.call(this, a);
a.ol = this.aj7;
a.n0 = this.ah5;
a.oe = this.ai3;
if (!isNaN_(this.ai5)) {
a.ne = this.ai5;
}
if (this.ah7 != 0) {
if (this.ah7 == 1) {
a.ch = false;
}
else {
a.ch = true;
}
}
};
DataPieBaseChart.prototype.vi = function (a) {
_super.prototype.vi.call(this, a);
a.ev = this.ail;
};
DataPieBaseChart.prototype.wd = function (a, b, c) {
var _this = this;
_super.prototype.wd.call(this, a, b, c);
switch (a) {
case "SliceLabelPositionMode":
this.u9(function (d) {
if (d.eq) {
_this.ce.setCollisionMode(d, _this.ahw);
}
});
break;
case "SliceLabelContentSeparator":
this.ak1(function (d) { return d.aag = _this.akg; });
break;
case "SliceLabelContentMode":
this.ak1(function (d) { return d.zh = _this.aid; });
break;
case "LegendSliceLabelContentMode":
this.ak1(function (d) { return d.zi = _this.aic; });
break;
case "SliceLabelFormat":
this.ak1(function (d) { return d.aa5 = _this.aki; });
break;
case "SliceLabelFormatSpecifiers":
this.ak1(function (d) { return d.yw = _this.ahs; });
break;
case "OthersSliceLabelFormat":
this.ak1(function (d) { return d.aa2 = _this.akb; });
break;
case "OthersSliceLabelFormatSpecifiers":
this.ak1(function (d) { return d.yv = _this.ahr; });
break;
case "LegendSliceLabelFormat":
this.ak1(function (d) { return d.aav = _this.aki; });
break;
case "LegendSliceLabelFormatSpecifiers":
this.ak1(function (d) { return d.yt = _this.ahs; });
break;
case "LegendOthersSliceLabelFormat":
this.ak1(function (d) { return d.aaz = _this.ajy; });
break;
case "LegendOthersSliceLabelFormatSpecifiers":
this.ak1(function (d) { return d.yu = _this.ahp; });
break;
case "SweepDirection":
if (this.angleAxis != null) {
if (this.ah7 != 0) {
if (this.ah7 == 1) {
this.angleAxis.ch = false;
}
else {
this.angleAxis.ch = true;
}
}
else {
this.angleAxis.ch = this.aa2;
}
}
break;
case "StartAngle":
if (this.angleAxis != null) {
this.angleAxis.ne = isNaN_(this.ai5) ? 0 : this.ai5;
}
break;
case "RadiusExtent":
if (this.valueAxis != null) {
this.valueAxis.oh = isNaN_(this.ai4) ? 0.65 : this.ai4;
}
break;
case "OthersCategoryText":
if (this.angleAxis != null) {
this.angleAxis.ol = this.aj7;
}
break;
case "OthersCategoryType":
if (this.angleAxis != null) {
this.angleAxis.n0 = this.ah5;
}
break;
case "OthersCategoryThreshold":
if (this.angleAxis != null) {
this.angleAxis.oe = this.ai3;
}
break;
case "InnerExtent":
if (this.valueAxis != null) {
this.valueAxis.og = this.ai2;
}
break;
case "LightSliceLabelColor":
this.u6(function (d) {
if (d.eq) {
_this.ce.setCalloutLightColor(d, _this.ala);
}
});
break;
case "DarkSliceLabelColor":
this.u6(function (d) {
if (d.eq) {
_this.ce.setCalloutDarkColor(d, _this.ak9);
}
});
break;
case "ValueMemberPath":
if (c != null) {
this.vb(function (d) {
if (typeCast(AnchoredRadialSeries.$, d) !== null) {
var e = d;
e.ac0 = _this.aky;
}
});
this.angleAxis.or = this.aky;
}
else {
this.wk();
}
break;
case "LabelMemberPath":
if (c != null) {
var d = this.ajt;
this.angleAxis.f2 = d;
}
else {
this.wk();
}
break;
case "LegendLabelMemberPath":
if (c != null) {
this.vb(function (e) {
if (typeCast(RadialPieSeries.$, e) !== null) {
var f = e;
f.ad3 = _this.ajw;
}
});
}
else {
this.wk();
}
break;
case "AngleAxisInterval":
this.angleAxis.nb = this.ai0;
break;
case "ValueAxisInterval":
this.valueAxis.l8 = this.ai8;
break;
case "ValueAxisFavorLabellingScaleEnd":
this.valueAxis.lj = this.aio;
break;
case "ValueAxisAutoRangeBufferMode":
this.valueAxis.ky = this.ahu;
break;
case "AngleAxisMinorInterval":
this.angleAxis.nc = this.ai1;
break;
case "ValueAxisMinorInterval":
this.valueAxis.md = this.ajb;
break;
case "ValueAxisIsLogarithmic":
this.valueAxis.lo = this.aip;
break;
case "ValueAxisLogarithmBase":
this.valueAxis.mm = this.ajd;
break;
case "ValueAxisMinimumValue":
this.valueAxis.mc = this.aja;
break;
case "ValueAxisMaximumValue":
this.valueAxis.mb = this.ai9;
break;
case "MarkerCollision":
this.vc(function (e, f) { return _this.ur(e, f); });
break;
case "ValueAxisAbbreviateLargeNumbers":
this.af4(function (e) { return e.lf = _this.ain; });
break;
case "FireMouseLeaveOnManipulationStart":
this.v1(function (e) { return e.ev = _this.ail; });
break;
}
};
Object.defineProperty(DataPieBaseChart.prototype, "aki", {
get: function () {
return this.ajl;
},
set: function (a) {
var b = this.aki;
if (a != b) {
this.ajl = a;
this.wd("SliceLabelFormat", b, this.aki);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ahs", {
get: function () {
return this.aho;
},
set: function (a) {
var b = this.ahs;
if (a != b) {
this.aho = a;
this.wd("SliceLabelFormatSpecifiers", b, this.ahs);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "aj2", {
get: function () {
return this.ajh;
},
set: function (a) {
var b = this.aj2;
if (a != b) {
this.ajh = a;
this.wd("LegendSliceLabelFormat", b, this.aj2);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ahq", {
get: function () {
return this.ahm;
},
set: function (a) {
var b = this.ahq;
if (a != b) {
this.ahm = a;
this.wd("LegendSliceLabelFormatSpecifiers", b, this.ahq);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "akb", {
get: function () {
return this.ajj;
},
set: function (a) {
var b = this.akb;
if (a != b) {
this.ajj = a;
this.wd("OthersSliceLabelFormat", b, this.akb);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ahr", {
get: function () {
return this.ahn;
},
set: function (a) {
var b = this.ahr;
if (a != b) {
this.ahn = a;
this.wd("OthersSliceLabelFormatSpecifiers", b, this.ahr);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ajy", {
get: function () {
return this.ajg;
},
set: function (a) {
var b = this.ajy;
if (a != b) {
this.ajg = a;
this.wd("LegendOthersSliceLabelFormat", b, this.ajy);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ahp", {
get: function () {
return this.ahl;
},
set: function (a) {
var b = this.ahp;
if (a != b) {
this.ahl = a;
this.wd("LegendOthersSliceLabelFormatSpecifiers", b, this.ahp);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ai2", {
get: function () {
return this.ais;
},
set: function (a) {
var b = this.ai2;
if (a != b) {
this.ais = a;
this.wd("InnerExtent", b, this.ai2);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ah7", {
get: function () {
return this.ah6;
},
set: function (a) {
var b = this.ah7;
if (a != b) {
this.ah6 = a;
this.wd("SweepDirection", enumGetBox(PieChartSweepDirection_$type, b), enumGetBox(PieChartSweepDirection_$type, this.ah7));
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ahw", {
get: function () {
return this.ahv;
},
set: function (a) {
var b = this.ahw;
if (a != b) {
this.ahv = a;
this.wd("SliceLabelPositionMode", enumGetBox(CalloutCollisionMode_$type, b), enumGetBox(CalloutCollisionMode_$type, this.ahw));
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ala", {
get: function () {
return this.ak8;
},
set: function (a) {
var b = this.ala;
if (a != b) {
this.ak8 = a;
this.wd("LightSliceLabelColor", b, this.ala);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ak9", {
get: function () {
return this.ak7;
},
set: function (a) {
var b = this.ak9;
if (a != b) {
this.ak7 = a;
this.wd("DarkSliceLabelColor", b, this.ak9);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "aky", {
get: function () {
return this.ajm;
},
set: function (a) {
var b = this.aky;
if (a != b) {
this.ajm = a;
this.wd("ValueMemberPath", b, this.aky);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ajw", {
get: function () {
return this.ajf;
},
set: function (a) {
var b = this.ajf;
if (a != b) {
this.ajf = a;
this.wd("LegendLabelMemberPath", b, this.ajf);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ah0", {
get: function () {
return this.ahz;
},
set: function (a) {
var b = this.ahz;
if (a != b) {
this.ahz = a;
this.wd("LegendEmptyValuesMode", enumGetBox(LegendEmptyValuesMode_$type, b), this.ajf);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ah5", {
get: function () {
return this.ah4;
},
set: function (a) {
var b = this.ah5;
if (a != b) {
this.ah4 = a;
this.wd("OthersCategoryType", enumGetBox(OthersCategoryType_$type, b), enumGetBox(OthersCategoryType_$type, this.ah5));
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ai3", {
get: function () {
return this.ait;
},
set: function (a) {
var b = this.ai3;
if (a != b) {
this.ait = a;
this.wd("OthersCategoryThreshold", b, this.ai3);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "aj7", {
get: function () {
return this.aji;
},
set: function (a) {
var b = this.aj7;
if (a != b) {
this.aji = a;
this.wd("OthersCategoryText", b, this.aj7);
}
},
enumerable: false,
configurable: true
});
DataPieBaseChart.prototype.ah3 = function () {
var a = new OthersCategoryContext();
if (this.angleAxis != null && this.angleAxis.kv != null) {
var b = new List$1(Base.$, 0);
for (var c = 0; c < this.angleAxis.kv.count; c++) {
if (this.angleAxis.isOthersValue(c)) {
b.add1(this.angleAxis.kv.item(c));
}
}
a.items = b.toArray();
}
return a;
};
Object.defineProperty(DataPieBaseChart.prototype, "ajt", {
get: function () {
return this.aje;
},
set: function (a) {
var b = this.ajt;
if (a != b) {
this.aje = a;
this.wd("LabelMemberPath", b, this.ajt);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "aio", {
get: function () {
return this.aii;
},
set: function (a) {
var b = this.aio;
if (a != b) {
this.aii = a;
this.wd("ValueAxisFavorLabellingScaleEnd", b, this.aio);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ahu", {
get: function () {
return this.aht;
},
set: function (a) {
var b = this.ahu;
if (a != b) {
this.aht = a;
this.wd("ValueAxisAutoRangeBufferMode", enumGetBox(AxisRangeBufferMode_$type, b), enumGetBox(AxisRangeBufferMode_$type, this.ahu));
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ai0", {
get: function () {
return this.aiq;
},
set: function (a) {
var b = this.ai0;
if (a != b) {
this.aiq = a;
this.wd("AngleAxisInterval", b, this.ai0);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ai1", {
get: function () {
return this.air;
},
set: function (a) {
var b = this.ai1;
if (a != b) {
this.air = a;
this.wd("AngleAxisMinorInterval", b, this.ai1);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ai8", {
get: function () {
return this.aiw;
},
set: function (a) {
var b = this.ai8;
if (a != b) {
this.aiw = a;
this.wd("ValueAxisInterval", b, this.ai8);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "aip", {
get: function () {
return this.aij;
},
set: function (a) {
var b = this.aip;
if (a != b) {
this.aij = a;
this.wd("ValueAxisIsLogarithmic", b, this.aip);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ajd", {
get: function () {
return this.ajc;
},
set: function (a) {
var b = this.ajd;
if (a != b) {
this.ajc = a;
this.wd("ValueAxisLogarithmBase", b, this.ajd);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "aja", {
get: function () {
return this.aiy;
},
set: function (a) {
var b = this.aja;
if (a != b) {
this.aiy = a;
this.wd("ValueAxisMinimumValue", b, this.aja);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ai9", {
get: function () {
return this.aix;
},
set: function (a) {
var b = this.ai9;
if (a != b) {
this.aix = a;
this.wd("ValueAxisMaximumValue", b, this.ai9);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ajb", {
get: function () {
return this.aiz;
},
set: function (a) {
var b = this.ajb;
if (a != b) {
this.aiz = a;
this.wd("ValueAxisMinorInterval", b, this.ajb);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ai7", {
get: function () {
return this.valueAxis.l4;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ai6", {
get: function () {
return this.valueAxis.l3;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ai4", {
get: function () {
return this.aiu;
},
set: function (a) {
var b = this.ai4;
if (a != b) {
this.aiu = a;
this.wd("RadiusExtent", b, this.ai4);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ai5", {
get: function () {
return this.aiv;
},
set: function (a) {
var b = this.ai5;
if (a != b) {
this.aiv = a;
this.wd("StartAngle", b, this.ai5);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "akg", {
get: function () {
return this.ajk;
},
set: function (a) {
var b = this.akg;
if (a != b) {
this.ajk = a;
this.wd("SliceLabelContentSeparator", b, this.akg);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "aid", {
get: function () {
return this.aib;
},
set: function (a) {
var b = this.aid;
if (a != b) {
this.aib = a;
this.wd("SliceLabelContentMode", enumGetBox(RadialLabelMode_$type, b), enumGetBox(RadialLabelMode_$type, this.aid));
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "aic", {
get: function () {
return this.aia;
},
set: function (a) {
var b = this.aic;
if (a != b) {
this.aia = a;
this.wd("LegendSliceLabelContentMode", enumGetBox(RadialLabelMode_$type, b), enumGetBox(RadialLabelMode_$type, this.aic));
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "aik", {
get: function () {
return this.aif;
},
set: function (a) {
var b = this.aik;
if (a != b) {
this.aif = a;
this.wd("AngleAxisFavorLabellingScaleEnd", b, this.aik);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ain", {
get: function () {
return this.aih;
},
set: function (a) {
var b = this.ain;
if (a != b) {
this.aih = a;
this.wd("ValueAxisAbbreviateLargeNumbers", b, this.ain);
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ahy", {
get: function () {
return this.ahx;
},
set: function (a) {
var b = this.ahx;
if (a != b) {
this.ahx = a;
this.wd("MarkerCollision", enumGetBox(CollisionAvoidanceType_$type, b), enumGetBox(CollisionAvoidanceType_$type, this.ahx));
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieBaseChart.prototype, "ail", {
get: function () {
return this.aig;
},
set: function (a) {
var b = this.aig;
if (a != b) {
this.aig = a;
this.wd("FireMouseLeaveOnManipulationStart", b, this.aig);
}
},
enumerable: false,
configurable: true
});
DataPieBaseChart.$t = markType(DataPieBaseChart, 'DataPieBaseChart', RadialBaseChart.$);
return DataPieBaseChart;
}(RadialBaseChart));
export { DataPieBaseChart };