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

# Resources

> Nextedy GANTT provides a resource view that displays workload allocation, team capacity, and assignment tracking below the Gantt chart.

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

## Guides

[**Set Up the Resource View**](/gantt/guides/resources/resource-view) — Enable the resource view panel and configure load calculation modes, view height, and unassigned task visibility.

[**Configure Resource Fields**](/gantt/guides/resources/resource-field-configuration) — Change which work item field drives the resource view, including custom enumeration and team fields.

[**Set Up a Cross-Team Gantt Chart**](/gantt/guides/resources/cross-team-gantt) — Display teams as resource rows using a custom team field, showing team-level capacity without individual assignments.

[**Set Up Team Assignments Gantt**](/gantt/guides/resources/team-assignments-gantt) — Visualize per-user allocation percentages within teams using the Assignment Allocation load mode.

[**Set Up a Release Gantt with Teams**](/gantt/guides/resources/release-gantt-with-teams) — Combine plan-based views with team resource allocation for release planning.

[**Configure External Team Management Project**](/gantt/guides/resources/external-team-management) — Source team and resource data from a separate Polarion project for cross-project capacity planning.

[**Hide Inactive Resources**](/gantt/guides/resources/resource-hiding) — Automatically hide resources that have no tasks assigned in the current view.

[**Mark Tasks Without Resource Allocation**](/gantt/guides/resources/no-allocation-marking) — Highlight unassigned tasks so unallocated work is visible during planning.

<Tip>
  If you are new to resource management in the Gantt, begin with [Set Up the Resource View](/gantt/guides/resources/resource-view) to enable the panel, then explore team-based configurations as your needs grow.
</Tip>

## See Also

* [View Resource Allocation](/gantt/getting-started/first-resource-view) -- introductory tutorial
* [Calendars](/gantt/guides/calendars/index) -- configure working hours that affect capacity calculations
* [Filter by Resource and Allocation](/gantt/guides/filtering/filter-by-resource) -- filter tasks by assigned resource

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