UNPKG

igniteui-react-core

Version:
72 lines (71 loc) 2.45 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 { RangeCategorySeriesDescription } from "./RangeCategorySeriesDescription"; import { markType } from "./type"; /** * @hidden */ export let VerticalRangeCategorySeriesDescription = /*@__PURE__*/ (() => { class VerticalRangeCategorySeriesDescription extends RangeCategorySeriesDescription { get_type() { return "VerticalRangeCategorySeries"; } constructor() { super(); this.gs = null; this.gt = null; this.gq = null; this.go = null; this.gr = null; this.gp = null; } get xAxisRef() { return this.gs; } set xAxisRef(a) { this.gs = a; this.j("XAxisRef"); } get yAxisRef() { return this.gt; } set yAxisRef(a) { this.gt = a; this.j("YAxisRef"); } get lowMemberAsLegendLabel() { return this.gq; } set lowMemberAsLegendLabel(a) { this.gq = a; this.j("LowMemberAsLegendLabel"); } get highMemberAsLegendLabel() { return this.go; } set highMemberAsLegendLabel(a) { this.go = a; this.j("HighMemberAsLegendLabel"); } get lowMemberAsLegendUnit() { return this.gr; } set lowMemberAsLegendUnit(a) { this.gr = a; this.j("LowMemberAsLegendUnit"); } get highMemberAsLegendUnit() { return this.gp; } set highMemberAsLegendUnit(a) { this.gp = a; this.j("HighMemberAsLegendUnit"); } } VerticalRangeCategorySeriesDescription.$t = /*@__PURE__*/ markType(VerticalRangeCategorySeriesDescription, 'VerticalRangeCategorySeriesDescription', RangeCategorySeriesDescription.$); return VerticalRangeCategorySeriesDescription; })();