UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

146 lines (145 loc) 5.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 { AnnotationLayerDescription } from "./AnnotationLayerDescription"; import { markType } from "./type"; /** * @hidden */ var CategoryItemHighlightLayerDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(CategoryItemHighlightLayerDescription, _super); function CategoryItemHighlightLayerDescription() { var _this = _super.call(this) || this; _this.gy = null; _this.gx = null; _this.gn = false; _this.gs = null; _this.gw = null; _this.gt = null; _this.gu = null; _this.gv = null; _this.gq = 0; _this.gm = false; return _this; } CategoryItemHighlightLayerDescription.prototype.get_type = function () { return "CategoryItemHighlightLayer"; }; Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "targetSeriesRef", { get: function () { return this.gy; }, set: function (a) { this.gy = a; this.j("TargetSeriesRef"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "targetSeriesName", { get: function () { return this.gx; }, set: function (a) { this.gx = a; this.j("TargetSeriesName"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "useInterpolation", { get: function () { return this.gn; }, set: function (a) { this.gn = a; this.j("UseInterpolation"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "highlightType", { get: function () { return this.gs; }, set: function (a) { this.gs = a; this.j("HighlightType"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "markerType", { get: function () { return this.gw; }, set: function (a) { this.gw = a; this.j("MarkerType"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "markerBrush", { get: function () { return this.gt; }, set: function (a) { this.gt = a; this.j("MarkerBrush"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "markerOutline", { get: function () { return this.gu; }, set: function (a) { this.gu = a; this.j("MarkerOutline"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "markerTemplateRef", { get: function () { return this.gv; }, set: function (a) { this.gv = a; this.j("MarkerTemplateRef"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "bandHighlightWidth", { get: function () { return this.gq; }, set: function (a) { this.gq = a; this.j("BandHighlightWidth"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "skipUnknownValues", { get: function () { return this.gm; }, set: function (a) { this.gm = a; this.j("SkipUnknownValues"); }, enumerable: false, configurable: true }); CategoryItemHighlightLayerDescription.$t = markType(CategoryItemHighlightLayerDescription, 'CategoryItemHighlightLayerDescription', AnnotationLayerDescription.$); return CategoryItemHighlightLayerDescription; }(AnnotationLayerDescription)); export { CategoryItemHighlightLayerDescription };