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

# Getting Started

> Welcome to the Nextedy GANTT getting started tutorials. These step-by-step guides walk you through installation, initial configuration, and key features so you can be productive with the Gantt chart i

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="Install Gantt" icon="download" href="/gantt/getting-started/installation">
    Download, deploy, and verify the Gantt extension on your Polarion ALM server.
  </Card>

  <Card title="Set Up a Basic Gantt Chart" icon="file" href="/gantt/getting-started/setup-basic-gantt">
    Create a Work Items Gantt widget with hierarchy, queries, and field mappings.
  </Card>

  <Card title="Set Up a Plans Gantt Chart" icon="file" href="/gantt/getting-started/setup-plans-gantt">
    Display Polarion Plans as Gantt bars with work items nested underneath.
  </Card>

  <Card title="Explore the Demo Project" icon="file" href="/gantt/getting-started/demo-project">
    Install the pre-configured demo project to see a working Gantt chart immediately.
  </Card>

  <Card title="Create Your First Dependency Link" icon="file" href="/gantt/getting-started/first-dependency">
    Connect tasks with dependency arrows and configure dependency roles.
  </Card>

  <Card title="View Resource Allocation" icon="file" href="/gantt/getting-started/first-resource-view">
    Enable the resource view to monitor workload distribution across your team.
  </Card>
</Columns>

<Columns cols={3}>
  <Card title="Update to the Latest Version" icon="file" href="/gantt/getting-started/update-gantt">
    Check for updates and upgrade your Gantt installation safely.
  </Card>

  <Card title="Licensing and User Access" icon="id-card" href="/gantt/getting-started/licensing">
    Understand license types, evaluation periods, and user group configuration.
  </Card>
</Columns>

<Tip title="New to Gantt?">
  Start with [Install Gantt](/gantt/getting-started/installation) and then [Explore the Demo Project](/gantt/getting-started/demo-project) to see a fully configured Gantt chart before building your own.
</Tip>

<Frame>
  <img src="https://mintcdn.com/none-17b4493f/DDjWgCW2DWY5biNv/gantt/diagrams/getting-started/index/diagram-1.svg?fit=max&auto=format&n=DDjWgCW2DWY5biNv&q=85&s=e892d4589015231fd32d60ccfda06f71" alt="diagram" style={{ maxWidth: "880px", width: "100%" }} width="880" height="60" data-path="gantt/diagrams/getting-started/index/diagram-1.svg" />
</Frame>

<LastReviewed date="2026-06-24" />
