UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

128 lines (127 loc) 4.24 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 FinalValueLayerDescription = /*@__PURE__*/ (() => { class FinalValueLayerDescription extends AnnotationLayerDescription { constructor() { super(); this.dx = null; this.dy = null; this.dw = null; this.dv = null; this.dt = null; this.de = 0; this.dr = 0; this.du = null; this.dg = 0; this.di = 0; this.dh = 0; this.df = 0; this.dj = 0; } get_type() { return "FinalValueLayer"; } get targetSeriesName() { return this.dx; } set targetSeriesName(a) { this.dx = a; this.e("TargetSeriesName"); } get targetSeriesRef() { return this.dy; } set targetSeriesRef(a) { this.dy = a; this.e("TargetSeriesRef"); } get finalValueSelectionMode() { return this.dw; } set finalValueSelectionMode(a) { this.dw = a; this.e("FinalValueSelectionMode"); } get axisAnnotationTextColor() { return this.dv; } set axisAnnotationTextColor(a) { this.dv = a; this.e("AxisAnnotationTextColor"); } get axisAnnotationBackground() { return this.dt; } set axisAnnotationBackground(a) { this.dt = a; this.e("AxisAnnotationBackground"); } get axisAnnotationBackgroundCornerRadius() { return this.de; } set axisAnnotationBackgroundCornerRadius(a) { this.de = a; this.e("AxisAnnotationBackgroundCornerRadius"); } get axisAnnotationInterpolatedValuePrecision() { return this.dr; } set axisAnnotationInterpolatedValuePrecision(a) { this.dr = a; this.e("AxisAnnotationInterpolatedValuePrecision"); } get axisAnnotationOutline() { return this.du; } set axisAnnotationOutline(a) { this.du = a; this.e("AxisAnnotationOutline"); } get axisAnnotationPaddingLeft() { return this.dg; } set axisAnnotationPaddingLeft(a) { this.dg = a; this.e("AxisAnnotationPaddingLeft"); } get axisAnnotationPaddingTop() { return this.di; } set axisAnnotationPaddingTop(a) { this.di = a; this.e("AxisAnnotationPaddingTop"); } get axisAnnotationPaddingRight() { return this.dh; } set axisAnnotationPaddingRight(a) { this.dh = a; this.e("AxisAnnotationPaddingRight"); } get axisAnnotationPaddingBottom() { return this.df; } set axisAnnotationPaddingBottom(a) { this.df = a; this.e("AxisAnnotationPaddingBottom"); } get axisAnnotationStrokeThickness() { return this.dj; } set axisAnnotationStrokeThickness(a) { this.dj = a; this.e("AxisAnnotationStrokeThickness"); } } FinalValueLayerDescription.$t = markType(FinalValueLayerDescription, 'FinalValueLayerDescription', AnnotationLayerDescription.$); return FinalValueLayerDescription; })();