dash-ag-grid
Dash wrapper around AG Grid, the best interactive data grid for the web.
What it is and what it does
Dash AG Grid is a Python wrapper that brings the AG Grid JavaScript data grid library into Dash applications as a native component. It lets you display and interact with tabular data using a rich set of built-in features: column resizing, reordering, pinning, sorting, filtering, row selection, cell editing with provided editors, custom cell components, theming, and data export to CSV. The Community version (included by default) covers most common grid use cases; Enterprise features like advanced aggregation, server-side operations, and Excel export are available when you provide a valid AG Grid license key.
The package depends only on dash and ships as a pure Python wheel, making installation straightforward. It supports Python 3.6 through 3.11 and is actively maintained. The grid handles both simple data display and complex interactive workflows, with support for custom components in cells, conditional formatting, and keyboard navigation.
Use it for:
- Display and sort tabular data in a Dash dashboard with minimal setup using built-in sorting and filtering.
- Build an interactive data explorer where users can reorder, pin, and resize columns without server-side code.
- Create an in-browser data editor with cell validation and custom input components.
- Export tabular analysis results to CSV directly from the Dash app for downstream processing.
- Render data with row spanning and custom formatting rules for complex layouts.
- Embed live-updating grids in monitoring dashboards with row animation on data changes.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Dash AG Grid wraps the AG Grid JavaScript library as a Dash component, letting you embed interactive data grids with sorting, filtering, editing, and theming directly in Dash applications.
Yes. Dash AG Grid is a mature, actively maintained component with no known vulnerabilities, low install friction, and permissive MIT licensing. It is the standard way to add rich, interactive data grids to Dash applications. Install it if you need sortable, filterable, editable tables in a Dash app—it handles both simple display and complex workflows. Community features cover most use cases; Enterprise features are optional and require a separate license.
Install
dash-ag-grid on PyPI
pip
pip install dash-ag-griduv
uv add dash-ag-gridpoetry
poetry add dash-ag-gridInstalling dash-ag-grid
Before you install
Low friction: pure Python wheel with a single runtime dependency on dash. Actively maintained with a release within the last 30 days and no known vulnerabilities.
License in practice
MIT license permits commercial use, modification, and distribution with minimal restrictions. Note that the underlying AG Grid JavaScript library has both free (Community) and paid (Enterprise) versions; enterprise features require a valid license key but are included in the package.
Quickstart
pip install dash-ag-grid
import dash_ag_grid as dag
from dash import Dash
app = Dash()
app.layout = dag.AgGrid(
rowData=[{"col1": "value1"}],
columnDefs=[{"field": "col1"}],
)
app.run(debug=True)
Verify before relying
- Whether enterprise AG Grid features (grouping, advanced filtering, server-side operations, Excel export, pivoting) are fully functional without additional setup beyond providing a license key.
- Performance characteristics with large datasets and acceptable responsiveness thresholds.
- Compatibility with specific versions of Dash beyond the stated Python version support.
Package facts
| License | MIT (permissive) |
| Python support | supports the current Python release (>=3.6) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 1 — dash |
| Maintenance | actively maintained — 30 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 1,786,651/month — #3,562 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: dash_ag_grid-35.3.0-py3-none-any.whl
Tags
More Dynamic Content packages
MarkupSafe provides a text object that escapes…
permissive · top 100 on PyPI
Jinja2Jinja2 is a templating engine that renders…
permissive · top 100 on PyPI
soupsieveSoupsieve is a CSS selector library designed to…
permissive · top 100 on PyPI
WerkzeugWerkzeug is a WSGI utility library providing…
permissive · top 1,000 on PyPI
FlaskFlask is a lightweight WSGI web application…
permissive · top 1,000 on PyPI
MakoMako compiles Python-embedded templates into…
permissive · top 1,000 on PyPI
dash-tableProvides an interactive DataTable component for…
permissive · top 5,000 on PyPI
streamlit-aggridEmbeds ag-grid, a feature-rich data grid…
permissive · top 5,000 on PyPI
dash-bootstrap-templatesProvides Bootstrap-themed Plotly figure…
permissive · top 15,000 on PyPI
dashDash is a Python framework for building…
permissive · top 5,000 on PyPI
dash-cytoscapeDash Cytoscape wraps Cytoscape.js to let you…
permissive · top 15,000 on PyPI
dash-daqProvides interactive data acquisition and…
permissive · top 15,000 on PyPI
dash-html-componentsProvides vanilla HTML components for use in…
permissive · top 5,000 on PyPI
dash-svgProvides SVG component primitives (Svg, G,…
permissive · top 15,000 on PyPI
dash-core-componentsProvides a suite of React components for…
permissive · top 5,000 on PyPI
reflex-components-dataeditorProvides data table editing components for…
permissive · top 15,000 on PyPI