igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
56 lines (55 loc) • 1.96 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 ItemToolTipLayerDescription = /*@__PURE__*/ (() => {
class ItemToolTipLayerDescription extends AnnotationLayerDescription {
constructor() {
super();
this.di = null;
this.dj = null;
this.df = false;
this.de = false;
}
get_type() {
return "ItemToolTipLayer";
}
get targetSeriesName() {
return this.di;
}
set targetSeriesName(a) {
this.di = a;
this.e("TargetSeriesName");
}
get targetSeriesRef() {
return this.dj;
}
set targetSeriesRef(a) {
this.dj = a;
this.e("TargetSeriesRef");
}
get useInterpolation() {
return this.df;
}
set useInterpolation(a) {
this.df = a;
this.e("UseInterpolation");
}
get skipUnknownValues() {
return this.de;
}
set skipUnknownValues(a) {
this.de = a;
this.e("SkipUnknownValues");
}
}
ItemToolTipLayerDescription.$t = markType(ItemToolTipLayerDescription, 'ItemToolTipLayerDescription', AnnotationLayerDescription.$);
return ItemToolTipLayerDescription;
})();