igniteui-react-core
Version:
Ignite UI React Core.
170 lines (169 loc) • 5.33 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 { DataPieBaseChartDescription } from "./DataPieBaseChartDescription";
import { markType } from "./type";
/**
* @hidden
*/
var DataPieChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(DataPieChartDescription, _super);
function DataPieChartDescription() {
var _this = _super.call(this) || this;
_this.zb = 0;
_this.zc = 0;
_this.zj = null;
_this.zm = null;
_this.zg = null;
_this.y9 = false;
_this.zk = null;
_this.zl = null;
_this.zi = null;
_this.zn = null;
_this.zh = null;
_this.zf = null;
return _this;
}
DataPieChartDescription.prototype.get_type = function () {
return "DataPieChart";
};
Object.defineProperty(DataPieChartDescription.prototype, "transitionInDuration", {
get: function () {
return this.zb;
},
set: function (a) {
this.zb = a;
this.g("TransitionInDuration");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieChartDescription.prototype, "transitionOutDuration", {
get: function () {
return this.zc;
},
set: function (a) {
this.zc = a;
this.g("TransitionOutDuration");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieChartDescription.prototype, "transitionInEasingFunctionRef", {
get: function () {
return this.zj;
},
set: function (a) {
this.zj = a;
this.g("TransitionInEasingFunctionRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieChartDescription.prototype, "transitionOutEasingFunctionRef", {
get: function () {
return this.zm;
},
set: function (a) {
this.zm = a;
this.g("TransitionOutEasingFunctionRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieChartDescription.prototype, "chartType", {
get: function () {
return this.zg;
},
set: function (a) {
this.zg = a;
this.g("ChartType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieChartDescription.prototype, "isTransitionInEnabled", {
get: function () {
return this.y9;
},
set: function (a) {
this.y9 = a;
this.g("IsTransitionInEnabled");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieChartDescription.prototype, "transitionInMode", {
get: function () {
return this.zk;
},
set: function (a) {
this.zk = a;
this.g("TransitionInMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieChartDescription.prototype, "transitionInSpeedType", {
get: function () {
return this.zl;
},
set: function (a) {
this.zl = a;
this.g("TransitionInSpeedType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieChartDescription.prototype, "tooltipTemplateRef", {
get: function () {
return this.zi;
},
set: function (a) {
this.zi = a;
this.g("TooltipTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieChartDescription.prototype, "width", {
get: function () {
return this.zn;
},
set: function (a) {
this.zn = a;
this.g("Width");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieChartDescription.prototype, "height", {
get: function () {
return this.zh;
},
set: function (a) {
this.zh = a;
this.g("Height");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieChartDescription.prototype, "background", {
get: function () {
return this.zf;
},
set: function (a) {
this.zf = a;
this.g("Background");
},
enumerable: false,
configurable: true
});
DataPieChartDescription.$t = markType(DataPieChartDescription, 'DataPieChartDescription', DataPieBaseChartDescription.$);
return DataPieChartDescription;
}(DataPieBaseChartDescription));
export { DataPieChartDescription };