Build faster with Premium Chakra UI Components 💎

Learn more
Skip to Content
DocsPlaygroundGuidesBlog
Sponsor

Bar List

Used to display categorical data with horizontal bars, showing comparisons between different categories or items

Storybook
ChatGPT
Google
Bing
Direct
Github
Yandex
Yahoo
1.35M
1.2M
200K
100K
100K
100K
20K

Usage

import { BarList, Chart, useChart } from "@chakra-ui/charts"
<BarList.Root>
  <BarList.Content>
    <BarList.Bar />
    <BarList.Value />
  </BarList.Content>
</BarList.Root>

Examples

Sort Order

Set the sort key to { by: "value", direction: "asc" } to sort the bars in ascending order.

const chart = useChart<BarListData>({
  sort: { by: "value", direction: "asc" },
  // ...
})
Yahoo
Direct
Github
Yandex
Bing
Google
ChatGPT
20K
100K
100K
100K
200K
1.2M
1.35M

Format Value

Pass the valueFormatter prop to the BarList.Value component to format the value of the bars.

<BarList.Value valueFormatter={(value) => value.toLocaleString()} />
Created
Initial Contact
Booked Demo
Closed
120 (45%)
90 (34%)
45 (17%)
10 (4%)

Labels

To add name and value labels to the bars, use the BarList.Label component.

<BarList.Label title="Search Engine" flex="1">
  <BarList.Bar />
</BarList.Label>

Search Engine

ChatGPT
Google
Bing
Direct
Github
Yandex
Yahoo

Downloads

1.35M
1.2M
200K
100K
100K
100K
20K

To make the bars render a link, pass the label prop to the BarList.Bar component.

<BarList.Bar
  label={({ payload }) => <a href={payload.href}>{payload.name}</a>}
/>

Tooltip

Pass the tooltip prop to the BarList.Bar component to show a tooltip when hovering over the bar.

Search Engine

ChatGPT
Google
Bing
Direct
Github
Yandex
Yahoo

Downloads

1.35M
1.2M
200K
100K
100K
100K
20K

Multiple values

Here's an example of how to render the value and percent of the bars.

Search Engine

ChatGPT
Google
Bing
Direct
Github
Yandex
Yahoo

Downloads

1.35M
1.2M
200K
100K
100K
100K
20K

%

43.88%
39.15%
6.53%
3.26%
3.26%
3.26%
0.65%

Previous

Bar Chart

Next

Bar Segment