UNPKG

igniteui-react-core

Version:
134 lines (133 loc) 4.62 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 { DataAnnotationShapeLayerDescription } from "./DataAnnotationShapeLayerDescription"; import { markType } from "./type"; /** * @hidden */ var DataAnnotationRangeLayerDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(DataAnnotationRangeLayerDescription, _super); function DataAnnotationRangeLayerDescription() { var _this = _super.call(this) || this; _this.jv = null; _this.jt = null; _this.ju = null; _this.js = null; _this.jq = null; _this.jr = null; _this.jp = null; _this.jn = null; _this.jo = null; return _this; } DataAnnotationRangeLayerDescription.prototype.get_type = function () { return "DataAnnotationRangeLayer"; }; Object.defineProperty(DataAnnotationRangeLayerDescription.prototype, "startLabelTextColor", { get: function () { return this.jv; }, set: function (a) { this.jv = a; this.g("StartLabelTextColor"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationRangeLayerDescription.prototype, "startLabelBackground", { get: function () { return this.jt; }, set: function (a) { this.jt = a; this.g("StartLabelBackground"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationRangeLayerDescription.prototype, "startLabelBorderColor", { get: function () { return this.ju; }, set: function (a) { this.ju = a; this.g("StartLabelBorderColor"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationRangeLayerDescription.prototype, "endLabelTextColor", { get: function () { return this.js; }, set: function (a) { this.js = a; this.g("EndLabelTextColor"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationRangeLayerDescription.prototype, "endLabelBackground", { get: function () { return this.jq; }, set: function (a) { this.jq = a; this.g("EndLabelBackground"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationRangeLayerDescription.prototype, "endLabelBorderColor", { get: function () { return this.jr; }, set: function (a) { this.jr = a; this.g("EndLabelBorderColor"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationRangeLayerDescription.prototype, "centerLabelTextColor", { get: function () { return this.jp; }, set: function (a) { this.jp = a; this.g("CenterLabelTextColor"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationRangeLayerDescription.prototype, "centerLabelBackground", { get: function () { return this.jn; }, set: function (a) { this.jn = a; this.g("CenterLabelBackground"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationRangeLayerDescription.prototype, "centerLabelBorderColor", { get: function () { return this.jo; }, set: function (a) { this.jo = a; this.g("CenterLabelBorderColor"); }, enumerable: false, configurable: true }); DataAnnotationRangeLayerDescription.$t = markType(DataAnnotationRangeLayerDescription, 'DataAnnotationRangeLayerDescription', DataAnnotationShapeLayerDescription.$); return DataAnnotationRangeLayerDescription; }(DataAnnotationShapeLayerDescription)); export { DataAnnotationRangeLayerDescription };