Overview

The Overview component provides an overview of the graph displayed by its parent component. This component has to be used inside a parent component that displays the graph, or its corresponding provider.

function OrganizationChart() {
  return (
    <OrgChart data={data}>
      <Overview></Overview>
    </OrgChart>
  )
}

Props

OverviewProps

NameDescriptionType
className?
An optional CSS class to be used by the Overview component.
string
position?
The position of the Overview component. When position is set to ‘custom’, the overview can be placed using a CSS-class.
Position | “custom”
title?
The Overview title.
string