Resource View Widget Parameters
| Name | Type | Default | Description |
|---|---|---|---|
Show Resource View | Boolean | false | Master toggle that enables the resource view panel below the Gantt chart. All parameters below require this to be true. |
Resource Load Calculation | Enum | See application | Controls how resource utilization is calculated and displayed. See Load Modes below. |
Resource Field | String | See application | The Polarion work item field used to determine the assigned resource (user ID). Drives the resource view rows and the resource filter. |
Resource Label | String | See application | Controls the display label for each resource row in the resource view. |
Show Unassigned | Boolean | See application | When enabled, displays an “Unassigned” row for tasks that have no resource assignment. |
Items OK Limit | Integer | See application | The threshold number of items or hours below which the resource marker displays in the “OK” (green) color. |
Height | Integer | See application | The pixel height of the resource view panel. |
Load Modes
TheResource Load Calculation parameter determines how workload is computed for each resource:
| Mode | Value | Description |
|---|---|---|
| Task count | num | Counts the number of tasks assigned to the resource in each time period. |
| Hours | time | Sums the actual scheduled hours for each resource based on task duration and working calendar. |
| Remaining estimate | remaining | Sums the remaining estimated hours for each resource in the visible time range. |
| Allocation percentage | allocation | Calculates the allocation percentage against the resource’s available capacity from the working calendar. |
Resource Marker Colors
The resource view displays color-coded markers for each time cell:| Marker State | Default Color | Description |
|---|---|---|
| Within capacity (OK) | #4CAF50 (green) | The resource is at or below the configured capacity threshold. |
| Over capacity | Red/orange gradient | The resource exceeds the capacity threshold, indicating overallocation. |
resourceMarkersColorConfig property in Color and Styling Properties.
Leaf Task Filtering
TheonlyLeafTasks configuration property affects resource view calculations:
- When
onlyLeafTasksistrue, only leaf tasks (tasks with no children) are counted in resource allocation. - Parent or summary tasks (presentation mode
Project) are excluded from workload calculations. - Work items that have a parent presentation mode but no visible children due to filtering are treated as leaf items and included in calculations.
The exact behavior of filtered workpackages without visible children in resource calculations may vary by version. Verify the resource count behavior in your specific Gantt version.
Unassigned Resource Row
Tasks with no value in the configuredResource Field are grouped under a synthetic “Unassigned” resource row. This row uses the internal constant UNASSIGNED_ID and appears at the bottom of the resource view when Show Unassigned is enabled.
Team-Based Resource View
When team assignments are enabled (via Team and Resource Properties), the resource view displays team rows instead of individual user rows. In team mode:- Each team appears as a resource row with aggregated workload from all assigned tasks.
- The lightbox shows a team picker instead of a user picker for the resource field.
- Capacity is derived from team assignment records rather than individual working calendars.
Configuration Example
To enable a resource view showing hours-based allocation:- Open Widget Properties for the Gantt widget.
- In the Resource View section, set Show Resource View to
Yes. - Set Resource Load Calculation to
time(Hours). - Set Resource Field to the Polarion field holding the assignee (e.g.,
assignee). - Optionally enable Show Unassigned to see unassigned tasks.
- Save the widget parameters.
Related Pages
- Working Calendars Parameters — calendar settings affecting capacity calculations
- Color and Styling Properties — resource marker color customization
- Team and Resource Properties — team-based assignment configuration
- View Resource Allocation — tutorial for first-time setup
Sources
Sources
KB ArticlesSupport TicketsSource Code
prod-gantt-src/com.nextedy.polarion.gantt/src/com/nextedy/polarion/gantt/widget/GanttWidgetDependenciesProcessor.javaprod-gantt-src/com.nextedy.polarion.gantt/src/com/nextedy/polarion/gantt/model/Config.javaprod-gantt-src/com.nextedy.polarion.gantt/src/com/nextedy/polarion/gantt/widget/GanttWidget.javaprod-gantt-src/com.nextedy.polarion.gantt/src/com/nextedy/polarion/gantt/model/impl/types/TypeConfigWidgetParameters.javaprod-gantt-src/com.nextedy.polarion.gantt.client/src/js/globals.js