UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

50 lines (49 loc) 2.05 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.gh = null; _this.gf = false; return _this; } CategoryToolTipLayerDescription.prototype.get_type = function () { return "CategoryToolTipLayer"; }; Object.defineProperty(CategoryToolTipLayerDescription.prototype, "targetAxisRef", { get: function () { return this.gh; }, set: function (a) { this.gh = a; this.g("TargetAxisRef"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryToolTipLayerDescription.prototype, "useInterpolation", { get: function () { return this.gf; }, set: function (a) { this.gf = a; this.g("UseInterpolation"); }, enumerable: false, configurable: true }); CategoryToolTipLayerDescription.$t = markType(CategoryToolTipLayerDescription, 'CategoryToolTipLayerDescription', AnnotationLayerDescription.$); return CategoryToolTipLayerDescription; }(AnnotationLayerDescription)); export { CategoryToolTipLayerDescription };