UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

72 lines (71 loc) 2.38 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.dx = 0; this.dv = 0; this.dt = 0; this.dw = 0; this.du = 0; this.d3 = null; } get_type() { return "CategoryAngleAxis"; } get startAngleOffset() { return this.dx; } set startAngleOffset(a) { this.dx = a; this.e("StartAngleOffset"); } get interval() { return this.dv; } set interval(a) { this.dv = a; this.e("Interval"); } get actualInterval() { return this.dt; } set actualInterval(a) { this.dt = a; this.e("ActualInterval"); } get minorInterval() { return this.dw; } set minorInterval(a) { this.dw = a; this.e("MinorInterval"); } get actualMinorInterval() { return this.du; } set actualMinorInterval(a) { this.du = a; this.e("ActualMinorInterval"); } get actualIntervalChangeRef() { return this.d3; } set actualIntervalChangeRef(a) { this.d3 = a; this.e("ActualIntervalChangeRef"); } } CategoryAngleAxisDescription.$t = markType(CategoryAngleAxisDescription, 'CategoryAngleAxisDescription', CategoryAxisBaseDescription.$); return CategoryAngleAxisDescription; })();