Kendo UI Gantt - How to hide tooltip that shows up when you hover tasks

818 Views Asked by At

I need to hide tooltip that shows up when you hover tasks. The rectangular tooltip that includes task title, percentage complete, start and end date.

1

There are 1 best solutions below

0
Juan Pablo Fernandez On

The hard part was to inspect a tag that hides when mouse leaves. I followed the steps at Inspect element that only appear when other element is mouse overed/entered to inspect the element and come up with the following css rule:

.k-gantt-timeline .k-widget.k-tooltip {
display: none;
}