igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
62 lines (61 loc) • 2.19 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 { PieChartBaseDescription } from "./PieChartBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
var PieChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(PieChartDescription, _super);
function PieChartDescription() {
var _this = _super.call(this) || this;
_this.dz = null;
_this.dy = null;
_this.dx = null;
return _this;
}
Object.defineProperty(PieChartDescription.prototype, "width", {
get: function () {
return this.dz;
},
set: function (a) {
this.dz = a;
this.g("Width");
},
enumerable: false,
configurable: true
});
Object.defineProperty(PieChartDescription.prototype, "height", {
get: function () {
return this.dy;
},
set: function (a) {
this.dy = a;
this.g("Height");
},
enumerable: false,
configurable: true
});
Object.defineProperty(PieChartDescription.prototype, "background", {
get: function () {
return this.dx;
},
set: function (a) {
this.dx = a;
this.g("Background");
},
enumerable: false,
configurable: true
});
PieChartDescription.prototype.get_type = function () {
return "PieChart";
};
PieChartDescription.$t = markType(PieChartDescription, 'PieChartDescription', PieChartBaseDescription.$);
return PieChartDescription;
}(PieChartBaseDescription));
export { PieChartDescription };