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

# Integration

> Nextedy GANTT integrates with external tools and Polarion platform features to extend the Gantt chart beyond its default capabilities.

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="Import Dependencies from MS Project" icon="file" href="/gantt/guides/integration/ms-project-import">
    Bring MS Project dependency structures into Polarion for use in the Gantt chart.
  </Card>

  <Card title="Configure Gantt Workflow Conditions" icon="file" href="/gantt/guides/integration/polarion-workflow-conditions">
    Enforce dependency-aware status gates in Polarion workflows using Gantt link roles.
  </Card>

  <Card title="Apply Custom CSS to the Gantt Widget" icon="file" href="/gantt/guides/integration/custom-css-styling">
    Style task bars, text, and layout elements using CSS injected through Polarion script blocks.
  </Card>
</Columns>

<Tip title="Looking for scripting?">
  For programmatic customization using JavaScript item scripts, config scripts, and Velocity page scripts, see the [Scripting](/gantt/guides/scripting/index) section.
</Tip>

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