igniteui-react-core
Version:
Ignite UI React Core.
194 lines (193 loc) • 6.3 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 { __extends } from "tslib";
import { AnnotationLayerDescription } from "./AnnotationLayerDescription";
import { markType } from "./type";
/**
* @hidden
*/
var FinalValueLayerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(FinalValueLayerDescription, _super);
function FinalValueLayerDescription() {
var _this = _super.call(this) || this;
_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;
return _this;
}
FinalValueLayerDescription.prototype.get_type = function () {
return "FinalValueLayer";
};
Object.defineProperty(FinalValueLayerDescription.prototype, "targetSeriesName", {
get: function () {
return this.gy;
},
set: function (a) {
this.gy = a;
this.g("TargetSeriesName");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinalValueLayerDescription.prototype, "targetSeriesRef", {
get: function () {
return this.gz;
},
set: function (a) {
this.gz = a;
this.g("TargetSeriesRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinalValueLayerDescription.prototype, "finalValueSelectionMode", {
get: function () {
return this.gx;
},
set: function (a) {
this.gx = a;
this.g("FinalValueSelectionMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinalValueLayerDescription.prototype, "axisAnnotationTextColor", {
get: function () {
return this.gw;
},
set: function (a) {
this.gw = a;
this.g("AxisAnnotationTextColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinalValueLayerDescription.prototype, "axisAnnotationBackground", {
get: function () {
return this.gt;
},
set: function (a) {
this.gt = a;
this.g("AxisAnnotationBackground");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinalValueLayerDescription.prototype, "axisAnnotationBackgroundCornerRadius", {
get: function () {
return this.gf;
},
set: function (a) {
this.gf = a;
this.g("AxisAnnotationBackgroundCornerRadius");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinalValueLayerDescription.prototype, "axisAnnotationInterpolatedValuePrecision", {
get: function () {
return this.gr;
},
set: function (a) {
this.gr = a;
this.g("AxisAnnotationInterpolatedValuePrecision");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinalValueLayerDescription.prototype, "axisAnnotationOutline", {
get: function () {
return this.gv;
},
set: function (a) {
this.gv = a;
this.g("AxisAnnotationOutline");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinalValueLayerDescription.prototype, "axisAnnotationPaddingLeft", {
get: function () {
return this.gh;
},
set: function (a) {
this.gh = a;
this.g("AxisAnnotationPaddingLeft");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinalValueLayerDescription.prototype, "axisAnnotationPaddingTop", {
get: function () {
return this.gj;
},
set: function (a) {
this.gj = a;
this.g("AxisAnnotationPaddingTop");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinalValueLayerDescription.prototype, "axisAnnotationPaddingRight", {
get: function () {
return this.gi;
},
set: function (a) {
this.gi = a;
this.g("AxisAnnotationPaddingRight");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinalValueLayerDescription.prototype, "axisAnnotationPaddingBottom", {
get: function () {
return this.gg;
},
set: function (a) {
this.gg = a;
this.g("AxisAnnotationPaddingBottom");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinalValueLayerDescription.prototype, "axisAnnotationStrokeThickness", {
get: function () {
return this.gk;
},
set: function (a) {
this.gk = a;
this.g("AxisAnnotationStrokeThickness");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinalValueLayerDescription.prototype, "axisAnnotationFormatLabelRef", {
get: function () {
return this.gu;
},
set: function (a) {
this.gu = a;
this.g("AxisAnnotationFormatLabelRef");
},
enumerable: false,
configurable: true
});
FinalValueLayerDescription.$t = markType(FinalValueLayerDescription, 'FinalValueLayerDescription', AnnotationLayerDescription.$);
return FinalValueLayerDescription;
}(AnnotationLayerDescription));
export { FinalValueLayerDescription };