igniteui-react-core
Version:
Ignite UI React Core.
40 lines (39 loc) • 1.48 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 { NumericAxisBaseDescription } from "./NumericAxisBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let NumericAngleAxisDescription = /*@__PURE__*/ (() => {
class NumericAngleAxisDescription extends NumericAxisBaseDescription {
get_type() {
return "NumericAngleAxis";
}
constructor() {
super();
this.e7 = 0;
this.e9 = null;
}
get startAngleOffset() {
return this.e7;
}
set startAngleOffset(a) {
this.e7 = a;
this.g("StartAngleOffset");
}
get labelMode() {
return this.e9;
}
set labelMode(a) {
this.e9 = a;
this.g("LabelMode");
}
}
NumericAngleAxisDescription.$t = /*@__PURE__*/ markType(NumericAngleAxisDescription, 'NumericAngleAxisDescription', NumericAxisBaseDescription.$);
return NumericAngleAxisDescription;
})();