ProDataGrid 11.3.11-preview.20

This is a prerelease version of ProDataGrid.
dotnet add package ProDataGrid --version 11.3.11-preview.20
                    
NuGet\Install-Package ProDataGrid -Version 11.3.11-preview.20
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ProDataGrid" Version="11.3.11-preview.20" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ProDataGrid" Version="11.3.11-preview.20" />
                    
Directory.Packages.props
<PackageReference Include="ProDataGrid" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ProDataGrid --version 11.3.11-preview.20
                    
#r "nuget: ProDataGrid, 11.3.11-preview.20"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package ProDataGrid@11.3.11-preview.20
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ProDataGrid&version=11.3.11-preview.20&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=ProDataGrid&version=11.3.11-preview.20&prerelease
                    
Install as a Cake Tool

ProDataGrid

Build

Release GitHub Release

Badge Package Downloads
NuGet ProDataGrid Downloads
NuGet ProDataGrid.Charting Downloads
NuGet ProDataGrid.FormulaEngine Downloads
NuGet ProDataGrid.FormulaEngine.Excel Downloads
NuGet ProCharts Downloads
NuGet ProCharts.Avalonia Downloads
NuGet ProCharts.Skia Downloads
NuGet ProDiagnostics Downloads
NuGet ProDiagnostics.Transport Downloads
NuGet ProDiagnostics.Viewer Downloads

ProDataGrid is a high-performance DataGrid control for Avalonia.

Quick Start

Install the package:

dotnet add package ProDataGrid

Include the theme in App.axaml:

<Application.Styles>
  <FluentTheme />
  <StyleInclude Source="avares://Avalonia.Controls.DataGrid/Themes/Fluent.v2.xaml" />
</Application.Styles>
<Application.Styles>
  <SimpleTheme />
  <StyleInclude Source="avares://Avalonia.Controls.DataGrid/Themes/Simple.v2.xaml" />
</Application.Styles>

Basic XAML usage:

<DataGrid ItemsSource="{Binding People}"
          AutoGenerateColumns="False"
          UseLogicalScrollable="True">
  <DataGrid.Columns>
    <DataGridTextColumn Header="ID" Binding="{Binding Id}" Width="60" />
    <DataGridTextColumn Header="Name" Binding="{Binding Name}" Width="*" />
    <DataGridCheckBoxColumn Header="Active" Binding="{Binding IsActive}" Width="80" />
  </DataGrid.Columns>
</DataGrid>

More than DataGrid

ProDataGrid ships as a family of packages beyond the grid itself. Quick starts below cover the most common add-ons.

Charting

ProCharts is an Excel-quality charting library built for ProDataGrid. ProDataGrid.Charting bridges grid data and pivots into chart series.

Quick start:

dotnet add package ProCharts.Avalonia
dotnet add package ProDataGrid.Charting
using ProCharts;

var chartModel = new ChartModel
{
    Title = "Revenue by Quarter",
    Series = new List<ChartSeries>
    {
        ChartSeries.Line("Q1", new[] { 120d, 140d, 110d, 180d }),
        ChartSeries.Line("Q2", new[] { 160d, 130d, 150d, 210d })
    },
    XAxis = new ChartAxis { Title = "Quarter", Kind = ChartAxisKind.Category },
    YAxis = new ChartAxis { Title = "Revenue", Kind = ChartAxisKind.Value }
};

Bind chartModel to ProChartView.ChartModel in your Avalonia view.

Formula Engine

The formula engine provides Excel-compatible parsing, evaluation, and recalculation. Use it in DataGrid formula columns or wire it to your own data model.

Quick start:

dotnet add package ProDataGrid.FormulaEngine
dotnet add package ProDataGrid.FormulaEngine.Excel
var definition = new DataGridFormulaColumnDefinition
{
    Header = "Total",
    Formula = "=[Price] * [Quantity]",
    AllowCellFormulas = true
};
ProDiagnostics

ProDiagnostics provides Avalonia developer tools UI for runtime inspection and debugging, with optional out-of-process transport and a viewer app.

Quick start:

dotnet add package ProDiagnostics
public override void OnFrameworkInitializationCompleted()
{
    if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
        desktop.MainWindow = new MainWindow();

    base.OnFrameworkInitializationCompleted();
    this.AttachDevTools();
}

Optional streaming + viewer:

