Category / Section
How to remove tooltip for stripline from the Gantt chart
1 min read
In the Gantt, it is possible to remove the tooltip for the Gantt stripline. It can be achieved by customizing the strip line with the mouse pointer CSS. Please refer the following code example for this
<style> .e-ganttchart .e-stripline { pointer-events: none; } </style> |
A sample for disabling the tooltip for stripline is available here.