UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

98 lines (97 loc) 3.5 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 CategoryToolTipLayerDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(CategoryToolTipLayerDescription, _super); function CategoryToolTipLayerDescription() { var _this = _super.call(this) || this; _this.gq = null; _this.gm = false; _this.gt = null; _this.gr = null; _this.gs = null; _this.go = 0; return _this; } CategoryToolTipLayerDescription.prototype.get_type = function () { return "CategoryToolTipLayer"; }; Object.defineProperty(CategoryToolTipLayerDescription.prototype, "targetAxisRef", { get: function () { return this.gq; }, set: function (a) { this.gq = a; this.j("TargetAxisRef"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryToolTipLayerDescription.prototype, "useInterpolation", { get: function () { return this.gm; }, set: function (a) { this.gm = a; this.j("UseInterpolation"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryToolTipLayerDescription.prototype, "toolTipPosition", { get: function () { return this.gt; }, set: function (a) { this.gt = a; this.j("ToolTipPosition"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryToolTipLayerDescription.prototype, "toolTipBackground", { get: function () { return this.gr; }, set: function (a) { this.gr = a; this.j("ToolTipBackground"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryToolTipLayerDescription.prototype, "toolTipBorderBrush", { get: function () { return this.gs; }, set: function (a) { this.gs = a; this.j("ToolTipBorderBrush"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryToolTipLayerDescription.prototype, "toolTipBorderThickness", { get: function () { return this.go; }, set: function (a) { this.go = a; this.j("ToolTipBorderThickness"); }, enumerable: false, configurable: true }); CategoryToolTipLayerDescription.$t = markType(CategoryToolTipLayerDescription, 'CategoryToolTipLayerDescription', AnnotationLayerDescription.$); return CategoryToolTipLayerDescription; }(AnnotationLayerDescription)); export { CategoryToolTipLayerDescription };