UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

62 lines (61 loc) 2.44 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 CategoryHighlightLayerDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(CategoryHighlightLayerDescription, _super); function CategoryHighlightLayerDescription() { var _this = _super.call(this) || this; _this.gq = null; _this.gm = false; _this.go = 0; return _this; } CategoryHighlightLayerDescription.prototype.get_type = function () { return "CategoryHighlightLayer"; }; Object.defineProperty(CategoryHighlightLayerDescription.prototype, "targetAxisRef", { get: function () { return this.gq; }, set: function (a) { this.gq = a; this.j("TargetAxisRef"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryHighlightLayerDescription.prototype, "useInterpolation", { get: function () { return this.gm; }, set: function (a) { this.gm = a; this.j("UseInterpolation"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryHighlightLayerDescription.prototype, "bandHighlightWidth", { get: function () { return this.go; }, set: function (a) { this.go = a; this.j("BandHighlightWidth"); }, enumerable: false, configurable: true }); CategoryHighlightLayerDescription.$t = markType(CategoryHighlightLayerDescription, 'CategoryHighlightLayerDescription', AnnotationLayerDescription.$); return CategoryHighlightLayerDescription; }(AnnotationLayerDescription)); export { CategoryHighlightLayerDescription };