UNPKG

igniteui-react-core

Version:
48 lines (47 loc) 1.75 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 { AnnotationLayerDescription } from "./AnnotationLayerDescription"; import { markType } from "./type"; /** * @hidden */ export let CategoryHighlightLayerDescription = /*@__PURE__*/ (() => { class CategoryHighlightLayerDescription extends AnnotationLayerDescription { get_type() { return "CategoryHighlightLayer"; } constructor() { super(); this.gj = null; this.gf = false; this.gh = 0; } get targetAxisRef() { return this.gj; } set targetAxisRef(a) { this.gj = a; this.g("TargetAxisRef"); } get useInterpolation() { return this.gf; } set useInterpolation(a) { this.gf = a; this.g("UseInterpolation"); } get bandHighlightWidth() { return this.gh; } set bandHighlightWidth(a) { this.gh = a; this.g("BandHighlightWidth"); } } CategoryHighlightLayerDescription.$t = /*@__PURE__*/ markType(CategoryHighlightLayerDescription, 'CategoryHighlightLayerDescription', AnnotationLayerDescription.$); return CategoryHighlightLayerDescription; })();