igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
56 lines (55 loc) • 2.09 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 { CategoryAngleAxisDescription } from "./CategoryAngleAxisDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let ProportionalCategoryAngleAxisDescription = /*@__PURE__*/ (() => {
class ProportionalCategoryAngleAxisDescription extends CategoryAngleAxisDescription {
constructor() {
super();
this.gs = null;
this.go = 0;
this.gr = null;
this.gq = null;
}
get_type() {
return "ProportionalCategoryAngleAxis";
}
get valueMemberPath() {
return this.gs;
}
set valueMemberPath(a) {
this.gs = a;
this.j("ValueMemberPath");
}
get othersCategoryThreshold() {
return this.go;
}
set othersCategoryThreshold(a) {
this.go = a;
this.j("OthersCategoryThreshold");
}
get othersCategoryType() {
return this.gr;
}
set othersCategoryType(a) {
this.gr = a;
this.j("OthersCategoryType");
}
get othersCategoryText() {
return this.gq;
}
set othersCategoryText(a) {
this.gq = a;
this.j("OthersCategoryText");
}
}
ProportionalCategoryAngleAxisDescription.$t = markType(ProportionalCategoryAngleAxisDescription, 'ProportionalCategoryAngleAxisDescription', CategoryAngleAxisDescription.$);
return ProportionalCategoryAngleAxisDescription;
})();