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.
Asked
Active
Viewed 778 times
1 Answers
0
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;
}

Community
- 1
- 1

Juan Pablo Fernandez
- 2,408
- 3
- 18
- 32