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

# Configuration Properties

> Nextedy GANTT provides global administration properties that control default behavior, appearance, and scheduling settings across all Gantt chart instances.

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="General Administration Properties" icon="gear" href="/gantt/reference/configuration/general-properties">
    Core behavior settings including auto-scheduling, critical path, task borders, unplanned task scheduling mode, and debug options.
  </Card>

  <Card title="Color and Styling Properties" icon="palette" href="/gantt/reference/configuration/color-properties">
    Progress colors, unplanned item colors, resource marker colors, and static vs. dynamic coloring configuration.
  </Card>

  <Card title="Calendar and Working Hours Properties" icon="file" href="/gantt/reference/configuration/calendar-properties">
    Working calendar project and global calendar references, cache settings, and phantom resource hours.
  </Card>

  <Card title="Team and Resource Properties" icon="file" href="/gantt/reference/configuration/team-properties">
    Team capacity modifiers, resource CSV loading, and team-based assignment configuration.
  </Card>

  <Card title="Default Configuration Values" icon="file" href="/gantt/reference/configuration/default-values">
    Default widget parameter values for Work Items Gantt and Plans Gantt instances, including sort order, scale, field mappings, and item limits.
  </Card>
</Columns>

<Tip title="Widget Parameters vs. Configuration Properties">
  **Widget parameters** are set per Gantt instance in the widget editor and control that specific chart. **Configuration properties** are set in Administration and define system-wide defaults. When a widget is first added to a page, it inherits the configuration property defaults. Once saved, the widget's own parameter values take precedence.
</Tip>

## Related Pages

* [Widget Parameters](/gantt/reference/widget-parameters/index) -- per-instance widget parameter reference
* [Scripting API](/gantt/reference/api/index) -- programmatic configuration via scripts

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