https://github.com/avaloniaui/avalonia.controls.treedatagrid
A combined TreeView/DataGrid for Avalonia.
https://github.com/avaloniaui/avalonia.controls.treedatagrid
avalonia csharp datagrid dotnet treeview xaml
Last synced: 14 days ago
JSON representation
A combined TreeView/DataGrid for Avalonia.
- Host: GitHub
- URL: https://github.com/avaloniaui/avalonia.controls.treedatagrid
- Owner: AvaloniaUI
- License: mit
- Created: 2020-12-21T13:32:47.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-04-02T19:58:27.000Z (19 days ago)
- Last Synced: 2025-04-08T13:11:23.731Z (14 days ago)
- Topics: avalonia, csharp, datagrid, dotnet, treeview, xaml
- Language: C#
- Homepage:
- Size: 1.42 MB
- Stars: 314
- Watchers: 22
- Forks: 65
- Open Issues: 102
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
[](https://www.nuget.org/packages/Avalonia.Controls.TreeDataGrid/)
# Avalonia `TreeDataGrid`## Introduction
`TreeDataGrid` is a control for the [Avalonia](https://github.com/AvaloniaUI/Avalonia) UI framework which displays hierarchical and tabular data together in a single view. It is a combination of a `TreeView` and `DataGrid` control.
The control has two modes of operation:
- Hierarchical: data is displayed in a tree with optional columns
- Flat: data is displayed in a 2D table, similar to other `DataGrid` controlsAn example of `TreeDataGrid` displaying hierarchical data:

An example of `TreeDataGrid` displaying flat data:

## Current Status
We accept issues and pull requests but we answer and review only pull requests and issues that are created by our customers. It's a quite big project and servicing all issues and pull requests will require more time than we have. But feel free to open issues and pull requests because they may be useful for us!
## Getting Started
- [Installation](docs/installation.md)
- [Creating a flat `TreeDataGrid`](docs/get-started-flat.md)
- [Creating a hierarchical `TreeDataGrid`](docs/get-started-hierarchical.md)
- [Supported column types](docs/column-types.md)
- [Selection](docs/selection.md)