UNPKG

igniteui-react-core

Version:
74 lines (73 loc) 2.85 kB
/* 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 { CategoryAngleAxisDescription } from "./CategoryAngleAxisDescription"; import { markType } from "./type"; /** * @hidden */ var ProportionalCategoryAngleAxisDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ProportionalCategoryAngleAxisDescription, _super); function ProportionalCategoryAngleAxisDescription() { var _this = _super.call(this) || this; _this.et = null; _this.ep = 0; _this.es = null; _this.er = null; return _this; } ProportionalCategoryAngleAxisDescription.prototype.get_type = function () { return "ProportionalCategoryAngleAxis"; }; Object.defineProperty(ProportionalCategoryAngleAxisDescription.prototype, "valueMemberPath", { get: function () { return this.et; }, set: function (a) { this.et = a; this.g("ValueMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(ProportionalCategoryAngleAxisDescription.prototype, "othersCategoryThreshold", { get: function () { return this.ep; }, set: function (a) { this.ep = a; this.g("OthersCategoryThreshold"); }, enumerable: false, configurable: true }); Object.defineProperty(ProportionalCategoryAngleAxisDescription.prototype, "othersCategoryType", { get: function () { return this.es; }, set: function (a) { this.es = a; this.g("OthersCategoryType"); }, enumerable: false, configurable: true }); Object.defineProperty(ProportionalCategoryAngleAxisDescription.prototype, "othersCategoryText", { get: function () { return this.er; }, set: function (a) { this.er = a; this.g("OthersCategoryText"); }, enumerable: false, configurable: true }); ProportionalCategoryAngleAxisDescription.$t = markType(ProportionalCategoryAngleAxisDescription, 'ProportionalCategoryAngleAxisDescription', CategoryAngleAxisDescription.$); return ProportionalCategoryAngleAxisDescription; }(CategoryAngleAxisDescription)); export { ProportionalCategoryAngleAxisDescription };