igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
112 lines (111 loc) • 3.53 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 { CategoryAxisBaseDescription } from "./CategoryAxisBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let CategoryAngleAxisDescription = /*@__PURE__*/ (() => {
class CategoryAngleAxisDescription extends CategoryAxisBaseDescription {
constructor() {
super();
this.f4 = 0;
this.f5 = 0;
this.f6 = 0;
this.gj = null;
this.f9 = 0;
this.gk = null;
this.f7 = 0;
this.f2 = 0;
this.f8 = 0;
this.f3 = 0;
this.gi = null;
}
get_type() {
return "CategoryAngleAxis";
}
get companionAxisInterval() {
return this.f4;
}
set companionAxisInterval(a) {
this.f4 = a;
this.j("CompanionAxisInterval");
}
get companionAxisMinorInterval() {
return this.f5;
}
set companionAxisMinorInterval(a) {
this.f5 = a;
this.j("CompanionAxisMinorInterval");
}
get companionAxisStartAngleOffset() {
return this.f6;
}
set companionAxisStartAngleOffset(a) {
this.f6 = a;
this.j("CompanionAxisStartAngleOffset");
}
get companionAxisLabelMode() {
return this.gj;
}
set companionAxisLabelMode(a) {
this.gj = a;
this.j("CompanionAxisLabelMode");
}
get startAngleOffset() {
return this.f9;
}
set startAngleOffset(a) {
this.f9 = a;
this.j("StartAngleOffset");
}
get labelMode() {
return this.gk;
}
set labelMode(a) {
this.gk = a;
this.j("LabelMode");
}
get interval() {
return this.f7;
}
set interval(a) {
this.f7 = a;
this.j("Interval");
}
get actualInterval() {
return this.f2;
}
set actualInterval(a) {
this.f2 = a;
this.j("ActualInterval");
}
get minorInterval() {
return this.f8;
}
set minorInterval(a) {
this.f8 = a;
this.j("MinorInterval");
}
get actualMinorInterval() {
return this.f3;
}
set actualMinorInterval(a) {
this.f3 = a;
this.j("ActualMinorInterval");
}
get actualIntervalChangeRef() {
return this.gi;
}
set actualIntervalChangeRef(a) {
this.gi = a;
this.j("ActualIntervalChangeRef");
}
}
CategoryAngleAxisDescription.$t = markType(CategoryAngleAxisDescription, 'CategoryAngleAxisDescription', CategoryAxisBaseDescription.$);
return CategoryAngleAxisDescription;
})();