UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

224 lines (223 loc) 7.42 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.gg = 0; this.gh = 0; this.gn = null; this.gs = null; this.gq = null; this.gp = null; this.go = null; this.fy = null; this.gv = null; this.f2 = null; this.gr = null; this.fz = null; this.gu = null; this.f1 = null; this.gt = null; this.f0 = null; this.ga = false; this.f9 = false; this.gw = null; this.gb = false; this.gk = null; this.gx = null; this.f8 = false; this.gm = null; this.gl = null; } get_type() { return "RadialBase"; } get autoCalloutLabelPrecision() { return this.gg; } set autoCalloutLabelPrecision(a) { this.gg = a; this.j("AutoCalloutLabelPrecision"); } get autoCalloutPercentagePrecision() { return this.gh; } set autoCalloutPercentagePrecision(a) { this.gh = a; this.j("AutoCalloutPercentagePrecision"); } get autoCalloutLabelValueSeparator() { return this.gn; } set autoCalloutLabelValueSeparator(a) { this.gn = a; this.j("AutoCalloutLabelValueSeparator"); } get legendRadialLabelMode() { return this.gs; } set legendRadialLabelMode(a) { this.gs = a; this.j("LegendRadialLabelMode"); } get categoryCollisionMode() { return this.gq; } set categoryCollisionMode(a) { this.gq = a; this.j("CategoryCollisionMode"); } get autoCalloutRadialLabelMode() { return this.gp; } set autoCalloutRadialLabelMode(a) { this.gp = a; this.j("AutoCalloutRadialLabelMode"); } get autoCalloutOthersLabelFormat() { return this.go; } set autoCalloutOthersLabelFormat(a) { this.go = a; this.j("AutoCalloutOthersLabelFormat"); } get autoCalloutOthersLabelFormatSpecifiers() { return this.fy; } set autoCalloutOthersLabelFormatSpecifiers(a) { this.fy = a; this.j("AutoCalloutOthersLabelFormatSpecifiers"); } get proportionalRadialLabelFormat() { return this.gv; } set proportionalRadialLabelFormat(a) { this.gv = a; this.j("ProportionalRadialLabelFormat"); } get proportionalRadialLabelFormatSpecifiers() { return this.f2; } set proportionalRadialLabelFormatSpecifiers(a) { this.f2 = a; this.j("ProportionalRadialLabelFormatSpecifiers"); } get legendProportionalRadialLabelFormat() { return this.gr; } set legendProportionalRadialLabelFormat(a) { this.gr = a; this.j("LegendProportionalRadialLabelFormat"); } get legendProportionalRadialLabelFormatSpecifiers() { return this.fz; } set legendProportionalRadialLabelFormatSpecifiers(a) { this.fz = a; this.j("LegendProportionalRadialLabelFormatSpecifiers"); } get othersProportionalRadialLabelFormat() { return this.gu; } set othersProportionalRadialLabelFormat(a) { this.gu = a; this.j("OthersProportionalRadialLabelFormat"); } get othersProportionalRadialLabelFormatSpecifiers() { return this.f1; } set othersProportionalRadialLabelFormatSpecifiers(a) { this.f1 = a; this.j("OthersProportionalRadialLabelFormatSpecifiers"); } get othersLegendProportionalRadialLabelFormat() { return this.gt; } set othersLegendProportionalRadialLabelFormat(a) { this.gt = a; this.j("OthersLegendProportionalRadialLabelFormat"); } get othersLegendProportionalRadialLabelFormatSpecifiers() { return this.f0; } set othersLegendProportionalRadialLabelFormatSpecifiers(a) { this.f0 = a; this.j("OthersLegendProportionalRadialLabelFormatSpecifiers"); } get isCustomRadialStyleAllowed() { return this.ga; } set isCustomRadialStyleAllowed(a) { this.ga = a; this.j("IsCustomRadialStyleAllowed"); } get isCustomRadialMarkerStyleAllowed() { return this.f9; } set isCustomRadialMarkerStyleAllowed(a) { this.f9 = a; this.j("IsCustomRadialMarkerStyleAllowed"); } get transitionInMode() { return this.gw; } set transitionInMode(a) { this.gw = a; this.j("TransitionInMode"); } get isTransitionInEnabled() { return this.gb; } set isTransitionInEnabled(a) { this.gb = a; this.j("IsTransitionInEnabled"); } get angleAxisRef() { return this.gk; } set angleAxisRef(a) { this.gk = a; this.j("AngleAxisRef"); } get valueAxisRef() { return this.gx; } set valueAxisRef(a) { this.gx = a; this.j("ValueAxisRef"); } get clipSeriesToBounds() { return this.f8; } set clipSeriesToBounds(a) { this.f8 = a; this.j("ClipSeriesToBounds"); } get assigningRadialStyleRef() { return this.gm; } set assigningRadialStyleRef(a) { this.gm = a; this.j("AssigningRadialStyleRef"); } get assigningRadialMarkerStyleRef() { return this.gl; } set assigningRadialMarkerStyleRef(a) { this.gl = a; this.j("AssigningRadialMarkerStyleRef"); } } RadialBaseDescription.$t = markType(RadialBaseDescription, 'RadialBaseDescription', MarkerSeriesDescription.$); return RadialBaseDescription; })();