UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

86 lines (85 loc) 3.02 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 { SeriesDescription } from "./SeriesDescription"; import { markType } from "./type"; /** * @hidden */ var AnnotationLayerDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(AnnotationLayerDescription, _super); function AnnotationLayerDescription() { var _this = _super.call(this) || this; _this.c8 = false; _this.c9 = false; _this.c4 = null; _this.c6 = false; _this.c7 = false; return _this; } AnnotationLayerDescription.prototype.get_type = function () { return "AnnotationLayer"; }; Object.defineProperty(AnnotationLayerDescription.prototype, "useIndex", { get: function () { return this.c8; }, set: function (a) { this.c8 = a; this.e("UseIndex"); }, enumerable: false, configurable: true }); Object.defineProperty(AnnotationLayerDescription.prototype, "useLegend", { get: function () { return this.c9; }, set: function (a) { this.c9 = a; this.e("UseLegend"); }, enumerable: false, configurable: true }); Object.defineProperty(AnnotationLayerDescription.prototype, "cursorPosition", { get: function () { return this.c4; }, set: function (a) { this.c4 = a; this.e("CursorPosition"); }, enumerable: false, configurable: true }); Object.defineProperty(AnnotationLayerDescription.prototype, "isDefaultCrosshairDisabled", { get: function () { return this.c6; }, set: function (a) { this.c6 = a; this.e("IsDefaultCrosshairDisabled"); }, enumerable: false, configurable: true }); Object.defineProperty(AnnotationLayerDescription.prototype, "shouldRenderAsOverlay", { get: function () { return this.c7; }, set: function (a) { this.c7 = a; this.e("ShouldRenderAsOverlay"); }, enumerable: false, configurable: true }); AnnotationLayerDescription.$t = markType(AnnotationLayerDescription, 'AnnotationLayerDescription', SeriesDescription.$); return AnnotationLayerDescription; }(SeriesDescription)); export { AnnotationLayerDescription };