igniteui-react-core
Version:
Ignite UI React Core.
146 lines (145 loc) • 4.88 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.gr = null;
_this.gq = null;
_this.gg = false;
_this.gl = null;
_this.gp = null;
_this.gm = null;
_this.gn = null;
_this.go = null;
_this.gj = 0;
_this.gf = false;
return _this;
}
CategoryItemHighlightLayerDescription.prototype.get_type = function () {
return "CategoryItemHighlightLayer";
};
Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "targetSeriesRef", {
get: function () {
return this.gr;
},
set: function (a) {
this.gr = a;
this.g("TargetSeriesRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "targetSeriesName", {
get: function () {
return this.gq;
},
set: function (a) {
this.gq = a;
this.g("TargetSeriesName");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "useInterpolation", {
get: function () {
return this.gg;
},
set: function (a) {
this.gg = a;
this.g("UseInterpolation");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "highlightType", {
get: function () {
return this.gl;
},
set: function (a) {
this.gl = a;
this.g("HighlightType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "markerType", {
get: function () {
return this.gp;
},
set: function (a) {
this.gp = a;
this.g("MarkerType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "markerBrush", {
get: function () {
return this.gm;
},
set: function (a) {
this.gm = a;
this.g("MarkerBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "markerOutline", {
get: function () {
return this.gn;
},
set: function (a) {
this.gn = a;
this.g("MarkerOutline");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "markerTemplateRef", {
get: function () {
return this.go;
},
set: function (a) {
this.go = a;
this.g("MarkerTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "bandHighlightWidth", {
get: function () {
return this.gj;
},
set: function (a) {
this.gj = a;
this.g("BandHighlightWidth");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryItemHighlightLayerDescription.prototype, "skipUnknownValues", {
get: function () {
return this.gf;
},
set: function (a) {
this.gf = a;
this.g("SkipUnknownValues");
},
enumerable: false,
configurable: true
});
CategoryItemHighlightLayerDescription.$t = markType(CategoryItemHighlightLayerDescription, 'CategoryItemHighlightLayerDescription', AnnotationLayerDescription.$);
return CategoryItemHighlightLayerDescription;
}(AnnotationLayerDescription));
export { CategoryItemHighlightLayerDescription };