igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
120 lines (119 loc) • 3.73 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 {
constructor() {
super();
this.z6 = 0;
this.z7 = 0;
this.aae = null;
this.aah = null;
this.aab = null;
this.z4 = false;
this.aaf = null;
this.aag = null;
this.aad = null;
this.aai = null;
this.aac = null;
this.aaa = null;
}
get_type() {
return "DataPieChart";
}
get transitionInDuration() {
return this.z6;
}
set transitionInDuration(a) {
this.z6 = a;
this.j("TransitionInDuration");
}
get transitionOutDuration() {
return this.z7;
}
set transitionOutDuration(a) {
this.z7 = a;
this.j("TransitionOutDuration");
}
get transitionInEasingFunctionRef() {
return this.aae;
}
set transitionInEasingFunctionRef(a) {
this.aae = a;
this.j("TransitionInEasingFunctionRef");
}
get transitionOutEasingFunctionRef() {
return this.aah;
}
set transitionOutEasingFunctionRef(a) {
this.aah = a;
this.j("TransitionOutEasingFunctionRef");
}
get chartType() {
return this.aab;
}
set chartType(a) {
this.aab = a;
this.j("ChartType");
}
get isTransitionInEnabled() {
return this.z4;
}
set isTransitionInEnabled(a) {
this.z4 = a;
this.j("IsTransitionInEnabled");
}
get transitionInMode() {
return this.aaf;
}
set transitionInMode(a) {
this.aaf = a;
this.j("TransitionInMode");
}
get transitionInSpeedType() {
return this.aag;
}
set transitionInSpeedType(a) {
this.aag = a;
this.j("TransitionInSpeedType");
}
get tooltipTemplateRef() {
return this.aad;
}
set tooltipTemplateRef(a) {
this.aad = a;
this.j("TooltipTemplateRef");
}
get width() {
return this.aai;
}
set width(a) {
this.aai = a;
this.j("Width");
}
get height() {
return this.aac;
}
set height(a) {
this.aac = a;
this.j("Height");
}
get background() {
return this.aaa;
}
set background(a) {
this.aaa = a;
this.j("Background");
}
}
DataPieChartDescription.$t = markType(DataPieChartDescription, 'DataPieChartDescription', DataPieBaseChartDescription.$);
return DataPieChartDescription;
})();