UNPKG

igniteui-react-core

Version:
112 lines (111 loc) 3.4 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 { CategoryAxisBaseDescription } from "./CategoryAxisBaseDescription"; import { markType } from "./type"; /** * @hidden */ export let CategoryYAxisDescription = /*@__PURE__*/ (() => { class CategoryYAxisDescription extends CategoryAxisBaseDescription { get_type() { return "CategoryYAxis"; } constructor() { super(); this.ed = 0; this.eb = 0; this.ee = 0; this.ec = 0; this.ef = 0; this.eg = 0; this.eh = 0; this.ei = 0; this.ej = 0; this.et = null; this.eu = null; } get interval() { return this.ed; } set interval(a) { this.ed = a; this.g("Interval"); } get actualInterval() { return this.eb; } set actualInterval(a) { this.eb = a; this.g("ActualInterval"); } get minorInterval() { return this.ee; } set minorInterval(a) { this.ee = a; this.g("MinorInterval"); } get actualMinorInterval() { return this.ec; } set actualMinorInterval(a) { this.ec = a; this.g("ActualMinorInterval"); } get zoomMaximumCategoryRange() { return this.ef; } set zoomMaximumCategoryRange(a) { this.ef = a; this.g("ZoomMaximumCategoryRange"); } get zoomMaximumItemSpan() { return this.eg; } set zoomMaximumItemSpan(a) { this.eg = a; this.g("ZoomMaximumItemSpan"); } get zoomToCategoryRange() { return this.eh; } set zoomToCategoryRange(a) { this.eh = a; this.g("ZoomToCategoryRange"); } get zoomToCategoryStart() { return this.ei; } set zoomToCategoryStart(a) { this.ei = a; this.g("ZoomToCategoryStart"); } get zoomToItemSpan() { return this.ej; } set zoomToItemSpan(a) { this.ej = a; this.g("ZoomToItemSpan"); } get actualIntervalChangeRef() { return this.et; } set actualIntervalChangeRef(a) { this.et = a; this.g("ActualIntervalChangeRef"); } get actualMinorIntervalChangeRef() { return this.eu; } set actualMinorIntervalChangeRef(a) { this.eu = a; this.g("ActualMinorIntervalChangeRef"); } } CategoryYAxisDescription.$t = /*@__PURE__*/ markType(CategoryYAxisDescription, 'CategoryYAxisDescription', CategoryAxisBaseDescription.$); return CategoryYAxisDescription; })();