igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
80 lines (79 loc) • 2.63 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.gs = null;
this.gt = null;
this.gn = false;
this.gm = false;
this.gu = null;
this.gv = null;
this.gq = 0;
}
get_type() {
return "ItemToolTipLayer";
}
get targetSeriesName() {
return this.gs;
}
set targetSeriesName(a) {
this.gs = a;
this.j("TargetSeriesName");
}
get targetSeriesRef() {
return this.gt;
}
set targetSeriesRef(a) {
this.gt = a;
this.j("TargetSeriesRef");
}
get useInterpolation() {
return this.gn;
}
set useInterpolation(a) {
this.gn = a;
this.j("UseInterpolation");
}
get skipUnknownValues() {
return this.gm;
}
set skipUnknownValues(a) {
this.gm = a;
this.j("SkipUnknownValues");
}
get toolTipBackground() {
return this.gu;
}
set toolTipBackground(a) {
this.gu = a;
this.j("ToolTipBackground");
}
get toolTipBorderBrush() {
return this.gv;
}
set toolTipBorderBrush(a) {
this.gv = a;
this.j("ToolTipBorderBrush");
}
get toolTipBorderThickness() {
return this.gq;
}
set toolTipBorderThickness(a) {
this.gq = a;
this.j("ToolTipBorderThickness");
}
}
ItemToolTipLayerDescription.$t = markType(ItemToolTipLayerDescription, 'ItemToolTipLayerDescription', AnnotationLayerDescription.$);
return ItemToolTipLayerDescription;
})();