igniteui-react-core
Version:
Ignite UI React Core.
170 lines (169 loc) • 5.37 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.aao = 0;
_this.aap = 0;
_this.aaw = null;
_this.aaz = null;
_this.aat = null;
_this.aam = false;
_this.aax = null;
_this.aay = null;
_this.aav = null;
_this.aa0 = null;
_this.aau = null;
_this.aas = null;
return _this;
}
DataPieChartDescription.prototype.get_type = function () {
return "DataPieChart";
};
Object.defineProperty(DataPieChartDescription.prototype, "transitionInDuration", {
get: function () {
return this.aao;
},
set: function (a) {
this.aao = a;
this.j("TransitionInDuration");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieChartDescription.prototype, "transitionOutDuration", {
get: function () {
return this.aap;
},
set: function (a) {
this.aap = a;
this.j("TransitionOutDuration");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieChartDescription.prototype, "transitionInEasingFunctionRef", {
get: function () {
return this.aaw;
},
set: function (a) {
this.aaw = a;
this.j("TransitionInEasingFunctionRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieChartDescription.prototype, "transitionOutEasingFunctionRef", {
get: function () {
return this.aaz;
},
set: function (a) {
this.aaz = a;
this.j("TransitionOutEasingFunctionRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieChartDescription.prototype, "chartType", {
get: function () {
return this.aat;
},
set: function (a) {
this.aat = a;
this.j("ChartType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieChartDescription.prototype, "isTransitionInEnabled", {
get: function () {
return this.aam;
},
set: function (a) {
this.aam = a;
this.j("IsTransitionInEnabled");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieChartDescription.prototype, "transitionInMode", {
get: function () {
return this.aax;
},
set: function (a) {
this.aax = a;
this.j("TransitionInMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieChartDescription.prototype, "transitionInSpeedType", {
get: function () {
return this.aay;
},
set: function (a) {
this.aay = a;
this.j("TransitionInSpeedType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieChartDescription.prototype, "tooltipTemplateRef", {
get: function () {
return this.aav;
},
set: function (a) {
this.aav = a;
this.j("TooltipTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieChartDescription.prototype, "width", {
get: function () {
return this.aa0;
},
set: function (a) {
this.aa0 = a;
this.j("Width");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieChartDescription.prototype, "height", {
get: function () {
return this.aau;
},
set: function (a) {
this.aau = a;
this.j("Height");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataPieChartDescription.prototype, "background", {
get: function () {
return this.aas;
},
set: function (a) {
this.aas = a;
this.j("Background");
},
enumerable: false,
configurable: true
});
DataPieChartDescription.$t = markType(DataPieChartDescription, 'DataPieChartDescription', DataPieBaseChartDescription.$);
return DataPieChartDescription;
}(DataPieBaseChartDescription));
export { DataPieChartDescription };