UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

80 lines (79 loc) 2.57 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 { constructor() { super(); this.ef = 0; this.em = null; this.ed = 0; this.eb = 0; this.ee = 0; this.ec = 0; this.el = null; } get_type() { return "CategoryAngleAxis"; } get startAngleOffset() { return this.ef; } set startAngleOffset(a) { this.ef = a; this.g("StartAngleOffset"); } get labelMode() { return this.em; } set labelMode(a) { this.em = a; this.g("LabelMode"); } 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 actualIntervalChangeRef() { return this.el; } set actualIntervalChangeRef(a) { this.el = a; this.g("ActualIntervalChangeRef"); } } CategoryAngleAxisDescription.$t = markType(CategoryAngleAxisDescription, 'CategoryAngleAxisDescription', CategoryAxisBaseDescription.$); return CategoryAngleAxisDescription; })();