igniteui-react-core
Version:
Ignite UI React Core.
120 lines (119 loc) • 3.6 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.zb = 0;
this.zc = 0;
this.zj = null;
this.zm = null;
this.zg = null;
this.y9 = false;
this.zk = null;
this.zl = null;
this.zi = null;
this.zn = null;
this.zh = null;
this.zf = null;
}
get transitionInDuration() {
return this.zb;
}
set transitionInDuration(a) {
this.zb = a;
this.g("TransitionInDuration");
}
get transitionOutDuration() {
return this.zc;
}
set transitionOutDuration(a) {
this.zc = a;
this.g("TransitionOutDuration");
}
get transitionInEasingFunctionRef() {
return this.zj;
}
set transitionInEasingFunctionRef(a) {
this.zj = a;
this.g("TransitionInEasingFunctionRef");
}
get transitionOutEasingFunctionRef() {
return this.zm;
}
set transitionOutEasingFunctionRef(a) {
this.zm = a;
this.g("TransitionOutEasingFunctionRef");
}
get chartType() {
return this.zg;
}
set chartType(a) {
this.zg = a;
this.g("ChartType");
}
get isTransitionInEnabled() {
return this.y9;
}
set isTransitionInEnabled(a) {
this.y9 = a;
this.g("IsTransitionInEnabled");
}
get transitionInMode() {
return this.zk;
}
set transitionInMode(a) {
this.zk = a;
this.g("TransitionInMode");
}
get transitionInSpeedType() {
return this.zl;
}
set transitionInSpeedType(a) {
this.zl = a;
this.g("TransitionInSpeedType");
}
get tooltipTemplateRef() {
return this.zi;
}
set tooltipTemplateRef(a) {
this.zi = a;
this.g("TooltipTemplateRef");
}
get width() {
return this.zn;
}
set width(a) {
this.zn = a;
this.g("Width");
}
get height() {
return this.zh;
}
set height(a) {
this.zh = a;
this.g("Height");
}
get background() {
return this.zf;
}
set background(a) {
this.zf = a;
this.g("Background");
}
}
DataPieChartDescription.$t = /*@__PURE__*/ markType(DataPieChartDescription, 'DataPieChartDescription', DataPieBaseChartDescription.$);
return DataPieChartDescription;
})();