UNPKG

igniteui-react-core

Version:
56 lines (55 loc) 1.97 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 { CategorySeriesDescription } from "./CategorySeriesDescription"; import { markType } from "./type"; /** * @hidden */ export let RangeCategorySeriesDescription = /*@__PURE__*/ (() => { class RangeCategorySeriesDescription extends CategorySeriesDescription { get_type() { return "RangeCategorySeries"; } constructor() { super(); this.gj = null; this.gi = null; this.gh = null; this.gg = null; } get lowMemberPath() { return this.gj; } set lowMemberPath(a) { this.gj = a; this.j("LowMemberPath"); } get highMemberPath() { return this.gi; } set highMemberPath(a) { this.gi = a; this.j("HighMemberPath"); } get highlightedLowMemberPath() { return this.gh; } set highlightedLowMemberPath(a) { this.gh = a; this.j("HighlightedLowMemberPath"); } get highlightedHighMemberPath() { return this.gg; } set highlightedHighMemberPath(a) { this.gg = a; this.j("HighlightedHighMemberPath"); } } RangeCategorySeriesDescription.$t = /*@__PURE__*/ markType(RangeCategorySeriesDescription, 'RangeCategorySeriesDescription', CategorySeriesDescription.$); return RangeCategorySeriesDescription; })();