igniteui-react-core
Version:
Ignite UI React Core.
40 lines (39 loc) • 1.52 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 CategoryToolTipLayerDescription = /*@__PURE__*/ (() => {
class CategoryToolTipLayerDescription extends AnnotationLayerDescription {
get_type() {
return "CategoryToolTipLayer";
}
constructor() {
super();
this.gh = null;
this.gf = false;
}
get targetAxisRef() {
return this.gh;
}
set targetAxisRef(a) {
this.gh = a;
this.g("TargetAxisRef");
}
get useInterpolation() {
return this.gf;
}
set useInterpolation(a) {
this.gf = a;
this.g("UseInterpolation");
}
}
CategoryToolTipLayerDescription.$t = /*@__PURE__*/ markType(CategoryToolTipLayerDescription, 'CategoryToolTipLayerDescription', AnnotationLayerDescription.$);
return CategoryToolTipLayerDescription;
})();