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.bc = null; this.a6 = 0; this.a5 = 0; this.a9 = null; this.bb = null; } get_type() { return "TreemapNodeStyleMapping"; } get targetType() { return this.bc; } set targetType(a) { this.bc = a; this.j("TargetType"); } get minimumValue() { return this.a6; } set minimumValue(a) { this.a6 = a; this.j("MinimumValue"); } get maximumValue() { return this.a5; } set maximumValue(a) { this.a5 = a; this.j("MaximumValue"); } get value() { return this.a9; } set value(a) { this.a9 = a; this.j("Value"); } get mappingMode() { return this.bb; } set mappingMode(a) { this.bb = a; this.j("MappingMode"); } } TreemapNodeStyleMappingDescription.$t = markType(TreemapNodeStyleMappingDescription, 'TreemapNodeStyleMappingDescription', TreemapNodeStyleDescription.$); return TreemapNodeStyleMappingDescription; })();