igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
64 lines (63 loc) • 2.13 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 { SeriesDescription } from "./SeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let AnnotationLayerDescription = /*@__PURE__*/ (() => {
class AnnotationLayerDescription extends SeriesDescription {
constructor() {
super();
this.c8 = false;
this.c9 = false;
this.c4 = null;
this.c6 = false;
this.c7 = false;
}
get_type() {
return "AnnotationLayer";
}
get useIndex() {
return this.c8;
}
set useIndex(a) {
this.c8 = a;
this.e("UseIndex");
}
get useLegend() {
return this.c9;
}
set useLegend(a) {
this.c9 = a;
this.e("UseLegend");
}
get cursorPosition() {
return this.c4;
}
set cursorPosition(a) {
this.c4 = a;
this.e("CursorPosition");
}
get isDefaultCrosshairDisabled() {
return this.c6;
}
set isDefaultCrosshairDisabled(a) {
this.c6 = a;
this.e("IsDefaultCrosshairDisabled");
}
get shouldRenderAsOverlay() {
return this.c7;
}
set shouldRenderAsOverlay(a) {
this.c7 = a;
this.e("ShouldRenderAsOverlay");
}
}
AnnotationLayerDescription.$t = markType(AnnotationLayerDescription, 'AnnotationLayerDescription', SeriesDescription.$);
return AnnotationLayerDescription;
})();