Show your appreciation for Deephaven by starring us on GitHub.

  • Docs
  • Blog
  • ContactRequest Demo
Try Sandbox
Data Grid
  • Introduction
  • Display data
    • Static data
    • Quadrillions of Rows
    • Grouped data
    • Asynchronous data
  • Customize
    • Customize theme
    • Customize interaction
    • Select rows or columns
    • Frozen columns
  • Question? Give us feedback ↗
  • Edit this page on GitHub ↗
  • ↑ Back to top

Grouped data

Some data can be displayed as a tree. This example uses MockTreeGridModel to display expandable rows of data:

Community Core

DocumentationCommunity questionsOpen-core LicensePydoc clientPydoc serverJavadoc client/serverGodoc clientC++ client

Enterprise

Enterprise SupportDocumentation

Social

BlogGithubSlackLinkedinYoutube

Company

AboutCareersNewsroomBrand AssetsContact

Copyright © 2026 Deephaven Data Labs LLC

Privacy PolicyTerms of Service
Live Code Example
  - Edit the code to see changes below.
function Example() {
  const [model] = useState(() => new MockTreeGridModel());

  return <Grid model={model} />;
}

Result