How Plan Progress Works
In the Plans Gantt, plan bars do not have a built-in progress calculation. You use an Item Script to query work items assigned to each plan, compute a completion ratio, and display it on the Gantt chart. The script runs server-side for each plan item, calculating progress as the ratio of resolved work items to total work items in the plan.1
Add the Gantt Config Script
Open the Plans Gantt widget parameters and navigate to Advanced > Gantt Config Script. Add the following script to display progress as right-side text on each plan bar:This script renders progress text to the right of each plan bar, showing both the percentage and the resolved/total count.
2
Add the Item Script
Navigate to Advanced > Item Script and add the server-side computation:This script:
- Queries all work items assigned to the current plan
- Queries work items with a resolution (resolved items)
- Computes progress as the ratio of resolved to total
- Stores a human-readable string for display
3
Derive Work Item Schedule from Plans
If work items under your plans are unplanned (no start/end dates), you can derive their schedule from the plan assignment. Add this to the Item Script section of your Work Items configuration: