UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

147 lines (146 loc) 4.17 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let TreemapNodeStylingEventArgsDescription = /*@__PURE__*/ (() => { class TreemapNodeStylingEventArgsDescription extends Description { constructor() { super(); this.y = 0; this.w = 0; this.ae = null; this.af = null; this.ah = null; this.ag = null; this.v = 0; this.ai = null; this.u = 0; this.q = false; this.m = null; this.k = null; this.o = false; this.p = false; this.x = 0; } get_type() { return "TreemapNodeStylingEventArgs"; } get type() { return this.get_type(); } get value() { return this.y; } set value(a) { this.y = a; this.j("Value"); } get sum() { return this.w; } set sum(a) { this.w = a; this.j("Sum"); } get customValueRef() { return this.ae; } set customValueRef(a) { this.ae = a; this.j("CustomValueRef"); } get itemRef() { return this.af; } set itemRef(a) { this.af = a; this.j("ItemRef"); } get parentItemRef() { return this.ah; } set parentItemRef(a) { this.ah = a; this.j("ParentItemRef"); } get label() { return this.ag; } set label(a) { this.ag = a; this.j("Label"); } get parentValue() { return this.v; } set parentValue(a) { this.v = a; this.j("ParentValue"); } get parentLabel() { return this.ai; } set parentLabel(a) { this.ai = a; this.j("ParentLabel"); } get parentSum() { return this.u; } set parentSum(a) { this.u = a; this.j("ParentSum"); } get isParent() { return this.q; } set isParent(a) { this.q = a; this.j("IsParent"); } get style() { return this.m; } set style(a) { this.m = a; this.j("Style"); } get highlightingInfo() { return this.k; } set highlightingInfo(a) { this.k = a; this.j("HighlightingInfo"); } get highlightingHandled() { return this.o; } set highlightingHandled(a) { this.o = a; this.j("HighlightingHandled"); } get isHighlightInProgress() { return this.p; } set isHighlightInProgress(a) { this.p = a; this.j("IsHighlightInProgress"); } get totalHighlightProgress() { return this.x; } set totalHighlightProgress(a) { this.x = a; this.j("TotalHighlightProgress"); } } TreemapNodeStylingEventArgsDescription.$t = markType(TreemapNodeStylingEventArgsDescription, 'TreemapNodeStylingEventArgsDescription', Description.$); return TreemapNodeStylingEventArgsDescription; })();