Skip to main content
Skip table of contents

How to hide the summary and assignee name from the chart?

Question

I’m trying to hide the assignee name from my WBS Gantt-Chart screen. Is this possible?

Answer

At the moment, there's no option to remove the summary and assignee name next to the Gantt bar.

Since the feature is not available at the moment, we have a suggestion raised for our development team on our Productboard and can be checked at the URL below:

In order to receive updates regarding the feature, please vote for it by clicking either [NICE-TO-HAVE] or [IMPORTANT] or [CRITICAL], enter your feedback and Email address, then Submit.

There's a workaround for this feature that consists in adding a CSS code to Jira's Announcement Banner:


Code for hiding the assignee name:

CSS
<style>

.sch-gantt-labelct-right {

      visibility:hidden;

    }

</style>

Code for hiding the summary:

CSS
<style>

.sch-gantt-labelct-left {

      visibility:hidden;

    }

</style>

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.