Skip to main content

Default Column Layout

Out of the box, the Gantt grid displays the following columns:
ColumnContentEditable
Task number (WBS)Work breakdown structure numberNo
TitleWork item ID, type icon, and title (with tree indent)No
Start dateTask start dateYes (date picker)
End dateTask end dateYes (date picker)
DurationTask duration in daysYes (number input)
AssigneeAssigned resourceNo

Configure the First Column

The first column always displays the task label and cannot be hidden. You can control what appears in it through the Widget Properties > Table > First Column settings:
ParameterEffect
FIRST_COL.showIdDisplays the work item ID prefix (e.g., “WI-123:”) before the title
FIRST_COL.showTitleDisplays the work item title text
FIRST_COL.showIconDisplays the work item type icon before the label
Set showId to true when users need to quickly identify work items by their Polarion ID without opening the lightbox.
If you only need to see work item IDs in the grid, set showTitle to false and showId to true. This produces a compact first column showing only the ID.

Add Custom Columns

Navigate to Widget Properties > Table > Columns to add additional columns beyond the defaults. Each column has these parameters:
ParameterDescriptionDefault
fieldPolarion work item field ID (e.g., priority, status, dueDate)Required
labelColumn header textField’s Polarion label
widthColumn width in pixels300
alignText alignment: left, center, or rightleft
renderTemplate identifier controlling how cell values are displayedStandard

Available Column Templates

The following template identifiers control how column values are rendered:
Template IDRendering Behavior
deadlineShows dates in red when the task is overdue
start_dateRenders the start date with precision formatting
end_dateRenders the end date with precision formatting
ownerShows assignees as initials in circles or full names
standardRenders duration values
progressShows progress percentage rounded to 2 decimal places

Configure the Grid Width

Set the overall width of the grid panel through Widget Properties > Table > WIDTH. This controls how much horizontal space the column area occupies relative to the timeline.
When a user resizes the grid panel or individual columns by dragging, those widths are saved to browser local storage. On the next visit, the saved widths are restored instead of the widget parameter defaults. Users can reset to defaults via the hamburger menu.

Configure Assignee Display Mode

The assignee column supports two display modes controlled by the configuration property:
nextedy.gantt.assignee_column_display_mode=initials
ValueDisplay
initialsUser initials shown in a circle (compact)
fullnameFull user name displayed as text
Set this property in Administration > Configuration Properties.

Access the Hamburger Menu

The first column header contains a ☰ hamburger menu icon that provides quick access to:
  • Refresh the Gantt data
  • Drag children toggle
  • Go to today navigation
  • Set scale submenu
  • Column visibility submenu
  • Help link to the documentation

Verification

You should now see the configured columns in the Gantt grid. Verify that custom field columns display the expected values and that column widths match your configuration. If a column shows empty values, confirm the field ID matches a valid Polarion work item field.

See also

Support TicketsSource Code
  • prod-gantt-src/com.nextedy.polarion.gantt/src/com/nextedy/polarion/gantt/model/columns/Column.java
  • prod-gantt-src/com.nextedy.polarion.gantt/src/com/nextedy/polarion/gantt/model/columns/Table.java
  • prod-gantt-src/com.nextedy.polarion.gantt/src/com/nextedy/polarion/gantt/model/Config.java
  • prod-gantt-src/com.nextedy.polarion.gantt.client/src/js/tooltips.js
  • prod-gantt-src/com.nextedy.polarion.gantt.client/src/js/columns.js