UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

50 lines (49 loc) 2.03 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 { CategorySeriesDescription } from "./CategorySeriesDescription"; import { markType } from "./type"; /** * @hidden */ var RangeCategorySeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(RangeCategorySeriesDescription, _super); function RangeCategorySeriesDescription() { var _this = _super.call(this) || this; _this.d4 = null; _this.d3 = null; return _this; } RangeCategorySeriesDescription.prototype.get_type = function () { return "RangeCategorySeries"; }; Object.defineProperty(RangeCategorySeriesDescription.prototype, "lowMemberPath", { get: function () { return this.d4; }, set: function (a) { this.d4 = a; this.e("LowMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(RangeCategorySeriesDescription.prototype, "highMemberPath", { get: function () { return this.d3; }, set: function (a) { this.d3 = a; this.e("HighMemberPath"); }, enumerable: false, configurable: true }); RangeCategorySeriesDescription.$t = markType(RangeCategorySeriesDescription, 'RangeCategorySeriesDescription', CategorySeriesDescription.$); return RangeCategorySeriesDescription; }(CategorySeriesDescription)); export { RangeCategorySeriesDescription };