version 2.7.0
Not sure if this is a bug or if I'm doing something wrong, but custom tooltips no longer show up on hover of a task after bumping @svar-ui/react-gantt to v2.7.0.
In my branch, I made a very simple custom tooltip to test:
type MyTooltipContentProps = { api: IApi; data: TooltipContentData };
function MyTooltipContent(props: MyTooltipContentProps) {
const { api, data } = props;
return <div>Hello</div>;
}
export default MyTooltipContent;
which is invoked like this:`
<Tooltip api={ganttApi} content={MyTooltipContent}>
<Gantt init={init} tasks={tasks} links={links} scales={scales} columns={columns} />
</Tooltip>
The online demo for Tooltips isn't showing any tooltips on hover of a task as well, which led me to wonder if this is a bug.
https://docs.svar.dev/react/gantt/samples/#/tooltips/willow
version 2.7.0
Not sure if this is a bug or if I'm doing something wrong, but custom tooltips no longer show up on hover of a task after bumping
@svar-ui/react-gantttov2.7.0.In my branch, I made a very simple custom tooltip to test:
which is invoked like this:`
The online demo for Tooltips isn't showing any tooltips on hover of a task as well, which led me to wonder if this is a bug.
https://docs.svar.dev/react/gantt/samples/#/tooltips/willow