UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

64 lines (63 loc) 2.13 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 { TreemapNodeStyleDescription } from "./TreemapNodeStyleDescription"; import { markType } from "./type"; /** * @hidden */ export let TreemapNodeStyleMappingDescription = /*@__PURE__*/ (() => { class TreemapNodeStyleMappingDescription extends TreemapNodeStyleDescription { constructor() { super(); this.a1 = null; this.av = 0; this.au = 0; this.ay = null; this.a0 = null; } get_type() { return "TreemapNodeStyleMapping"; } get targetType() { return this.a1; } set targetType(a) { this.a1 = a; this.e("TargetType"); } get minimumValue() { return this.av; } set minimumValue(a) { this.av = a; this.e("MinimumValue"); } get maximumValue() { return this.au; } set maximumValue(a) { this.au = a; this.e("MaximumValue"); } get value() { return this.ay; } set value(a) { this.ay = a; this.e("Value"); } get mappingMode() { return this.a0; } set mappingMode(a) { this.a0 = a; this.e("MappingMode"); } } TreemapNodeStyleMappingDescription.$t = markType(TreemapNodeStyleMappingDescription, 'TreemapNodeStyleMappingDescription', TreemapNodeStyleDescription.$); return TreemapNodeStyleMappingDescription; })();