Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/gantt/gantt-tree/data-binding/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ The Blazor Gantt Tree provides various parameters to configure its items. Also c
| Parameter | Description |
| --- | --- |
| `Items` | The collection of child items that will be rendered under the current item. Required only when binding to hierarchical data. |
| `Id` | A unique identifier for the item. Required only for binding to flat data. |
| `Id` | A unique identifier for the item. |
| `ParentId` | Identifies the parent to whom the item belongs. Required only when binding to flat data. All items with the same `ParentId` will be rendered at the same level. For a root level item, `ParentId` needs to be `null`. There needs to be at least one node with a `null` value for the `ParentId`. |
| `HasChildren` | Whether the item has children. Determines whether an expand arrow is rendered next to the item in an Expandable column. Required for loading data on-demand - if you don't set it to `true`, there will be no expand arrow and so there will be no way for the user to expand the item and load its children. With hierarchical data, the Gantt Tree will render the icon based on the existence of child items, but `HasChildren` will take precedence. You do not have to set or use its field unless you want to load data on demand, or override the arrow for some items. |

Expand Down