


1
Enable the Resource View
- Open the Gantt page in Edit mode.
- Click the widget gear icon to open Widget Parameters.
- In the Resource View section, set Show Resource View to Yes.
- Click Apply.

Resource view sub-parameters such as View Height, Resource Field, and Resource Load Calculation only become visible after you set Show Resource View to Yes.
2
Configure Resource View Parameters
3
Choose a Resource Load Calculation Mode
The Gantt offers four calculation modes for the resource view cells:

Estimate + Spent combines remaining estimate with time already spent and distributes it across the scheduled days, making it easy to spot overloaded team members.
When 96 hours of combined effort are spread across 10 scheduled days, the Resource View shows a daily load of 9.6 hours for the assigned user.
Remaining Estimate distributes only the future remaining effort across scheduled days. A 6-day remaining estimate spread across 10 calendar days yields a workload of 4.8 hours per day.
Assignment Allocation shows percentage-based team allocation. A user assigned 35% in one team and 10% in another shows a combined 45% workload for that period; totals above 100% indicate overallocation.
Split the effort between multiple assignees. By default, a task’s effort is shown in full for every assignee — a 4-day estimate appears as 4 days for each one.
To divide the effort equally between assignees instead, add 

Leaf Items Count counts each leaf-level item as one unit. In the example below, the two leaf items each contribute a green cell marked “1” for their scheduled timeframe.






nextedy.gantt.multiAssignmentSameEffortForAll=false to Administration > Configuration Properties.
4
Show Unassigned Work Items
To see work items that have no resource assigned:

Toggling the button hides every resource that has no tasks from the Gantt page.
- Set Show Unassigned to Yes in the Resource View parameters.
- A dedicated row labeled “Unassigned” appears at the bottom of the resource view.



5
Adjust the View Height
You can set the initial panel height via the View Height parameter. After the Gantt loads, you can also resize the resource view by dragging the horizontal divider between the Gantt chart and the resource view.
6
Customize Marker Colors
Resource allocation markers use color coding to indicate capacity status:
You can customize these bubbles for a clearer, more intuitive allocation overview.
With the dynamic approach, you define color thresholds via the Gantt Config Script or Configuration Properties — for example, lightgreen up to 50%, 
Team overallocation color schemes let you distinguish global overload from in-team overload. Since version 25.4.1, this also works when defined via Configuration Properties at project or global level.

With the static approach, a Script Block widget overrides the OK marker (default green bubble) and the overloaded marker (default red bubble) so you can apply any background-color and color combination.
For full instructions, see Configure Resource Allocation Marker Colors.Only Tasks and Work Packages that have no child items are counted as load for their assignees, so real, hands-on work is counted once per user and parent items are not double-counted.
To count higher-level items as well — useful when you intentionally track effort at multiple levels — set 
With that setting, all items are counted in the Resource View.
To skip specific tasks from the calculation — for example, keeping only Work Packages — add a rule to the Item Script such as 
You can also calculate Resource Load globally while showing only the project timeline, so the load counts items from other projects too.
Achieve this by querying items from multiple projects.
- Green cells indicate the resource is within capacity
- Red cells indicate the resource is overallocated


#51c185 up to 100%, orange up to 150%, and #ff8686 above 150%.




nextedy.gantt.config.onlyLeafTasks=false in Widget Properties > Gantt Config Script.

if(wi.getType().getId()==="task") { task.load=0; }.


Verification
You should now see:- A resource view panel below the Gantt chart with one row per assigned resource
- Workload values in each cell matching your chosen calculation mode
- Color-coded cells indicating within-capacity (green) and overallocation (red) states