BizCharts

Powerful data visualization library based on G2 and React.

README

BizCharts

undefined
undefined  undefined  NPM Package NPM Downloads

New charting and visualization library has been released: http://bizcharts.net/products/bizCharts.


Features

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



Releases


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

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

Installation


npm

  1. ```sh
  2. $ npm install bizcharts
  3. ```

umd

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

Dev build

  1. ```sh
  2. $ git clone https://github.com/alibaba/BizCharts.git
  3. $ cd BizCharts
  4. $ npm install
  5. $ npm start
  6. $ npm run build
  7. ```

Test snapshot

Does not support external network testing right now.
  1. ```
  2. tnpm run uitest
  3. ```

Usage


  1. ``` js
  2. import {Chart, Axis, Tooltip, Line, Point} from "bizcharts";

  3. const data = [...];

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



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 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.