0

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.

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

1 Answers1

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