Table Widget Parameters
| Name | Type | Default | Description |
|---|---|---|---|
WIDTH | Integer | See application | The total width of the grid panel (left side of the Gantt chart) in pixels. This controls the split point between the grid and the timeline area. |
First Column Configuration
The first column always appears in the grid and displays the task label. TheFIRST_COL configuration block controls what information is shown in this column:
| Name | Type | Default | Description |
|---|---|---|---|
FIRST_COL.showId | Boolean | See application | When true, the first column displays the work item ID prefix (e.g., WI-123:) before the title. |
FIRST_COL.showTitle | Boolean | See application | When true, the first column displays the work item title text. Set to false if only the ID is needed. |
FIRST_COL.showIcon | Boolean | See application | When true, the first column displays the work item type icon before the label. Type icons help visually distinguish work item types (task, milestone, work package) in the grid. |
Columns List
TheCOLUMNS list parameter defines additional data columns that appear after the first column. Each column entry is configured with field mapping, label, width, alignment, and render template properties. For detailed column sub-parameters, see Column Configuration Parameters.
The default columns list includes:
| Column | Field | Description |
|---|---|---|
| WBS | Task number | Hierarchical work breakdown structure numbering |
| Title | Task label | Task label with tree indent |
| Start date | Start field | Task start date |
| End date | End field | Task end date |
| Duration | Duration field | Task duration value |
| Assignee | Resource field | Assigned resource(s) |
Column Custom Field Dependency
When you add a column and set its type toCUSTOM_FIELD, the widget parameter editor reveals two additional sub-parameters:
- Other Field — specifies an alternate field reference for the custom column.
- Render — specifies the rendering template for the custom field column.
User Settings Persistence
The Gantt saves user-specific grid preferences to the browser’s local storage. The following settings are persisted per user:| Setting | Description |
|---|---|
| Zoom scale | The current timeline zoom level (e.g., W for week, M for month). |
| Column widths | Individual column widths after user resizing. |
| Grid width | The overall grid panel width (the split point between grid and timeline). |
Use the Reset View toolbar action to clear all saved user settings and restore the Gantt to its default zoom level and column layout.
Grid Width Behavior
The grid width (WIDTH parameter) sets the initial width of the left panel. Users can adjust the grid width by dragging the splitter between the grid and the timeline. The adjusted width is saved to local storage and restored on subsequent visits.
If no WIDTH parameter is set, the Gantt uses a default width determined by the sum of configured column widths.
Configuration Example
To configure a compact grid with work item IDs and a priority column:- Open Widget Properties for the Gantt widget.
- In the Table section:
- Set WIDTH to
400. - Set FIRST_COL.showId to
Yes. - Set FIRST_COL.showTitle to
Yes. - Set FIRST_COL.showIcon to
Yes.
- Set WIDTH to
- In the Columns section, add a column entry:
- Set Field to
priority. - Set Label to
Priority. - Set Width to
80.
- Set Field to
- Save the widget parameters.
Related Pages
- Column Configuration Parameters — per-column field mapping, templates, and rendering
- Work Items Gantt Widget Parameters — main widget parameters
- Zoom and Scale Levels Reference — timeline scale options
- Toolbar Actions and Keyboard Shortcuts — Reset View and other toolbar actions
Sources
Sources
KB Articles
- Gantt configuration index
- Plans Gantt Widget Parameters
- Gantt - Configuration Properties and default values
prod-gantt-src/com.nextedy.polarion.gantt/src/com/nextedy/polarion/gantt/model/columns/Table.javaprod-gantt-src/com.nextedy.polarion.gantt/src/com/nextedy/polarion/gantt/model/columns/Column.javaprod-gantt-src/com.nextedy.polarion.gantt/src/com/nextedy/polarion/gantt/model/impl/types/TypeConfigWidgetParameters.javaprod-gantt-src/com.nextedy.polarion.gantt/src/com/nextedy/polarion/gantt/widget/GanttWidgetConfig.javaprod-gantt-src/com.nextedy.polarion.gantt.client/cypress/e2e/view/pageparams.cy.ts