igniteui-react-core
Version:
Ignite UI React Core.
48 lines (47 loc) • 1.56 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 { PieChartBaseDescription } from "./PieChartBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let PieChartDescription = /*@__PURE__*/ (() => {
class PieChartDescription extends PieChartBaseDescription {
get width() {
return this.dz;
}
set width(a) {
this.dz = a;
this.g("Width");
}
get height() {
return this.dy;
}
set height(a) {
this.dy = a;
this.g("Height");
}
get background() {
return this.dx;
}
set background(a) {
this.dx = a;
this.g("Background");
}
get_type() {
return "PieChart";
}
constructor() {
super();
this.dz = null;
this.dy = null;
this.dx = null;
}
}
PieChartDescription.$t = /*@__PURE__*/ markType(PieChartDescription, 'PieChartDescription', PieChartBaseDescription.$);
return PieChartDescription;
})();