UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

182 lines (181 loc) 6.12 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 { __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.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; return _this; } FinalValueLayerDescription.prototype.get_type = function () { return "FinalValueLayer"; }; Object.defineProperty(FinalValueLayerDescription.prototype, "targetSeriesName", { get: function () { return this.dx; }, set: function (a) { this.dx = a; this.e("TargetSeriesName"); }, enumerable: false, configurable: true }); Object.defineProperty(FinalValueLayerDescription.prototype, "targetSeriesRef", { get: function () { return this.dy; }, set: function (a) { this.dy = a; this.e("TargetSeriesRef"); }, enumerable: false, configurable: true }); Object.defineProperty(FinalValueLayerDescription.prototype, "finalValueSelectionMode", { get: function () { return this.dw; }, set: function (a) { this.dw = a; this.e("FinalValueSelectionMode"); }, enumerable: false, configurable: true }); Object.defineProperty(FinalValueLayerDescription.prototype, "axisAnnotationTextColor", { get: function () { return this.dv; }, set: function (a) { this.dv = a; this.e("AxisAnnotationTextColor"); }, enumerable: false, configurable: true }); Object.defineProperty(FinalValueLayerDescription.prototype, "axisAnnotationBackground", { get: function () { return this.dt; }, set: function (a) { this.dt = a; this.e("AxisAnnotationBackground"); }, enumerable: false, configurable: true }); Object.defineProperty(FinalValueLayerDescription.prototype, "axisAnnotationBackgroundCornerRadius", { get: function () { return this.de; }, set: function (a) { this.de = a; this.e("AxisAnnotationBackgroundCornerRadius"); }, enumerable: false, configurable: true }); Object.defineProperty(FinalValueLayerDescription.prototype, "axisAnnotationInterpolatedValuePrecision", { get: function () { return this.dr; }, set: function (a) { this.dr = a; this.e("AxisAnnotationInterpolatedValuePrecision"); }, enumerable: false, configurable: true }); Object.defineProperty(FinalValueLayerDescription.prototype, "axisAnnotationOutline", { get: function () { return this.du; }, set: function (a) { this.du = a; this.e("AxisAnnotationOutline"); }, enumerable: false, configurable: true }); Object.defineProperty(FinalValueLayerDescription.prototype, "axisAnnotationPaddingLeft", { get: function () { return this.dg; }, set: function (a) { this.dg = a; this.e("AxisAnnotationPaddingLeft"); }, enumerable: false, configurable: true }); Object.defineProperty(FinalValueLayerDescription.prototype, "axisAnnotationPaddingTop", { get: function () { return this.di; }, set: function (a) { this.di = a; this.e("AxisAnnotationPaddingTop"); }, enumerable: false, configurable: true }); Object.defineProperty(FinalValueLayerDescription.prototype, "axisAnnotationPaddingRight", { get: function () { return this.dh; }, set: function (a) { this.dh = a; this.e("AxisAnnotationPaddingRight"); }, enumerable: false, configurable: true }); Object.defineProperty(FinalValueLayerDescription.prototype, "axisAnnotationPaddingBottom", { get: function () { return this.df; }, set: function (a) { this.df = a; this.e("AxisAnnotationPaddingBottom"); }, enumerable: false, configurable: true }); Object.defineProperty(FinalValueLayerDescription.prototype, "axisAnnotationStrokeThickness", { get: function () { return this.dj; }, set: function (a) { this.dj = a; this.e("AxisAnnotationStrokeThickness"); }, enumerable: false, configurable: true }); FinalValueLayerDescription.$t = markType(FinalValueLayerDescription, 'FinalValueLayerDescription', AnnotationLayerDescription.$); return FinalValueLayerDescription; }(AnnotationLayerDescription)); export { FinalValueLayerDescription };