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.dr = null; this.dq = null; this.df = false; this.dk = null; this.dp = null; this.dl = null; this.dm = null; this.dn = null; this.di = 0; this.de = false; } get_type() { return "CategoryItemHighlightLayer"; } get targetSeriesRef() { return this.dr; } set targetSeriesRef(a) { this.dr = a; this.e("TargetSeriesRef"); } get targetSeriesName() { return this.dq; } set targetSeriesName(a) { this.dq = a; this.e("TargetSeriesName"); } get useInterpolation() { return this.df; } set useInterpolation(a) { this.df = a; this.e("UseInterpolation"); } get highlightType() { return this.dk; } set highlightType(a) { this.dk = a; this.e("HighlightType"); } get markerType() { return this.dp; } set markerType(a) { this.dp = a; this.e("MarkerType"); } get markerBrush() { return this.dl; } set markerBrush(a) { this.dl = a; this.e("MarkerBrush"); } get markerOutline() { return this.dm; } set markerOutline(a) { this.dm = a; this.e("MarkerOutline"); } get markerTemplateRef() { return this.dn; } set markerTemplateRef(a) { this.dn = a; this.e("MarkerTemplateRef"); } get bandHighlightWidth() { return this.di; } set bandHighlightWidth(a) { this.di = a; this.e("BandHighlightWidth"); } get skipUnknownValues() { return this.de; } set skipUnknownValues(a) { this.de = a; this.e("SkipUnknownValues"); } } CategoryItemHighlightLayerDescription.$t = markType(CategoryItemHighlightLayerDescription, 'CategoryItemHighlightLayerDescription', AnnotationLayerDescription.$); return CategoryItemHighlightLayerDescription; })();