igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
56 lines (55 loc) • 2.04 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 UserAnnotationToolTipLayerDescription = /*@__PURE__*/ (() => {
class UserAnnotationToolTipLayerDescription extends AnnotationLayerDescription {
constructor() {
super();
this.gp = null;
this.gq = null;
this.gm = false;
this.go = null;
}
get_type() {
return "UserAnnotationToolTipLayer";
}
get targetSeriesName() {
return this.gp;
}
set targetSeriesName(a) {
this.gp = a;
this.j("TargetSeriesName");
}
get targetSeriesRef() {
return this.gq;
}
set targetSeriesRef(a) {
this.gq = a;
this.j("TargetSeriesRef");
}
get skipUnknownValues() {
return this.gm;
}
set skipUnknownValues(a) {
this.gm = a;
this.j("SkipUnknownValues");
}
get contentUpdatingRef() {
return this.go;
}
set contentUpdatingRef(a) {
this.go = a;
this.j("ContentUpdatingRef");
}
}
UserAnnotationToolTipLayerDescription.$t = markType(UserAnnotationToolTipLayerDescription, 'UserAnnotationToolTipLayerDescription', AnnotationLayerDescription.$);
return UserAnnotationToolTipLayerDescription;
})();