Download ReoGrid
Free community edition. Install via NuGet or download the source.
Install via NuGet
RecommendedThe quickest way to get started. Works with Visual Studio, JetBrains Rider, and the .NET CLI.
Package Manager Console
Install-Package unvell.ReoGrid.dll .NET CLI
dotnet add package unvell.ReoGrid.dll 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 MIT License. Contributions welcome.
System Requirements
| Runtime |
|
| Target platform | Windows Forms and WPF |
| Operating system |
|
| Visual Studio |
|
Version 4 (Professional and Enterprise) has the same requirements.
What's in the Community Edition
- Full spreadsheet control (WinForms & WPF)
- 100+ 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
Install via NuGet
PM> Install-Package unvell.ReoGrid.dll - 2
Add to your form
// Drag from Toolbox, or add in code: var grid = new ReoGridControl(); this.Controls.Add(grid); - 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. Try every v4 feature free for 30 days — no credit card required.