igniteui-react-core
Version:
Ignite UI React Core.
136 lines (135 loc) • 4.37 kB
JavaScript
/*
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.gy = null;
this.gz = null;
this.gx = null;
this.gw = null;
this.gt = null;
this.gf = 0;
this.gr = 0;
this.gv = null;
this.gh = 0;
this.gj = 0;
this.gi = 0;
this.gg = 0;
this.gk = 0;
this.gu = null;
}
get targetSeriesName() {
return this.gy;
}
set targetSeriesName(a) {
this.gy = a;
this.g("TargetSeriesName");
}
get targetSeriesRef() {
return this.gz;
}
set targetSeriesRef(a) {
this.gz = a;
this.g("TargetSeriesRef");
}
get finalValueSelectionMode() {
return this.gx;
}
set finalValueSelectionMode(a) {
this.gx = a;
this.g("FinalValueSelectionMode");
}
get axisAnnotationTextColor() {
return this.gw;
}
set axisAnnotationTextColor(a) {
this.gw = a;
this.g("AxisAnnotationTextColor");
}
get axisAnnotationBackground() {
return this.gt;
}
set axisAnnotationBackground(a) {
this.gt = a;
this.g("AxisAnnotationBackground");
}
get axisAnnotationBackgroundCornerRadius() {
return this.gf;
}
set axisAnnotationBackgroundCornerRadius(a) {
this.gf = a;
this.g("AxisAnnotationBackgroundCornerRadius");
}
get axisAnnotationInterpolatedValuePrecision() {
return this.gr;
}
set axisAnnotationInterpolatedValuePrecision(a) {
this.gr = a;
this.g("AxisAnnotationInterpolatedValuePrecision");
}
get axisAnnotationOutline() {
return this.gv;
}
set axisAnnotationOutline(a) {
this.gv = a;
this.g("AxisAnnotationOutline");
}
get axisAnnotationPaddingLeft() {
return this.gh;
}
set axisAnnotationPaddingLeft(a) {
this.gh = a;
this.g("AxisAnnotationPaddingLeft");
}
get axisAnnotationPaddingTop() {
return this.gj;
}
set axisAnnotationPaddingTop(a) {
this.gj = a;
this.g("AxisAnnotationPaddingTop");
}
get axisAnnotationPaddingRight() {
return this.gi;
}
set axisAnnotationPaddingRight(a) {
this.gi = a;
this.g("AxisAnnotationPaddingRight");
}
get axisAnnotationPaddingBottom() {
return this.gg;
}
set axisAnnotationPaddingBottom(a) {
this.gg = a;
this.g("AxisAnnotationPaddingBottom");
}
get axisAnnotationStrokeThickness() {
return this.gk;
}
set axisAnnotationStrokeThickness(a) {
this.gk = a;
this.g("AxisAnnotationStrokeThickness");
}
get axisAnnotationFormatLabelRef() {
return this.gu;
}
set axisAnnotationFormatLabelRef(a) {
this.gu = a;
this.g("AxisAnnotationFormatLabelRef");
}
}
FinalValueLayerDescription.$t = /*@__PURE__*/ markType(FinalValueLayerDescription, 'FinalValueLayerDescription', AnnotationLayerDescription.$);
return FinalValueLayerDescription;
})();