Download ReoGrid

Free community edition. Install via NuGet or download the source.

📦

Install via NuGet

Recommended

The quickest way to get started. Works with Visual Studio, JetBrains Rider, and the .NET CLI.

Package Manager Console

PM> Install-Package unvell.ReoGrid.dll

.NET CLI

$ dotnet add package unvell.ReoGrid.dll
View on NuGet.org

Always up to date. Automatically manages dependencies.

💻

Source Code on GitHub

Clone the full source, browse examples, and contribute to the project. The repository includes sample applications and full documentation.

Clone via Git

$ git clone https://github.com/unvell/ReoGrid
View on GitHub

MIT License. Contributions welcome.

System Requirements

.NET Framework 4.0 or later
.NET Core / .NET 5+ Supported (via compatibility)
Target platform WinForms, WPF
Operating system Windows 7 or later
Visual Studio 2015 or later recommended

What's in the Community Edition

  • Full spreadsheet control (WinForms & WPF)
  • 200+ formula functions
  • Excel (.xlsx) import and export
  • CSV import and export
  • Charts (bar, line, pie, area)
  • Cell types (checkbox, dropdown, date picker, etc.)
  • Freeze panes, merge cells, conditional formatting
  • Print and paging support
  • Floating images and drawing objects
  • ReoScript interpreter
  • MIT License — free for personal and commercial use

Quick Start

Up and running in under 5 minutes.

  1. 1

    Install via NuGet

    PM> Install-Package unvell.ReoGrid.dll
  2. 2

    Add to your form

    // Drag from Toolbox, or add in code:
    var grid = new ReoGridControl();
    this.Controls.Add(grid);
  3. 3

    Work with cells

    var sheet = grid.CurrentWorksheet;
    sheet[0, 0] = "Hello, ReoGrid!";
    sheet["B2"] = new DateTime(2024, 1, 1);
    sheet["C3"] = "=SUM(A1:A10)";

Need the latest features?

The Community edition uses an older stable release. ReoGrid 4 — with performance improvements, advanced filtering, and more — is available in Professional and Enterprise editions.