igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
72 lines (71 loc) • 2.53 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 UserAnnotationLayerDescription = /*@__PURE__*/ (() => {
class UserAnnotationLayerDescription extends SeriesDescription {
constructor() {
super();
this.fa = null;
this.fg = null;
this.fc = null;
this.fe = null;
this.ff = null;
this.fd = null;
}
get_type() {
return "UserAnnotationLayer";
}
get annotations() {
return this.fa;
}
set annotations(a) {
this.fa = a;
this.j("Annotations");
}
get userAnnotationInformationRequestedRef() {
return this.fg;
}
set userAnnotationInformationRequestedRef(a) {
this.fg = a;
this.j("UserAnnotationInformationRequestedRef");
}
get stylingAxisAnnotationRef() {
return this.fc;
}
set stylingAxisAnnotationRef(a) {
this.fc = a;
this.j("StylingAxisAnnotationRef");
}
get stylingSliceAnnotationRef() {
return this.fe;
}
set stylingSliceAnnotationRef(a) {
this.fe = a;
this.j("StylingSliceAnnotationRef");
}
get stylingStripAnnotationRef() {
return this.ff;
}
set stylingStripAnnotationRef(a) {
this.ff = a;
this.j("StylingStripAnnotationRef");
}
get stylingPointAnnotationRef() {
return this.fd;
}
set stylingPointAnnotationRef(a) {
this.fd = a;
this.j("StylingPointAnnotationRef");
}
}
UserAnnotationLayerDescription.$t = markType(UserAnnotationLayerDescription, 'UserAnnotationLayerDescription', SeriesDescription.$);
return UserAnnotationLayerDescription;
})();