igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
216 lines (215 loc) • 6.5 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.fp = false;
this.fq = false;
this.fk = null;
this.fm = false;
this.fn = false;
this.gc = null;
this.f8 = null;
this.f0 = 0;
this.fx = 0;
this.gd = null;
this.ga = null;
this.ge = null;
this.gb = null;
this.fz = 0;
this.fw = 0;
this.f1 = 0;
this.fy = 0;
this.fd = null;
this.fb = null;
this.fe = null;
this.fc = null;
this.fa = null;
this.f9 = null;
this.fo = false;
}
get_type() {
return "AnnotationLayer";
}
get useIndex() {
return this.fp;
}
set useIndex(a) {
this.fp = a;
this.j("UseIndex");
}
get useLegend() {
return this.fq;
}
set useLegend(a) {
this.fq = a;
this.j("UseLegend");
}
get cursorPosition() {
return this.fk;
}
set cursorPosition(a) {
this.fk = a;
this.j("CursorPosition");
}
get cursorPositionUpdatesOnMove() {
return this.fm;
}
set cursorPositionUpdatesOnMove(a) {
this.fm = a;
this.j("CursorPositionUpdatesOnMove");
}
get isDefaultCrosshairDisabled() {
return this.fn;
}
set isDefaultCrosshairDisabled(a) {
this.fn = a;
this.j("IsDefaultCrosshairDisabled");
}
get appearanceMode() {
return this.gc;
}
set appearanceMode(a) {
this.gc = a;
this.j("AppearanceMode");
}
get actualAppearanceMode() {
return this.f8;
}
set actualAppearanceMode(a) {
this.f8 = a;
this.j("ActualAppearanceMode");
}
get shiftAmount() {
return this.f0;
}
set shiftAmount(a) {
this.f0 = a;
this.j("ShiftAmount");
}
get actualShiftAmount() {
return this.fx;
}
set actualShiftAmount(a) {
this.fx = a;
this.j("ActualShiftAmount");
}
get horizontalAppearanceMode() {
return this.gd;
}
set horizontalAppearanceMode(a) {
this.gd = a;
this.j("HorizontalAppearanceMode");
}
get actualHorizontalAppearanceMode() {
return this.ga;
}
set actualHorizontalAppearanceMode(a) {
this.ga = a;
this.j("ActualHorizontalAppearanceMode");
}
get verticalAppearanceMode() {
return this.ge;
}
set verticalAppearanceMode(a) {
this.ge = a;
this.j("VerticalAppearanceMode");
}
get actualVerticalAppearanceMode() {
return this.gb;
}
set actualVerticalAppearanceMode(a) {
this.gb = a;
this.j("ActualVerticalAppearanceMode");
}
get horizontalShiftAmount() {
return this.fz;
}
set horizontalShiftAmount(a) {
this.fz = a;
this.j("HorizontalShiftAmount");
}
get actualHorizontalShiftAmount() {
return this.fw;
}
set actualHorizontalShiftAmount(a) {
this.fw = a;
this.j("ActualHorizontalShiftAmount");
}
get verticalShiftAmount() {
return this.f1;
}
set verticalShiftAmount(a) {
this.f1 = a;
this.j("VerticalShiftAmount");
}
get actualVerticalShiftAmount() {
return this.fy;
}
set actualVerticalShiftAmount(a) {
this.fy = a;
this.j("ActualVerticalShiftAmount");
}
get horizontalDashArray() {
return this.fd;
}
set horizontalDashArray(a) {
this.fd = a;
this.j("HorizontalDashArray");
}
get actualHorizontalDashArray() {
return this.fb;
}
set actualHorizontalDashArray(a) {
this.fb = a;
this.j("ActualHorizontalDashArray");
}
get verticalDashArray() {
return this.fe;
}
set verticalDashArray(a) {
this.fe = a;
this.j("VerticalDashArray");
}
get actualVerticalDashArray() {
return this.fc;
}
set actualVerticalDashArray(a) {
this.fc = a;
this.j("ActualVerticalDashArray");
}
get actualDashArray() {
return this.fa;
}
set actualDashArray(a) {
this.fa = a;
this.j("ActualDashArray");
}
get actualDashCap() {
return this.f9;
}
set actualDashCap(a) {
this.f9 = a;
this.j("ActualDashCap");
}
get shouldRenderAsOverlay() {
return this.fo;
}
set shouldRenderAsOverlay(a) {
this.fo = a;
this.j("ShouldRenderAsOverlay");
}
}
AnnotationLayerDescription.$t = markType(AnnotationLayerDescription, 'AnnotationLayerDescription', SeriesDescription.$);
return AnnotationLayerDescription;
})();