UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

139 lines (138 loc) 4.16 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let DoughnutChartDescription = /*@__PURE__*/ (() => { class DoughnutChartDescription extends Description { constructor() { super(); this.ac = null; this.n = false; this.o = false; this.m = false; this.k = null; this.t = 0; this.ae = null; this.af = null; this.w = 0; this.v = 0; this.u = 0; this.s = 0; this.ag = null; this.ad = null; } get background() { return this.ac; } set background(a) { this.ac = a; this.j("Background"); } get_type() { return "DoughnutChart"; } get type() { return this.get_type(); } get allowSliceSelection() { return this.n; } set allowSliceSelection(a) { this.n = a; this.j("AllowSliceSelection"); } get isSurfaceInteractionDisabled() { return this.o; } set isSurfaceInteractionDisabled(a) { this.o = a; this.j("IsSurfaceInteractionDisabled"); } get allowSliceExplosion() { return this.m; } set allowSliceExplosion(a) { this.m = a; this.j("AllowSliceExplosion"); } get series() { return this.k; } set series(a) { this.k = a; this.j("Series"); } get innerExtent() { return this.t; } set innerExtent(a) { this.t = a; this.j("InnerExtent"); } get selectedSliceFill() { return this.ae; } set selectedSliceFill(a) { this.ae = a; this.j("SelectedSliceFill"); } get selectedSliceStroke() { return this.af; } set selectedSliceStroke(a) { this.af = a; this.j("SelectedSliceStroke"); } get selectedSliceStrokeThickness() { return this.w; } set selectedSliceStrokeThickness(a) { this.w = a; this.j("SelectedSliceStrokeThickness"); } get selectedSliceOpacity() { return this.v; } set selectedSliceOpacity(a) { this.v = a; this.j("SelectedSliceOpacity"); } get pixelScalingRatio() { return this.u; } set pixelScalingRatio(a) { this.u = a; this.j("PixelScalingRatio"); } get actualPixelScalingRatio() { return this.s; } set actualPixelScalingRatio(a) { this.s = a; this.j("ActualPixelScalingRatio"); } get sliceClickRef() { return this.ag; } set sliceClickRef(a) { this.ag = a; this.j("SliceClickRef"); } get holeDimensionsChangedRef() { return this.ad; } set holeDimensionsChangedRef(a) { this.ad = a; this.j("HoleDimensionsChangedRef"); } } DoughnutChartDescription.$t = markType(DoughnutChartDescription, 'DoughnutChartDescription', Description.$); return DoughnutChartDescription; })();