dotnet add package ProDiagnostics.Transport
dotnet tool install -g prodiagnostics-viewer

Nightly Packages (GitHub Packages)

Nightly builds are published to GitHub Packages with versions like 11.3.9-nightly.20241227.123.

Add the GitHub Packages feed (requires a GitHub token with read:packages):

dotnet nuget add source https://nuget.pkg.github.com/wieslawsoltes/index.json \
  --name github \
  --username YOUR_GITHUB_USERNAME \
  --password YOUR_GITHUB_TOKEN \
  --store-password-in-clear-text

GitHub Packages NuGet docs: https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-nuget-registry

Install a nightly package:

dotnet add package ProDataGrid --source github --prerelease

Or pin a specific nightly version:

dotnet add package ProDataGrid --source github --version 11.3.9-nightly.20241227.123

Documentation

  • DocFX articles: docfx/articles/intro.md
  • DocFX entry page: docfx/index.md

Testing

Run standard tests:

dotnet test

Leak tests use Avalonia-style WeakReference/GC checks. Use the helper script to run only leak tests:

.\tools\run-leak-tests.ps1

ProDiagnostics

ProDiagnostics provides Avalonia developer tools UI as a standalone package. It focuses on runtime inspection and debugging:

  • Visual and logical tree inspection.
  • Property and style inspection with live values.
  • Routed event tracking.
  • Layout exploration and renderer diagnostics overlays.

Installation

Install from NuGet:

dotnet add package ProDiagnostics

Quick start

Attach DevTools after application initialization:

public override void OnFrameworkInitializationCompleted()
{
    if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
        desktop.MainWindow = new MainWindow();

    base.OnFrameworkInitializationCompleted();
    this.AttachDevTools();
}

By default DevTools opens with F12. You can also attach to a TopLevel or provide a custom key gesture or options.

ProDiagnostics.Transport

ProDiagnostics.Transport streams metrics and activities over UDP so you can observe diagnostics out-of-process.

Installation

Install from NuGet:

dotnet add package ProDiagnostics.Transport

Quick start

Export diagnostics to the viewer:

using ProDiagnostics.Transport;

var exporter = new DiagnosticsUdpExporter(new DiagnosticsUdpOptions
{
    Host = "127.0.0.1",
    Port = TelemetryProtocol.DefaultPort,
    ActivitySourceNames = new[] { "ProDataGrid.*" },
    MeterNames = new[] { "ProDataGrid.Diagnostic.Meter" }
});

exporter.Start();

Keep the exporter alive for the lifetime of the app and dispose it during shutdown.

ProDiagnostics.Viewer

ProDiagnostics.Viewer is an Avalonia UI for live metrics and activities streamed over UDP.

Installation

Install as a global tool:

dotnet tool install -g prodiagnostics-viewer

Quick start

Run the viewer:

prodiagnostics-viewer

License

ProDataGrid is licensed under the MIT License (see licence.md).

ProDiagnostics is licensed under the MIT License (see licence.md).

The original Avalonia.Controls.DataGrid and Avalonia.Diagnostics license is preserved in licence-avalonia.md.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on ProDataGrid:

Package Downloads
ProDataGrid.Charting

Charting adapters for ProDataGrid using ProCharts.

Semi.Avalonia.ProDataGrid

ProDataGrid Theme inspired by Semi Design.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
11.3.11-preview.20 1,474 2/28/2026
11.3.11-preview.19 90 2/24/2026
11.3.11-preview.18 70 2/23/2026
11.3.11-preview.17 59 2/23/2026
11.3.11-preview.16 62 2/22/2026
11.3.11-preview.15 1,390 2/21/2026
11.3.11-preview.14 92 2/13/2026
11.3.11-preview.13 137 2/12/2026
11.3.11-preview.12 64 2/12/2026
11.3.11-preview.11 79 2/11/2026
11.3.11-preview.10 64 2/11/2026
11.3.11-preview.9 69 2/10/2026
11.3.11-preview.8 217 2/9/2026
11.3.11-preview.7 59 2/9/2026
11.3.11-preview.6 410 2/6/2026
11.3.11-preview.5 164 2/3/2026
11.3.11-preview.4 53 2/3/2026
11.3.11-preview.3 57 2/3/2026
11.3.11-preview.2 53 2/3/2026
11.3.11-preview.1 62 2/2/2026
Loading failed