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.d2 = null;
_this.d1 = null;
_this.d0 = null;
return _this;
}
Object.defineProperty(PieChartDescription.prototype, "width", {
get: function () {
return this.d2;
},
set: function (a) {
this.d2 = a;
this.j("Width");
},
enumerable: false,
configurable: true
});
Object.defineProperty(PieChartDescription.prototype, "height", {
get: function () {
return this.d1;
},
set: function (a) {
this.d1 = a;
this.j("Height");
},
enumerable: false,
configurable: true
});
Object.defineProperty(PieChartDescription.prototype, "background", {
get: function () {
return this.d0;
},
set: function (a) {
this.d0 = a;
this.j("Background");
},
enumerable: false,
configurable: true
});
PieChartDescription.prototype.get_type = function () {
return "PieChart";
};
PieChartDescription.$t = markType(PieChartDescription, 'PieChartDescription', PieChartBaseDescription.$);
return PieChartDescription;
}(PieChartBaseDescription));
export { PieChartDescription };