How to hide tasks on Gantt

Modified on Wed, 26 Feb at 5:37 PM

Sometimes you may find it useful to hide some tasks, based on dfferent conditions to keep your Gantt Chart clear. In this article, we will show you how to do it.


TABLE OF CONTENTS

Hide specific Work Items:


For example, you have a Gantt Chart showing dozens of User Stories, but some of them are already Verified, and you don't need to see them on a Gantt anymore. 


So to make it look nice and clean we can hide user stories that have the status 'verified'




To do so first, prepare a Gantt Chart, and then add a little snippet to the Item Script:


if(wi.getType().getId()==="userstory" && wi.getStatus().getId()==="verified"){
    task.hide=true;
}

     

As you can see now all verified user stories are hidden from the Gantt Chart.




Of course, work items do not need to be called the same, you can change all the parameters depending on your project configuration.



Note: please be aware of using only straight quotation marks "" and not lopsided “”



Hide specific Plans:


To achieve this functionality for Plans, use the following Item Script, which can be customized according to specific plan requirements and your project configuration:

 if (plan.getTemplate().getId() === "planTemplateID") {
   task.hide = true;
   }



Let's see how it works. We want to hide the 'Milestone' type plan from the Gantt chart, so we have to add the following snippet to the Item Script:

 if (plan.getTemplate().getId() === "Milestone") {
   task.hide = true;
   }



After inserting the edited script, the 'Milestone' plan is no longer displayed in Gantt:






If you need assistance or have further questions, feel free to contact us at support@nextedy.com





Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article