UNPKG

igniteui-react-core

Version:
120 lines (119 loc) 3.6 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 { DataPieBaseChartDescription } from "./DataPieBaseChartDescription"; import { markType } from "./type"; /** * @hidden */ export let DataPieChartDescription = /*@__PURE__*/ (() => { class DataPieChartDescription extends DataPieBaseChartDescription { get_type() { return "DataPieChart"; } constructor() { super(); this.yz = 0; this.y0 = 0; this.y7 = null; this.za = null; this.y4 = null; this.yx = false; this.y8 = null; this.y9 = null; this.y6 = null; this.zb = null; this.y5 = null; this.y3 = null; } get transitionInDuration() { return this.yz; } set transitionInDuration(a) { this.yz = a; this.g("TransitionInDuration"); } get transitionOutDuration() { return this.y0; } set transitionOutDuration(a) { this.y0 = a; this.g("TransitionOutDuration"); } get transitionInEasingFunctionRef() { return this.y7; } set transitionInEasingFunctionRef(a) { this.y7 = a; this.g("TransitionInEasingFunctionRef"); } get transitionOutEasingFunctionRef() { return this.za; } set transitionOutEasingFunctionRef(a) { this.za = a; this.g("TransitionOutEasingFunctionRef"); } get chartType() { return this.y4; } set chartType(a) { this.y4 = a; this.g("ChartType"); } get isTransitionInEnabled() { return this.yx; } set isTransitionInEnabled(a) { this.yx = a; this.g("IsTransitionInEnabled"); } get transitionInMode() { return this.y8; } set transitionInMode(a) { this.y8 = a; this.g("TransitionInMode"); } get transitionInSpeedType() { return this.y9; } set transitionInSpeedType(a) { this.y9 = a; this.g("TransitionInSpeedType"); } get tooltipTemplateRef() { return this.y6; } set tooltipTemplateRef(a) { this.y6 = a; this.g("TooltipTemplateRef"); } get width() { return this.zb; } set width(a) { this.zb = a; this.g("Width"); } get height() { return this.y5; } set height(a) { this.y5 = a; this.g("Height"); } get background() { return this.y3; } set background(a) { this.y3 = a; this.g("Background"); } } DataPieChartDescription.$t = /*@__PURE__*/ markType(DataPieChartDescription, 'DataPieChartDescription', DataPieBaseChartDescription.$); return DataPieChartDescription; })();