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

# Filtering and Sorting

> Nextedy GANTT provides several ways to filter and sort work items in the chart, helping you focus on the tasks that matter most.

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 Gantt Filters" icon="file" href="/gantt/guides/filtering/gantt-filters">
    Apply item, resource, and allocation filters using the toolbar filter controls to focus the chart on specific work items.
  </Card>

  <Card title="Filter by Resource and Allocation" icon="file" href="/gantt/guides/filtering/filter-by-resource">
    Filter the Gantt view by resource assignee and workload allocation markers to see a specific team member's tasks.
  </Card>

  <Card title="Configure Item Sorting" icon="file" href="/gantt/guides/filtering/sorting">
    Control the sort order of work items in the Gantt chart using the Sort By widget parameter and configuration properties.
  </Card>

  <Card title="Use Dynamic Queries with Page Parameters" icon="file" href="/gantt/guides/filtering/dynamic-queries">
    Build Velocity-based queries that respond to page parameter selections, letting users switch data sets without editing the widget.
  </Card>

  <Card title="Manage Large Datasets with Max Items" icon="file" href="/gantt/guides/filtering/max-items">
    Configure the maximum number of items loaded into the Gantt to maintain performance with large work item queries.
  </Card>
</Columns>

<Tip title="Combine filtering with dynamic queries">
  For the most flexible Gantt views, use [page parameters](/gantt/guides/layout/page-parameters) to let users choose which data set to load, then apply Gantt filters to further refine the visible items within that set.
</Tip>

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