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.eb = null; this.ec = null; this.d9 = null; this.d7 = null; this.ea = null; this.d8 = null; } get_type() { return "HorizontalRangeCategorySeries"; } get xAxisRef() { return this.eb; } set xAxisRef(a) { this.eb = a; this.e("XAxisRef"); } get yAxisRef() { return this.ec; } set yAxisRef(a) { this.ec = a; this.e("YAxisRef"); } get lowMemberAsLegendLabel() { return this.d9; } set lowMemberAsLegendLabel(a) { this.d9 = a; this.e("LowMemberAsLegendLabel"); } get highMemberAsLegendLabel() { return this.d7; } set highMemberAsLegendLabel(a) { this.d7 = a; this.e("HighMemberAsLegendLabel"); } get lowMemberAsLegendUnit() { return this.ea; } set lowMemberAsLegendUnit(a) { this.ea = a; this.e("LowMemberAsLegendUnit"); } get highMemberAsLegendUnit() { return this.d8; } set highMemberAsLegendUnit(a) { this.d8 = a; this.e("HighMemberAsLegendUnit"); } } HorizontalRangeCategorySeriesDescription.$t = markType(HorizontalRangeCategorySeriesDescription, 'HorizontalRangeCategorySeriesDescription', RangeCategorySeriesDescription.$); return HorizontalRangeCategorySeriesDescription; })();