UNPKG

igniteui-react-core

Version:
56 lines (55 loc) 1.92 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 ItemToolTipLayerDescription = /*@__PURE__*/ (() => { class ItemToolTipLayerDescription extends AnnotationLayerDescription { get_type() { return "ItemToolTipLayer"; } constructor() { super(); this.gj = null; this.gk = null; this.gg = false; this.gf = false; } get targetSeriesName() { return this.gj; } set targetSeriesName(a) { this.gj = a; this.g("TargetSeriesName"); } get targetSeriesRef() { return this.gk; } set targetSeriesRef(a) { this.gk = a; this.g("TargetSeriesRef"); } get useInterpolation() { return this.gg; } set useInterpolation(a) { this.gg = a; this.g("UseInterpolation"); } get skipUnknownValues() { return this.gf; } set skipUnknownValues(a) { this.gf = a; this.g("SkipUnknownValues"); } } ItemToolTipLayerDescription.$t = /*@__PURE__*/ markType(ItemToolTipLayerDescription, 'ItemToolTipLayerDescription', AnnotationLayerDescription.$); return ItemToolTipLayerDescription; })();