UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

48 lines (47 loc) 1.59 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 { PieChartBaseDescription } from "./PieChartBaseDescription"; import { markType } from "./type"; /** * @hidden */ export let PieChartDescription = /*@__PURE__*/ (() => { class PieChartDescription extends PieChartBaseDescription { constructor() { super(); this.d2 = null; this.d1 = null; this.d0 = null; } get width() { return this.d2; } set width(a) { this.d2 = a; this.j("Width"); } get height() { return this.d1; } set height(a) { this.d1 = a; this.j("Height"); } get background() { return this.d0; } set background(a) { this.d0 = a; this.j("Background"); } get_type() { return "PieChart"; } } PieChartDescription.$t = markType(PieChartDescription, 'PieChartDescription', PieChartBaseDescription.$); return PieChartDescription; })();