> ## Documentation Index
> Fetch the complete documentation index at: https://learn.nextedy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# URL Parameters Reference

> Nextedy GANTT supports URL query parameters that override widget behavior at page load time.

export const LastReviewed = ({date}) => {
  if (!date) return null;
  const formatted = new Date(`${date}T00:00:00Z`).toLocaleDateString("en-US", {
    year: "numeric",
    month: "long",
    day: "numeric",
    timeZone: "UTC"
  });
  return <p className="mt-10 text-sm text-gray-400 dark:text-zinc-500 not-prose">
      Last reviewed on {formatted}
    </p>;
};

<Info title="Verify in application">
  This page documents URL parameters derived from source code. Some parameters may vary depending on your Gantt version.
</Info>

## View and Layout Parameters

| Parameter           | Type    | Default                           | Description                                                                                                                                                    |
| ------------------- | ------- | --------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `MaximizeGanttView` | Boolean | `true` (when maximize is enabled) | Controls whether the Gantt opens in maximized/fullscreen mode. Set to `false` to force non-maximized mode, which also hides the Page Parameters toolbar button |

## Resource View Parameters

| Parameter               | Type    | Default         | Description                                                                                                                                |
| ----------------------- | ------- | --------------- | ------------------------------------------------------------------------------------------------------------------------------------------ |
| `loadTeamAssignments`   | Boolean | See application | Controls whether team-level assignment capacity records are used in resource view calculations instead of individual user calendars        |
| `Load_Team_Assignments` | Boolean | See application | Alternative spelling for `loadTeamAssignments`. Both parameter forms are supported                                                         |
| `LoadUserCalendars`     | Boolean | See application | Enables per-user working calendars for effective hours calculation in the resource view. When `false`, the global project calendar is used |

<Warning title="Parameter Spelling">
  Both `loadTeamAssignments` and `Load_Team_Assignments` are accepted. Use consistent spelling across your deployment to avoid confusion.
</Warning>

## URL Parameter Format

Append parameters to the Polarion page URL using standard query string syntax:

```
https://your-polarion.example.com/polarion/#/project/MyProject/wiki/GanttPage?MaximizeGanttView=false
```

Multiple parameters are separated by `&`:

```
https://your-polarion.example.com/polarion/#/project/MyProject/wiki/GanttPage?MaximizeGanttView=false&loadTeamAssignments=true
```

## Resource Calendar Resolution

The resource view URL parameters control a three-level calendar resolution cascade:

<Frame>
  <img src="https://mintcdn.com/none-17b4493f/Jklvz9qm2AdmIvBG/gantt/diagrams/reference/url-parameters/diagram-1.svg?fit=max&auto=format&n=Jklvz9qm2AdmIvBG&q=85&s=2dbf4bab166d6df1a3bff2d7dc9e17eb" alt="diagram" style={{ maxWidth: "480px", width: "100%" }} width="480" height="180" data-path="gantt/diagrams/reference/url-parameters/diagram-1.svg" />
</Frame>

| Configuration        | Calendar Source                               | URL Parameters              |
| -------------------- | --------------------------------------------- | --------------------------- |
| Global calendar only | Project-wide working calendar                 | Default (no URL parameters) |
| Per-user calendars   | Individual user working calendars             | `LoadUserCalendars=true`    |
| Team assignments     | Team capacity multipliers over user calendars | `loadTeamAssignments=true`  |

## MaximizeGanttView Effects

The `MaximizeGanttView` parameter controls several related behaviors:

| When `MaximizeGanttView=false` | Effect                                                    |
| ------------------------------ | --------------------------------------------------------- |
| Page Parameters button         | Hidden from the toolbar                                   |
| Gantt layout                   | Embedded within the Polarion page layout (not fullscreen) |
| Toolbar                        | Standard toolbar display                                  |

| When `MaximizeGanttView=true` (or not set) | Effect                            |
| ------------------------------------------ | --------------------------------- |
| Page Parameters button                     | Visible in the toolbar            |
| Gantt layout                               | Fills the browser viewport        |
| Toolbar                                    | Full toolbar with settings button |

## Configuration Example

Open a Gantt chart with team assignments enabled and non-maximized view:

```
?MaximizeGanttView=false&loadTeamAssignments=true
```

Open a Gantt chart with per-user calendars for accurate resource capacity:

```
?LoadUserCalendars=true
```

## Related Pages

* [Toolbar Actions and Keyboard Shortcuts](/gantt/reference/keyboard-shortcuts) -- Page Parameters button visibility
* [Resource View Parameters](/gantt/reference/widget-parameters/resource-view) -- resource view widget configuration
* [Working Calendars Parameters](/gantt/reference/widget-parameters/working-calendars) -- calendar widget parameters
* [Team and Resource Properties](/gantt/reference/configuration/team-properties) -- team assignment configuration

<LastReviewed date="2026-07-02" />
