> ## 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.

# Layout and Navigation

> Control how your Nextedy GANTT widget appears on the page, customize the toolbar, configure page-level parameters, and manage print and export options.

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>;
};

<Columns cols={3}>
  <Card title="Use Fullscreen and Maximize Mode" icon="file" href="/gantt/guides/layout/fullscreen-mode">
    Expand the Gantt widget to fill the full browser window or Polarion working area for a distraction-free planning experience.
  </Card>

  <Card title="Use Multiple Gantt Widgets" icon="file" href="/gantt/guides/layout/multiple-widgets">
    Place multiple Gantt widgets on a single Polarion page, each with independent data sources and configurations.
  </Card>

  <Card title="Configure Page Parameters" icon="file" href="/gantt/guides/layout/page-parameters">
    Add dynamic filters and query parameters to the Gantt widget using the Polarion Page Parameters panel.
  </Card>

  <Card title="Print and Export to PNG" icon="file" href="/gantt/guides/layout/print-and-export">
    Export the Gantt chart as a PNG image or send it to a printer for offline review and sharing.
  </Card>

  <Card title="Scroll to Today on Load" icon="file" href="/gantt/guides/layout/scroll-to-today">
    Automatically scroll the Gantt timeline to today's date when the chart loads, keeping the current schedule in view.
  </Card>

  <Card title="Configure the Toolbar and Menus" icon="file" href="/gantt/guides/layout/toolbar-configuration">
    Customize which buttons appear in the Gantt toolbar, configure context menus, and control toolbar visibility.
  </Card>
</Columns>

<Tip title="Start with fullscreen mode">
  For the best editing experience, enable the `maximize` widget parameter so the Gantt expands to fill the available space. This unlocks additional features like the page parameters panel and provides more room for the timeline and grid columns.
</Tip>

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