Skip to content

Commit f464c0d

Browse files
authored
docs(gantt): remove misleading statement from gantt tree data binding overview article (#1588)
1 parent c220b07 commit f464c0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/gantt/gantt-tree/data-binding/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The Blazor Gantt Tree provides various parameters to configure its items. Also c
3434
| Parameter | Description |
3535
| --- | --- |
3636
| `Items` | The collection of child items that will be rendered under the current item. Required only when binding to hierarchical data. |
37-
| `Id` | A unique identifier for the item. Required only for binding to flat data. |
37+
| `Id` | A unique identifier for the item. |
3838
| `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`. |
3939
| `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. |
4040

0 commit comments

Comments
 (0)