We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

How to hide gantt tooltip?

Is there a way to hide the toolitp in ejGantt control?

For convenience I've attatched the tooltip that I want to hide on a screenshot.



3 Replies

JS Jonesherine Stephen Syncfusion Team April 1, 2016 10:17 AM UTC

Hi Michal,

Thanks for contacting Syncfusion support.

By setting the “showGridCellTooltip” as false we can hide the tooltip in Grid part.

In Gantt chart we can hide both taskbar tooltip and drag tooltip by setting the enableTaskbarTooltip” as false and “enableTaskbarDragTooltip” as false,

Please refer the following code snippet:

<div id="gantt"></div>    
    
    <script type="text/javascript">
        $("#gantt").ejGantt( {

                dataSource: projectData,

                //…

                showGridCellTooltip: false,

                enableTaskbarTooltip: false,

                enableTaskbarDragTooltip: false,

        });
    </script>


We have also prepared a sample for your reference. Please find the sample in the following URL.

Sample:  http://jsplayground.syncfusion.com/Sync_b5tscfc5

Please find our API reference in the following URL.

API Reference: http://help.syncfusion.com/js/api/ejgantt#members

Please find the Gantt demo samples in the following URL.

Demo: http://js.syncfusion.com/demos/web/#!/azure/gantt/defaultfunctionalities


Please let us know if you require further assistance on this.


Thanks,

Jone Sherine .P.S.



MC Michal Cywinski April 1, 2016 10:48 AM UTC

Thanks for a quick reply!

Your solution worked perfectly for me.

Thank you for your assistance,
Michał


JS Jonesherine Stephen Syncfusion Team April 4, 2016 12:35 PM UTC

Hi Michal,

Thanks for the Update.

Please let us know if you require further assistance on this.

Regards,

Jone Sherine .P.S.


Loader.
Live Chat Icon For mobile
Up arrow icon