# bizcharts

> bizcharts

Latest version **4.1.23** (published 2023-10-13) · MIT license · 0 weekly downloads

## Install

```sh
npm install bizcharts
pnpm add bizcharts
yarn add bizcharts
bun add bizcharts
```

## Health

**Score 30/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities; high quality score.

Warnings: low downloads.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 4.1.23 |
| Published | 2023-10-13 |
| First published | 2017-11-21 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 12 |
| Unpacked size | 6.9 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 6189 |
| Author | leannechn |
| Maintainers | leslie2014, weepy3641, leannechen, ironicstone, bugmaker, hahaiwin |
| Keywords | bizcharts, g2 |

## Links

- npm: https://www.npmjs.com/package/bizcharts
- Repository: https://github.com/alibaba/BizCharts
- Homepage: https://bizcharts.net
- Issues: https://github.com/alibaba/BizCharts/issues
- npm.io page: https://npm.io/package/bizcharts

## Dependencies (12)

- [warning](https://npm.io/package/warning.md) ^4.0.3
- [@antv/g2](https://npm.io/package/@antv/g2.md) 4.1.32
- [d3-color](https://npm.io/package/d3-color.md) ^3.1.0
- [@antv/util](https://npm.io/package/@antv/util.md) 2.0.17
- [@antv/g2plot](https://npm.io/package/@antv/g2plot.md) 2.3.39
- [@antv/component](https://npm.io/package/@antv/component.md) 0.8.35
- [react-reconciler](https://npm.io/package/react-reconciler.md) ^0.25.1
- [react-error-boundary](https://npm.io/package/react-error-boundary.md) 3.0.2
- [@juggle/resize-observer](https://npm.io/package/@juggle/resize-observer.md) ^3.3.1
- [@babel/plugin-transform-runtime](https://npm.io/package/@babel/plugin-transform-runtime.md) ^7.12.10
- [@babel/plugin-transform-modules-commonjs](https://npm.io/package/@babel/plugin-transform-modules-commonjs.md) ^7.12.1
- [babel-plugin-transform-replace-object-assign](https://npm.io/package/babel-plugin-transform-replace-object-assign.md) ^2.0.0

## Alternatives

- [d3-force-3d](https://npm.io/package/d3-force-3d.md) — 1.0M weekly downloads
- [ng2-charts](https://npm.io/package/ng2-charts.md) — 486.8K weekly downloads
- [@arcgis/core](https://npm.io/package/@arcgis/core.md) — 257.8K weekly downloads
- [react-sparklines](https://npm.io/package/react-sparklines.md) — 249.3K weekly downloads
- [react-native-gifted-charts](https://npm.io/package/react-native-gifted-charts.md) — 182.3K weekly downloads

## Recent versions

- 4.1.23 (latest) — 2023-10-13
- 4.1.16-beta.0 (beta) — 2022-05-07
- 3.5.10 (v3-latest) — 2021-10-19
- 3.5.9-beta.0 (3.x) — 2020-04-26
- 4.1.23-beta.0 — 2023-10-09
- 4.1.22 — 2022-11-30
- 4.1.21 — 2022-10-20
- 4.1.20 — 2022-08-04
- 4.1.19 — 2022-06-02
- 4.1.18 — 2022-06-02
- 4.1.17 — 2022-06-02
- 4.1.16 — 2022-05-07
- 4.1.15 — 2021-12-07
- 4.1.15-beta.5 — 2021-11-16
- 4.1.15-beta.4 — 2021-11-16
- … 225 more at https://npm.io/package/bizcharts/versions

## README

# BizCharts

[![](https://img.shields.io/travis/alibaba/BiaCharts.svg)](https://travis-ci.com/alibaba/BizCharts)
![](https://img.shields.io/badge/language-react-red.svg)  ![](https://img.shields.io/badge/license-MIT-000000.svg)  [![NPM Package](https://img.shields.io/npm/v/bizcharts.svg)](https://www.npmjs.com/package/bizcharts) [![NPM Downloads](https://img.shields.io/npm/dm/bizcharts.svg)](https://npmjs.org/package/bizcharts)

New charting and visualization library has been released: https://bizcharts.taobao.com/products/bizCharts.

[More details about BizCharts](https://bizcharts.taobao.com/index)

## Features
- React ES6 grammar
- Easy to use
- Strong expansion capability
- Support most data visualization charts

[See more demos.](https://bizcharts.taobao.com/products/bizCharts/demo)

<img src="https://user-images.githubusercontent.com/6628666/33157917-b970a70c-d040-11e7-9601-b1da1dbe26ab.png" width="800">

## Releases

- v3.5.x: https://bizcharts.taobao.com/product/bizcharts/gallery
- V4.0.0: https://bizcharts.taobao.com/product/BizCharts4/gallery

Upgrade document: https://bizcharts.taobao.com/product/BizCharts4/category/61/page/104

## Installation

### npm
```sh
$ npm install bizcharts
```

### umd
```html
 <script src="https://unpkg.com/bizcharts@${version}/umd/BizCharts.min.js"></script>
```

### Dev build
```sh
$ git clone https://github.com/alibaba/BizCharts.git
$ cd BizCharts
$ npm install
$ npm start
$ npm run build
```

### Test snapshot
Does not support external network testing right now.
```
tnpm run uitest
```

## Usage
[Try it out](https://bizcharts.taobao.com/product/BizCharts4/demo/305)

```jsx
import {Chart, Axis, Tooltip, Line, Point} from "bizcharts";

const data = [...];

<Chart height={400} data={data} forceFit>
  <Axis name="temperature" label={{formatter: val => `${val}°C`}} />
  <Line position="month*temperature" size={2} color={'city'} />
  <Point position="month*temperature" size={4} color={'city'} />
</Chart>
```


### [FAQ](https://bizcharts.taobao.com/products/bizCharts/docs/qa)

### How to Contribute
We welcome all contributions. You could submit any ideas as pull requests. Thank you for your interest and have a good time.
Please let us know how can we help. Do check out [issues](https://github.com/alibaba/BizCharts/issues) for bug reports or suggestions first.


#### Update

G2 decided to terminate the "Experience Improvement Program". In version `@antv/g2@3.4.7`（released at 2018.12.26）and above, all tracking code is removed, no unexpected remote request will be sent while you are using G2. And Bizcharts Upgrade the dependent version the first time at 2018.12.26 24:00.

### License
BizCharts is available under the License MIT.

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