UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

80 lines (79 loc) 2.68 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 { MarkerSeriesDescription } from "./MarkerSeriesDescription"; import { markType } from "./type"; /** * @hidden */ export let RadialBaseDescription = /*@__PURE__*/ (() => { class RadialBaseDescription extends MarkerSeriesDescription { constructor() { super(); this.dr = false; this.dq = false; this.dv = null; this.dy = null; this.dp = false; this.dx = null; this.dw = null; } get_type() { return "RadialBase"; } get isCustomRadialStyleAllowed() { return this.dr; } set isCustomRadialStyleAllowed(a) { this.dr = a; this.e("IsCustomRadialStyleAllowed"); } get isCustomRadialMarkerStyleAllowed() { return this.dq; } set isCustomRadialMarkerStyleAllowed(a) { this.dq = a; this.e("IsCustomRadialMarkerStyleAllowed"); } get angleAxisRef() { return this.dv; } set angleAxisRef(a) { this.dv = a; this.e("AngleAxisRef"); } get valueAxisRef() { return this.dy; } set valueAxisRef(a) { this.dy = a; this.e("ValueAxisRef"); } get clipSeriesToBounds() { return this.dp; } set clipSeriesToBounds(a) { this.dp = a; this.e("ClipSeriesToBounds"); } get assigningRadialStyleRef() { return this.dx; } set assigningRadialStyleRef(a) { this.dx = a; this.e("AssigningRadialStyleRef"); } get assigningRadialMarkerStyleRef() { return this.dw; } set assigningRadialMarkerStyleRef(a) { this.dw = a; this.e("AssigningRadialMarkerStyleRef"); } } RadialBaseDescription.$t = markType(RadialBaseDescription, 'RadialBaseDescription', MarkerSeriesDescription.$); return RadialBaseDescription; })();