UNPKG

igniteui-react-core

Version:
56 lines (55 loc) 2.04 kB
/* 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 { get_type() { return "ProportionalCategoryAngleAxis"; } constructor() { super(); this.gu = null; this.gq = 0; this.gt = null; this.gs = null; } get valueMemberPath() { return this.gu; } set valueMemberPath(a) { this.gu = a; this.j("ValueMemberPath"); } get othersCategoryThreshold() { return this.gq; } set othersCategoryThreshold(a) { this.gq = a; this.j("OthersCategoryThreshold"); } get othersCategoryType() { return this.gt; } set othersCategoryType(a) { this.gt = a; this.j("OthersCategoryType"); } get othersCategoryText() { return this.gs; } set othersCategoryText(a) { this.gs = a; this.j("OthersCategoryText"); } } ProportionalCategoryAngleAxisDescription.$t = /*@__PURE__*/ markType(ProportionalCategoryAngleAxisDescription, 'ProportionalCategoryAngleAxisDescription', CategoryAngleAxisDescription.$); return ProportionalCategoryAngleAxisDescription; })();