UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

72 lines (71 loc) 2.52 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 HorizontalRangeCategorySeriesDescription = /*@__PURE__*/ (() => { class HorizontalRangeCategorySeriesDescription extends RangeCategorySeriesDescription { constructor() { super(); this.gq = null; this.gr = null; this.go = null; this.gm = null; this.gp = null; this.gn = null; } get_type() { return "HorizontalRangeCategorySeries"; } get xAxisRef() { return this.gq; } set xAxisRef(a) { this.gq = a; this.j("XAxisRef"); } get yAxisRef() { return this.gr; } set yAxisRef(a) { this.gr = a; this.j("YAxisRef"); } get lowMemberAsLegendLabel() { return this.go; } set lowMemberAsLegendLabel(a) { this.go = a; this.j("LowMemberAsLegendLabel"); } get highMemberAsLegendLabel() { return this.gm; } set highMemberAsLegendLabel(a) { this.gm = a; this.j("HighMemberAsLegendLabel"); } get lowMemberAsLegendUnit() { return this.gp; } set lowMemberAsLegendUnit(a) { this.gp = a; this.j("LowMemberAsLegendUnit"); } get highMemberAsLegendUnit() { return this.gn; } set highMemberAsLegendUnit(a) { this.gn = a; this.j("HighMemberAsLegendUnit"); } } HorizontalRangeCategorySeriesDescription.$t = markType(HorizontalRangeCategorySeriesDescription, 'HorizontalRangeCategorySeriesDescription', RangeCategorySeriesDescription.$); return HorizontalRangeCategorySeriesDescription; })();