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.et = null;
this.ep = 0;
this.es = null;
this.er = null;
}
get_type() {
return "ProportionalCategoryAngleAxis";
}
get valueMemberPath() {
return this.et;
}
set valueMemberPath(a) {
this.et = a;
this.g("ValueMemberPath");
}
get othersCategoryThreshold() {
return this.ep;
}
set othersCategoryThreshold(a) {
this.ep = a;
this.g("OthersCategoryThreshold");
}
get othersCategoryType() {
return this.es;
}
set othersCategoryType(a) {
this.es = a;
this.g("OthersCategoryType");
}
get othersCategoryText() {
return this.er;
}
set othersCategoryText(a) {
this.er = a;
this.g("OthersCategoryText");
}
}
ProportionalCategoryAngleAxisDescription.$t = markType(ProportionalCategoryAngleAxisDescription, 'ProportionalCategoryAngleAxisDescription', CategoryAngleAxisDescription.$);
return ProportionalCategoryAngleAxisDescription;
})();