UNPKG

igniteui-react-core

Version:
112 lines (111 loc) 3.43 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 CategoryAngleAxisDescription = /*@__PURE__*/ (() => { class CategoryAngleAxisDescription extends CategoryAxisBaseDescription { get_type() { return "CategoryAngleAxis"; } constructor() { super(); this.f6 = 0; this.f7 = 0; this.f8 = 0; this.gl = null; this.gb = 0; this.gm = null; this.f9 = 0; this.f4 = 0; this.ga = 0; this.f5 = 0; this.gk = null; } get companionAxisInterval() { return this.f6; } set companionAxisInterval(a) { this.f6 = a; this.j("CompanionAxisInterval"); } get companionAxisMinorInterval() { return this.f7; } set companionAxisMinorInterval(a) { this.f7 = a; this.j("CompanionAxisMinorInterval"); } get companionAxisStartAngleOffset() { return this.f8; } set companionAxisStartAngleOffset(a) { this.f8 = a; this.j("CompanionAxisStartAngleOffset"); } get companionAxisLabelMode() { return this.gl; } set companionAxisLabelMode(a) { this.gl = a; this.j("CompanionAxisLabelMode"); } get startAngleOffset() { return this.gb; } set startAngleOffset(a) { this.gb = a; this.j("StartAngleOffset"); } get labelMode() { return this.gm; } set labelMode(a) { this.gm = a; this.j("LabelMode"); } get interval() { return this.f9; } set interval(a) { this.f9 = a; this.j("Interval"); } get actualInterval() { return this.f4; } set actualInterval(a) { this.f4 = a; this.j("ActualInterval"); } get minorInterval() { return this.ga; } set minorInterval(a) { this.ga = a; this.j("MinorInterval"); } get actualMinorInterval() { return this.f5; } set actualMinorInterval(a) { this.f5 = a; this.j("ActualMinorInterval"); } get actualIntervalChangeRef() { return this.gk; } set actualIntervalChangeRef(a) { this.gk = a; this.j("ActualIntervalChangeRef"); } } CategoryAngleAxisDescription.$t = /*@__PURE__*/ markType(CategoryAngleAxisDescription, 'CategoryAngleAxisDescription', CategoryAxisBaseDescription.$); return CategoryAngleAxisDescription; })();