igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
52 lines (51 loc) • 2.15 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 { DataContextDescription } from "./DataContextDescription";
import { markType } from "./type";
/**
* @hidden
*/
var PieSliceDataContextDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(PieSliceDataContextDescription, _super);
function PieSliceDataContextDescription() {
var _this = _super.call(this) || this;
_this.ab = 0;
_this.z = false;
return _this;
}
PieSliceDataContextDescription.prototype.get_type = function () {
return "PieSliceDataContext";
};
Object.defineProperty(PieSliceDataContextDescription.prototype, "percentValue", {
get: function () {
return this.ab;
},
set: function (a) {
this.ab = a;
this.g("PercentValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(PieSliceDataContextDescription.prototype, "isOthersSlice", {
get: function () {
return this.z;
},
set: function (a) {
this.z = a;
this.g("IsOthersSlice");
},
enumerable: false,
configurable: true
});
PieSliceDataContextDescription.$t = markType(PieSliceDataContextDescription, 'PieSliceDataContextDescription', DataContextDescription.$);
PieSliceDataContextDescription.__marshalByValue1 = true;
PieSliceDataContextDescription.__marshalByValueAlias1 = "PieSliceDataContext";
return PieSliceDataContextDescription;
}(DataContextDescription));
export { PieSliceDataContextDescription };