UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

256 lines (255 loc) 8.14 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 CrosshairLayerDescription = /*@__PURE__*/ (() => { class CrosshairLayerDescription extends AnnotationLayerDescription { constructor() { super(); this.ed = null; this.eh = null; this.ef = null; this.eg = null; this.dg = false; this.de = false; this.el = null; this.ej = null; this.dk = 0; this.d9 = 0; this.ek = null; this.dm = 0; this.dp = 0; this.dn = 0; this.dl = 0; this.dt = 0; this.dv = 0; this.du = 0; this.ds = 0; this.dq = 0; this.eo = null; this.em = null; this.dr = 0; this.ea = 0; this.en = null; this.dw = 0; this.ei = null; this.ee = null; this.df = false; } get_type() { return "CrosshairLayer"; } get horizontalLineStroke() { return this.ed; } set horizontalLineStroke(a) { this.ed = a; this.e("HorizontalLineStroke"); } get verticalLineStroke() { return this.eh; } set verticalLineStroke(a) { this.eh = a; this.e("VerticalLineStroke"); } get targetSeriesName() { return this.ef; } set targetSeriesName(a) { this.ef = a; this.e("TargetSeriesName"); } get targetSeriesRef() { return this.eg; } set targetSeriesRef(a) { this.eg = a; this.e("TargetSeriesRef"); } get useInterpolation() { return this.dg; } set useInterpolation(a) { this.dg = a; this.e("UseInterpolation"); } get isAxisAnnotationEnabled() { return this.de; } set isAxisAnnotationEnabled(a) { this.de = a; this.e("IsAxisAnnotationEnabled"); } get xAxisAnnotationTextColor() { return this.el; } set xAxisAnnotationTextColor(a) { this.el = a; this.e("XAxisAnnotationTextColor"); } get xAxisAnnotationBackground() { return this.ej; } set xAxisAnnotationBackground(a) { this.ej = a; this.e("XAxisAnnotationBackground"); } get xAxisAnnotationBackgroundCornerRadius() { return this.dk; } set xAxisAnnotationBackgroundCornerRadius(a) { this.dk = a; this.e("XAxisAnnotationBackgroundCornerRadius"); } get xAxisAnnotationInterpolatedValuePrecision() { return this.d9; } set xAxisAnnotationInterpolatedValuePrecision(a) { this.d9 = a; this.e("XAxisAnnotationInterpolatedValuePrecision"); } get xAxisAnnotationOutline() { return this.ek; } set xAxisAnnotationOutline(a) { this.ek = a; this.e("XAxisAnnotationOutline"); } get xAxisAnnotationPaddingLeft() { return this.dm; } set xAxisAnnotationPaddingLeft(a) { this.dm = a; this.e("XAxisAnnotationPaddingLeft"); } get xAxisAnnotationPaddingTop() { return this.dp; } set xAxisAnnotationPaddingTop(a) { this.dp = a; this.e("XAxisAnnotationPaddingTop"); } get xAxisAnnotationPaddingRight() { return this.dn; } set xAxisAnnotationPaddingRight(a) { this.dn = a; this.e("XAxisAnnotationPaddingRight"); } get xAxisAnnotationPaddingBottom() { return this.dl; } set xAxisAnnotationPaddingBottom(a) { this.dl = a; this.e("XAxisAnnotationPaddingBottom"); } get yAxisAnnotationPaddingLeft() { return this.dt; } set yAxisAnnotationPaddingLeft(a) { this.dt = a; this.e("YAxisAnnotationPaddingLeft"); } get yAxisAnnotationPaddingTop() { return this.dv; } set yAxisAnnotationPaddingTop(a) { this.dv = a; this.e("YAxisAnnotationPaddingTop"); } get yAxisAnnotationPaddingRight() { return this.du; } set yAxisAnnotationPaddingRight(a) { this.du = a; this.e("YAxisAnnotationPaddingRight"); } get yAxisAnnotationPaddingBottom() { return this.ds; } set yAxisAnnotationPaddingBottom(a) { this.ds = a; this.e("YAxisAnnotationPaddingBottom"); } get xAxisAnnotationStrokeThickness() { return this.dq; } set xAxisAnnotationStrokeThickness(a) { this.dq = a; this.e("XAxisAnnotationStrokeThickness"); } get yAxisAnnotationTextColor() { return this.eo; } set yAxisAnnotationTextColor(a) { this.eo = a; this.e("YAxisAnnotationTextColor"); } get yAxisAnnotationBackground() { return this.em; } set yAxisAnnotationBackground(a) { this.em = a; this.e("YAxisAnnotationBackground"); } get yAxisAnnotationBackgroundCornerRadius() { return this.dr; } set yAxisAnnotationBackgroundCornerRadius(a) { this.dr = a; this.e("YAxisAnnotationBackgroundCornerRadius"); } get yAxisAnnotationInterpolatedValuePrecision() { return this.ea; } set yAxisAnnotationInterpolatedValuePrecision(a) { this.ea = a; this.e("YAxisAnnotationInterpolatedValuePrecision"); } get yAxisAnnotationOutline() { return this.en; } set yAxisAnnotationOutline(a) { this.en = a; this.e("YAxisAnnotationOutline"); } get yAxisAnnotationStrokeThickness() { return this.dw; } set yAxisAnnotationStrokeThickness(a) { this.dw = a; this.e("YAxisAnnotationStrokeThickness"); } get verticalLineVisibility() { return this.ei; } set verticalLineVisibility(a) { this.ei = a; this.e("VerticalLineVisibility"); } get horizontalLineVisibility() { return this.ee; } set horizontalLineVisibility(a) { this.ee = a; this.e("HorizontalLineVisibility"); } get skipUnknownValues() { return this.df; } set skipUnknownValues(a) { this.df = a; this.e("SkipUnknownValues"); } } CrosshairLayerDescription.$t = markType(CrosshairLayerDescription, 'CrosshairLayerDescription', AnnotationLayerDescription.$); return CrosshairLayerDescription; })();