igniteui-react-core
Version:
Ignite UI React Core.
120 lines (119 loc) • 3.63 kB
JavaScript
/*
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.aao = 0;
this.aap = 0;
this.aaw = null;
this.aaz = null;
this.aat = null;
this.aam = false;
this.aax = null;
this.aay = null;
this.aav = null;
this.aa0 = null;
this.aau = null;
this.aas = null;
}
get transitionInDuration() {
return this.aao;
}
set transitionInDuration(a) {
this.aao = a;
this.j("TransitionInDuration");
}
get transitionOutDuration() {
return this.aap;
}
set transitionOutDuration(a) {
this.aap = a;
this.j("TransitionOutDuration");
}
get transitionInEasingFunctionRef() {
return this.aaw;
}
set transitionInEasingFunctionRef(a) {
this.aaw = a;
this.j("TransitionInEasingFunctionRef");
}
get transitionOutEasingFunctionRef() {
return this.aaz;
}
set transitionOutEasingFunctionRef(a) {
this.aaz = a;
this.j("TransitionOutEasingFunctionRef");
}
get chartType() {
return this.aat;
}
set chartType(a) {
this.aat = a;
this.j("ChartType");
}
get isTransitionInEnabled() {
return this.aam;
}
set isTransitionInEnabled(a) {
this.aam = a;
this.j("IsTransitionInEnabled");
}
get transitionInMode() {
return this.aax;
}
set transitionInMode(a) {
this.aax = a;
this.j("TransitionInMode");
}
get transitionInSpeedType() {
return this.aay;
}
set transitionInSpeedType(a) {
this.aay = a;
this.j("TransitionInSpeedType");
}
get tooltipTemplateRef() {
return this.aav;
}
set tooltipTemplateRef(a) {
this.aav = a;
this.j("TooltipTemplateRef");
}
get width() {
return this.aa0;
}
set width(a) {
this.aa0 = a;
this.j("Width");
}
get height() {
return this.aau;
}
set height(a) {
this.aau = a;
this.j("Height");
}
get background() {
return this.aas;
}
set background(a) {
this.aas = a;
this.j("Background");
}
}
DataPieChartDescription.$t = /*@__PURE__*/ markType(DataPieChartDescription, 'DataPieChartDescription', DataPieBaseChartDescription.$);
return DataPieChartDescription;
})();