UNPKG

igniteui-react-core

Version:
136 lines (135 loc) 4.37 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 { get_type() { return "FinalValueLayer"; } constructor() { super(); this.gs = null; this.gt = null; this.gr = null; this.gq = null; this.gn = null; this.f9 = 0; this.gl = 0; this.gp = null; this.gb = 0; this.gd = 0; this.gc = 0; this.ga = 0; this.ge = 0; this.go = null; } get targetSeriesName() { return this.gs; } set targetSeriesName(a) { this.gs = a; this.g("TargetSeriesName"); } get targetSeriesRef() { return this.gt; } set targetSeriesRef(a) { this.gt = a; this.g("TargetSeriesRef"); } get finalValueSelectionMode() { return this.gr; } set finalValueSelectionMode(a) { this.gr = a; this.g("FinalValueSelectionMode"); } get axisAnnotationTextColor() { return this.gq; } set axisAnnotationTextColor(a) { this.gq = a; this.g("AxisAnnotationTextColor"); } get axisAnnotationBackground() { return this.gn; } set axisAnnotationBackground(a) { this.gn = a; this.g("AxisAnnotationBackground"); } get axisAnnotationBackgroundCornerRadius() { return this.f9; } set axisAnnotationBackgroundCornerRadius(a) { this.f9 = a; this.g("AxisAnnotationBackgroundCornerRadius"); } get axisAnnotationInterpolatedValuePrecision() { return this.gl; } set axisAnnotationInterpolatedValuePrecision(a) { this.gl = a; this.g("AxisAnnotationInterpolatedValuePrecision"); } get axisAnnotationOutline() { return this.gp; } set axisAnnotationOutline(a) { this.gp = a; this.g("AxisAnnotationOutline"); } get axisAnnotationPaddingLeft() { return this.gb; } set axisAnnotationPaddingLeft(a) { this.gb = a; this.g("AxisAnnotationPaddingLeft"); } get axisAnnotationPaddingTop() { return this.gd; } set axisAnnotationPaddingTop(a) { this.gd = a; this.g("AxisAnnotationPaddingTop"); } get axisAnnotationPaddingRight() { return this.gc; } set axisAnnotationPaddingRight(a) { this.gc = a; this.g("AxisAnnotationPaddingRight"); } get axisAnnotationPaddingBottom() { return this.ga; } set axisAnnotationPaddingBottom(a) { this.ga = a; this.g("AxisAnnotationPaddingBottom"); } get axisAnnotationStrokeThickness() { return this.ge; } set axisAnnotationStrokeThickness(a) { this.ge = a; this.g("AxisAnnotationStrokeThickness"); } get axisAnnotationFormatLabelRef() { return this.go; } set axisAnnotationFormatLabelRef(a) { this.go = a; this.g("AxisAnnotationFormatLabelRef"); } } FinalValueLayerDescription.$t = /*@__PURE__*/ markType(FinalValueLayerDescription, 'FinalValueLayerDescription', AnnotationLayerDescription.$); return FinalValueLayerDescription; })();