igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
104 lines (103 loc) • 3.28 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 { AnnotationLayerDescription } from "./AnnotationLayerDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let CategoryItemHighlightLayerDescription = /*@__PURE__*/ (() => {
class CategoryItemHighlightLayerDescription extends AnnotationLayerDescription {
constructor() {
super();
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;
}
get_type() {
return "CategoryItemHighlightLayer";
}
get targetSeriesRef() {
return this.gy;
}
set targetSeriesRef(a) {
this.gy = a;
this.j("TargetSeriesRef");
}
get targetSeriesName() {
return this.gx;
}
set targetSeriesName(a) {
this.gx = a;
this.j("TargetSeriesName");
}
get useInterpolation() {
return this.gn;
}
set useInterpolation(a) {
this.gn = a;
this.j("UseInterpolation");
}
get highlightType() {
return this.gs;
}
set highlightType(a) {
this.gs = a;
this.j("HighlightType");
}
get markerType() {
return this.gw;
}
set markerType(a) {
this.gw = a;
this.j("MarkerType");
}
get markerBrush() {
return this.gt;
}
set markerBrush(a) {
this.gt = a;
this.j("MarkerBrush");
}
get markerOutline() {
return this.gu;
}
set markerOutline(a) {
this.gu = a;
this.j("MarkerOutline");
}
get markerTemplateRef() {
return this.gv;
}
set markerTemplateRef(a) {
this.gv = a;
this.j("MarkerTemplateRef");
}
get bandHighlightWidth() {
return this.gq;
}
set bandHighlightWidth(a) {
this.gq = a;
this.j("BandHighlightWidth");
}
get skipUnknownValues() {
return this.gm;
}
set skipUnknownValues(a) {
this.gm = a;
this.j("SkipUnknownValues");
}
}
CategoryItemHighlightLayerDescription.$t = markType(CategoryItemHighlightLayerDescription, 'CategoryItemHighlightLayerDescription', AnnotationLayerDescription.$);
return CategoryItemHighlightLayerDescription;
})();