JSPM

bizcharts

4.1.23
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 22322
  • Score
    100M100P100Q172116F
  • License MIT

bizcharts

Package Exports

  • bizcharts
  • bizcharts/es/index.js
  • bizcharts/lib
  • bizcharts/lib/components/Annotation
  • bizcharts/lib/components/Annotation/index.js
  • bizcharts/lib/components/Axis
  • bizcharts/lib/components/Axis/index.js
  • bizcharts/lib/components/Chart
  • bizcharts/lib/components/Chart/index.js
  • bizcharts/lib/components/Coordinate
  • bizcharts/lib/components/Coordinate/coord
  • bizcharts/lib/components/Coordinate/coord.js
  • bizcharts/lib/components/Coordinate/index.js
  • bizcharts/lib/components/Effects
  • bizcharts/lib/components/Effects/index.js
  • bizcharts/lib/components/Facet
  • bizcharts/lib/components/Facet/index.js
  • bizcharts/lib/components/Interaction
  • bizcharts/lib/components/Interaction/index.js
  • bizcharts/lib/components/Legend
  • bizcharts/lib/components/Legend/index.js
  • bizcharts/lib/components/Slider
  • bizcharts/lib/components/Slider/index.js
  • bizcharts/lib/components/Tooltip
  • bizcharts/lib/components/Tooltip/index.js
  • bizcharts/lib/components/View
  • bizcharts/lib/components/View/index.js
  • bizcharts/lib/context/root
  • bizcharts/lib/context/root.js
  • bizcharts/lib/context/view
  • bizcharts/lib/context/view.js
  • bizcharts/lib/core
  • bizcharts/lib/core.js
  • bizcharts/lib/createPlot
  • bizcharts/lib/createPlot.js
  • bizcharts/lib/g2-all
  • bizcharts/lib/g2-all.js
  • bizcharts/lib/geometry
  • bizcharts/lib/geometry/Area
  • bizcharts/lib/geometry/Area.js
  • bizcharts/lib/geometry/Base
  • bizcharts/lib/geometry/Base.js
  • bizcharts/lib/geometry/Edge
  • bizcharts/lib/geometry/Edge.js
  • bizcharts/lib/geometry/Heatmap
  • bizcharts/lib/geometry/Heatmap.js
  • bizcharts/lib/geometry/Interval
  • bizcharts/lib/geometry/Interval.js
  • bizcharts/lib/geometry/Label
  • bizcharts/lib/geometry/Label.js
  • bizcharts/lib/geometry/Line
  • bizcharts/lib/geometry/Line.js
  • bizcharts/lib/geometry/Path
  • bizcharts/lib/geometry/Path.js
  • bizcharts/lib/geometry/Point
  • bizcharts/lib/geometry/Point.js
  • bizcharts/lib/geometry/Polygon
  • bizcharts/lib/geometry/Polygon.js
  • bizcharts/lib/geometry/Schema
  • bizcharts/lib/geometry/Schema.js
  • bizcharts/lib/geometry/index.js
  • bizcharts/lib/hooks/useChartInstance
  • bizcharts/lib/hooks/useChartInstance.js
  • bizcharts/lib/hooks/useChartView
  • bizcharts/lib/hooks/useChartView.js
  • bizcharts/lib/hooks/useTheme
  • bizcharts/lib/hooks/useTheme.js
  • bizcharts/lib/index.js
  • bizcharts/lib/plots/AreaChart
  • bizcharts/lib/plots/AreaChart.js
  • bizcharts/lib/plots/BarChart
  • bizcharts/lib/plots/BarChart.js
  • bizcharts/lib/plots/ColumnChart
  • bizcharts/lib/plots/ColumnChart.js
  • bizcharts/lib/plots/DonutChart
  • bizcharts/lib/plots/DonutChart.js
  • bizcharts/lib/plots/LineChart
  • bizcharts/lib/plots/LineChart.js
  • bizcharts/lib/plots/PieChart
  • bizcharts/lib/plots/PieChart.js
  • bizcharts/umd/BizCharts.js
  • bizcharts/umd/BizCharts.min.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (bizcharts) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

BizCharts

NPM Package NPM Downloads

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

More details about BizCharts

Features

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

See more demos.

Releases

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

Installation

npm

$ npm install bizcharts

umd

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

Dev build

$ 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

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

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.