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

# Plans Gantt

> The Nextedy GANTT Plans Gantt mode displays Polarion Plans as first-class entities on the Gantt chart, enabling portfolio-level scheduling with releases, iterations, and their associated work items.

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="Show Plans and Work Items Together" icon="file" href="/gantt/guides/plans/plans-and-work-items">
    Configure the Plans Gantt widget to display both Polarion Plans and their contained work items in a unified hierarchy.
  </Card>

  <Card title="Compute Plan Progress" icon="file" href="/gantt/guides/plans/plan-progress">
    Calculate and display plan completion progress using server-side scripts that count resolved versus total work items.
  </Card>

  <Card title="Sync Work Item Dates to Plans" icon="file" href="/gantt/guides/plans/sync-to-plans">
    Automatically assign work items to Polarion Plans based on their schedule dates, keeping plan membership in sync with the Gantt hierarchy.
  </Card>

  <Card title="Configure Multiple Plan Levels" icon="file" href="/gantt/guides/plans/plan-level-configuration">
    Set up multi-level plan hierarchies such as Release > Iteration > Work Package for cross-team and release planning views.
  </Card>
</Columns>

<Tip title="Getting started with Plans Gantt">
  If you are setting up a Plans Gantt for the first time, start with the [Set Up a Plans Gantt Chart](/gantt/getting-started/setup-plans-gantt) tutorial, then return to these guides for advanced configuration.
</Tip>

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