UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

104 lines (103 loc) 3.28 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 CategoryItemHighlightLayerDescription = /*@__PURE__*/ (() => { class CategoryItemHighlightLayerDescription extends AnnotationLayerDescription { constructor() { super(); this.gr = null; this.gq = null; this.gg = false; this.gl = null; this.gp = null; this.gm = null; this.gn = null; this.go = null; this.gj = 0; this.gf = false; } get_type() { return "CategoryItemHighlightLayer"; } get targetSeriesRef() { return this.gr; } set targetSeriesRef(a) { this.gr = a; this.g("TargetSeriesRef"); } get targetSeriesName() { return this.gq; } set targetSeriesName(a) { this.gq = a; this.g("TargetSeriesName"); } get useInterpolation() { return this.gg; } set useInterpolation(a) { this.gg = a; this.g("UseInterpolation"); } get highlightType() { return this.gl; } set highlightType(a) { this.gl = a; this.g("HighlightType"); } get markerType() { return this.gp; } set markerType(a) { this.gp = a; this.g("MarkerType"); } get markerBrush() { return this.gm; } set markerBrush(a) { this.gm = a; this.g("MarkerBrush"); } get markerOutline() { return this.gn; } set markerOutline(a) { this.gn = a; this.g("MarkerOutline"); } get markerTemplateRef() { return this.go; } set markerTemplateRef(a) { this.go = a; this.g("MarkerTemplateRef"); } get bandHighlightWidth() { return this.gj; } set bandHighlightWidth(a) { this.gj = a; this.g("BandHighlightWidth"); } get skipUnknownValues() { return this.gf; } set skipUnknownValues(a) { this.gf = a; this.g("SkipUnknownValues"); } } CategoryItemHighlightLayerDescription.$t = markType(CategoryItemHighlightLayerDescription, 'CategoryItemHighlightLayerDescription', AnnotationLayerDescription.$); return CategoryItemHighlightLayerDescription; })();