igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
146 lines (145 loc) • 5.02 kB
JavaScript
/*
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.dr = null;
_this.dq = null;
_this.df = false;
_this.dk = null;
_this.dp = null;
_this.dl = null;
_this.dm = null;
_this.dn = null;
_this.di = 0;
_this.de = false;
return _this;
}
CategoryItemHighlightLayerDescription.prototype.get_type = function () {
return "CategoryItemHighlightLayer";
};
Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "targetSeriesRef", {
get: function () {
return this.dr;
},
set: function (a) {
this.dr = a;
this.e("TargetSeriesRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "targetSeriesName", {
get: function () {
return this.dq;
},
set: function (a) {
this.dq = a;
this.e("TargetSeriesName");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "useInterpolation", {
get: function () {
return this.df;
},
set: function (a) {
this.df = a;
this.e("UseInterpolation");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "highlightType", {
get: function () {
return this.dk;
},
set: function (a) {
this.dk = a;
this.e("HighlightType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "markerType", {
get: function () {
return this.dp;
},
set: function (a) {
this.dp = a;
this.e("MarkerType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "markerBrush", {
get: function () {
return this.dl;
},
set: function (a) {
this.dl = a;
this.e("MarkerBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "markerOutline", {
get: function () {
return this.dm;
},
set: function (a) {
this.dm = a;
this.e("MarkerOutline");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "markerTemplateRef", {
get: function () {
return this.dn;
},
set: function (a) {
this.dn = a;
this.e("MarkerTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "bandHighlightWidth", {
get: function () {
return this.di;
},
set: function (a) {
this.di = a;
this.e("BandHighlightWidth");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "skipUnknownValues", {
get: function () {
return this.de;
},
set: function (a) {
this.de = a;
this.e("SkipUnknownValues");
},
enumerable: false,
configurable: true
});
CategoryItemHighlightLayerDescription.$t = markType(CategoryItemHighlightLayerDescription, 'CategoryItemHighlightLayerDescription', AnnotationLayerDescription.$);
return CategoryItemHighlightLayerDescription;
}(AnnotationLayerDescription));
export { CategoryItemHighlightLayerDescription };