igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
56 lines (55 loc) • 1.99 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 {
constructor() {
super();
this.hi = 0;
this.hm = null;
this.hj = 0;
this.hn = null;
}
get_type() {
return "NumericAngleAxis";
}
get companionAxisStartAngleOffset() {
return this.hi;
}
set companionAxisStartAngleOffset(a) {
this.hi = a;
this.j("CompanionAxisStartAngleOffset");
}
get companionAxisLabelMode() {
return this.hm;
}
set companionAxisLabelMode(a) {
this.hm = a;
this.j("CompanionAxisLabelMode");
}
get startAngleOffset() {
return this.hj;
}
set startAngleOffset(a) {
this.hj = a;
this.j("StartAngleOffset");
}
get labelMode() {
return this.hn;
}
set labelMode(a) {
this.hn = a;
this.j("LabelMode");
}
}
NumericAngleAxisDescription.$t = markType(NumericAngleAxisDescription, 'NumericAngleAxisDescription', NumericAxisBaseDescription.$);
return NumericAngleAxisDescription;
})();