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 CategoryXAxisDescription = /*@__PURE__*/ (() => { class CategoryXAxisDescription extends CategoryAxisBaseDescription { get_type() { return "CategoryXAxis"; } constructor() { super(); this.d7 = 0; this.d8 = 0; this.d9 = 0; this.ea = 0; this.eb = 0; this.d5 = 0; this.d3 = 0; this.d6 = 0; this.d4 = 0; this.el = null; this.em = null; } get zoomMaximumCategoryRange() { return this.d7; } set zoomMaximumCategoryRange(a) { this.d7 = a; this.g("ZoomMaximumCategoryRange"); } get zoomMaximumItemSpan() { return this.d8; } set zoomMaximumItemSpan(a) { this.d8 = a; this.g("ZoomMaximumItemSpan"); } get zoomToCategoryRange() { return this.d9; } set zoomToCategoryRange(a) { this.d9 = a; this.g("ZoomToCategoryRange"); } get zoomToCategoryStart() { return this.ea; } set zoomToCategoryStart(a) { this.ea = a; this.g("ZoomToCategoryStart"); } get zoomToItemSpan() { return this.eb; } set zoomToItemSpan(a) { this.eb = a; this.g("ZoomToItemSpan"); } get interval() { return this.d5; } set interval(a) { this.d5 = a; this.g("Interval"); } get actualInterval() { return this.d3; } set actualInterval(a) { this.d3 = a; this.g("ActualInterval"); } get minorInterval() { return this.d6; } set minorInterval(a) { this.d6 = a; this.g("MinorInterval"); } get actualMinorInterval() { return this.d4; } set actualMinorInterval(a) { this.d4 = a; this.g("ActualMinorInterval"); } get actualIntervalChangeRef() { return this.el; } set actualIntervalChangeRef(a) { this.el = a; this.g("ActualIntervalChangeRef"); } get actualMinorIntervalChangeRef() { return this.em; } set actualMinorIntervalChangeRef(a) { this.em = a; this.g("ActualMinorIntervalChangeRef"); } } CategoryXAxisDescription.$t = /*@__PURE__*/ markType(CategoryXAxisDescription, 'CategoryXAxisDescription', CategoryAxisBaseDescription.$); return CategoryXAxisDescription; })();