UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

128 lines (127 loc) 3.97 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 { constructor() { super(); this.f6 = 0; this.f2 = 0; this.f7 = 0; this.f3 = 0; this.f4 = 0; this.f5 = 0; this.f8 = 0; this.f9 = 0; this.ga = 0; this.gb = 0; this.gc = 0; this.go = null; this.gp = null; } get_type() { return "CategoryYAxis"; } get interval() { return this.f6; } set interval(a) { this.f6 = a; this.j("Interval"); } get actualInterval() { return this.f2; } set actualInterval(a) { this.f2 = a; this.j("ActualInterval"); } get minorInterval() { return this.f7; } set minorInterval(a) { this.f7 = a; this.j("MinorInterval"); } get actualMinorInterval() { return this.f3; } set actualMinorInterval(a) { this.f3 = a; this.j("ActualMinorInterval"); } get companionAxisInterval() { return this.f4; } set companionAxisInterval(a) { this.f4 = a; this.j("CompanionAxisInterval"); } get companionAxisMinorInterval() { return this.f5; } set companionAxisMinorInterval(a) { this.f5 = a; this.j("CompanionAxisMinorInterval"); } get zoomMaximumCategoryRange() { return this.f8; } set zoomMaximumCategoryRange(a) { this.f8 = a; this.j("ZoomMaximumCategoryRange"); } get zoomMaximumItemSpan() { return this.f9; } set zoomMaximumItemSpan(a) { this.f9 = a; this.j("ZoomMaximumItemSpan"); } get zoomToCategoryRange() { return this.ga; } set zoomToCategoryRange(a) { this.ga = a; this.j("ZoomToCategoryRange"); } get zoomToCategoryStart() { return this.gb; } set zoomToCategoryStart(a) { this.gb = a; this.j("ZoomToCategoryStart"); } get zoomToItemSpan() { return this.gc; } set zoomToItemSpan(a) { this.gc = a; this.j("ZoomToItemSpan"); } get actualIntervalChangeRef() { return this.go; } set actualIntervalChangeRef(a) { this.go = a; this.j("ActualIntervalChangeRef"); } get actualMinorIntervalChangeRef() { return this.gp; } set actualMinorIntervalChangeRef(a) { this.gp = a; this.j("ActualMinorIntervalChangeRef"); } } CategoryYAxisDescription.$t = markType(CategoryYAxisDescription, 'CategoryYAxisDescription', CategoryAxisBaseDescription.$); return CategoryYAxisDescription; })();