UNPKG

igniteui-react-core

Version:
74 lines (73 loc) 2.71 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.gj = null; _this.gi = null; _this.gh = null; _this.gg = null; return _this; } RangeCategorySeriesDescription.prototype.get_type = function () { return "RangeCategorySeries"; }; Object.defineProperty(RangeCategorySeriesDescription.prototype, "lowMemberPath", { get: function () { return this.gj; }, set: function (a) { this.gj = a; this.j("LowMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(RangeCategorySeriesDescription.prototype, "highMemberPath", { get: function () { return this.gi; }, set: function (a) { this.gi = a; this.j("HighMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(RangeCategorySeriesDescription.prototype, "highlightedLowMemberPath", { get: function () { return this.gh; }, set: function (a) { this.gh = a; this.j("HighlightedLowMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(RangeCategorySeriesDescription.prototype, "highlightedHighMemberPath", { get: function () { return this.gg; }, set: function (a) { this.gg = a; this.j("HighlightedHighMemberPath"); }, enumerable: false, configurable: true }); RangeCategorySeriesDescription.$t = markType(RangeCategorySeriesDescription, 'RangeCategorySeriesDescription', CategorySeriesDescription.$); return RangeCategorySeriesDescription; }(CategorySeriesDescription)); export { RangeCategorySeriesDescription };