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

# Widget Parameters

> Nextedy GANTT widget parameters control the behavior and appearance of each Gantt chart instance.

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="Work Items Gantt Widget Parameters" icon="file" href="/gantt/reference/widget-parameters/work-items-gantt">
    Dataset selection, hierarchy roles, dependency roles, and display settings for the Work Items Gantt.
  </Card>

  <Card title="Plans Gantt Widget Parameters" icon="file" href="/gantt/reference/widget-parameters/plans-gantt">
    Plan dataset, child levels, sort order, and plan-specific display settings for the Plans Gantt.
  </Card>

  <Card title="Data Mapping Parameters" icon="file" href="/gantt/reference/widget-parameters/data-mapping">
    Field mappings for start date, end date, duration, progress, and duration precision.
  </Card>

  <Card title="Work Item Types Configuration" icon="file" href="/gantt/reference/widget-parameters/work-item-types">
    Project type, milestone type, and per-type presentation and field filter settings.
  </Card>

  <Card title="Resource View Parameters" icon="file" href="/gantt/reference/widget-parameters/resource-view">
    Resource view toggle, load mode, resource field, and display options.
  </Card>

  <Card title="Working Calendars Parameters" icon="file" href="/gantt/reference/widget-parameters/working-calendars">
    Calendar toggles, user calendar loading, team assignments, and year range.
  </Card>
</Columns>

## Additional Parameter Categories

* **[Baselines Parameters](/gantt/reference/widget-parameters/baselines)** -- Baseline comparison toggle and date selection
* **[Deadlines Parameters](/gantt/reference/widget-parameters/deadlines)** -- Deadline marker display and color settings
* **[Column Configuration Parameters](/gantt/reference/widget-parameters/columns)** -- Grid column definitions and editors
* **[Table and Grid Configuration](/gantt/reference/widget-parameters/table-configuration)** -- Grid width, first column display, and layout

<Tip title="One widget per page">
  Only one Gantt widget (Work Items or Plans) is supported per Polarion wiki page. To display multiple views, use separate wiki pages or dynamic page parameters to switch queries.
</Tip>

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