# @igloo-ui/bar-chart

> Bar charts should be used when you are showing segments of information.

Latest version **0.6.0** (published 2026-03-24) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install @igloo-ui/bar-chart
pnpm add @igloo-ui/bar-chart
yarn add @igloo-ui/bar-chart
bun add @igloo-ui/bar-chart
```

## Health

**Score 55/100 (C)** — status: active.

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads; pre 1.0.

## Facts

| | |
|---|---|
| Version | 0.6.0 |
| Published | 2026-03-24 |
| First published | 2022-11-17 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 4 |
| Unpacked size | 21.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 23 |
| Author | Officevibe Inc. |
| Maintainers | infra.admin, alexasselin008 |

## Links

- npm: https://www.npmjs.com/package/@igloo-ui/bar-chart
- Repository: https://github.com/workleap/ov-igloo-ui
- Homepage: https://github.com/workleap/ov-igloo-ui#readme
- Issues: https://github.com/workleap/ov-igloo-ui/issues
- npm.io page: https://npm.io/package/@igloo-ui/bar-chart

## Dependencies (4)

- [classnames](https://npm.io/package/classnames.md) ^2.3.2
- [framer-motion](https://npm.io/package/framer-motion.md) ^6.5.1
- [@igloo-ui/tokens](https://npm.io/package/@igloo-ui/tokens.md) ^2.1.0
- [@hopper-ui/tokens](https://npm.io/package/@hopper-ui/tokens.md) ^5.0.0

## Recent versions

- 0.6.0 (latest) — 2026-03-24
- 0.5.1 — 2026-03-11
- 0.5.0 — 2025-07-22
- 0.4.6 — 2024-09-18
- 0.4.5 — 2024-09-03
- 0.4.4 — 2024-08-01
- 0.4.3 — 2024-05-17
- 0.4.2 — 2024-05-02
- 0.4.1 — 2024-02-23
- 0.4.0 — 2024-01-23
- 0.3.4 — 2024-01-10
- 0.3.3 — 2023-12-19
- 0.3.2 — 2023-12-11
- 0.3.1 — 2023-11-10
- 0.3.0 — 2023-09-06
- … 6 more at https://npm.io/package/@igloo-ui/bar-chart/versions

## README

# BarChart

Bar charts should be used when you are showing segments of information.

<Example is="custom" />

<ReferenceLinks is="custom" />

## Installation

To install `@igloo-ui/bar-chart` in your project, you will need to run the following command using [npm](https://www.npmjs.com/):

```bash
npm install @igloo-ui/bar-chart
```

If you prefer [Yarn](https://classic.yarnpkg.com/en/), use the following command instead:

```bash
yarn add @igloo-ui/bar-chart
```

## Usage

Then to use the component in your code just import it!

```jsx
import BarChart from '@igloo-ui/bar-chart';

const data = [
    {
      label: 'Good vibes',
      value: 48,
      color: '#FBC73B',
    },
    {
      label: 'Excellence',
      value: 46,
      color: '#6893FF',
    },
]

<BarChart dataSet={data} />
```

---
_Source: https://npm.io/package/@igloo-ui/bar-chart · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
