UNPKG

igniteui-react-core

Version:
64 lines (63 loc) 2.08 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 { get_type() { return "TreemapNodeStyleMapping"; } constructor() { super(); this.a9 = null; this.a3 = 0; this.a2 = 0; this.a6 = null; this.a8 = null; } get targetType() { return this.a9; } set targetType(a) { this.a9 = a; this.g("TargetType"); } get minimumValue() { return this.a3; } set minimumValue(a) { this.a3 = a; this.g("MinimumValue"); } get maximumValue() { return this.a2; } set maximumValue(a) { this.a2 = a; this.g("MaximumValue"); } get value() { return this.a6; } set value(a) { this.a6 = a; this.g("Value"); } get mappingMode() { return this.a8; } set mappingMode(a) { this.a8 = a; this.g("MappingMode"); } } TreemapNodeStyleMappingDescription.$t = /*@__PURE__*/ markType(TreemapNodeStyleMappingDescription, 'TreemapNodeStyleMappingDescription', TreemapNodeStyleDescription.$); return TreemapNodeStyleMappingDescription; })();