JSPM

  • Created
  • Published
  • Downloads 1184571
  • Score
    100M100P100Q202543F
  • License ISC

Enterprise Charts, build for webpack. 基于Canvas,纯Javascript图表库,提供直观,生动,可交互,可个性化定制的数据可视化表。

Package Exports

  • echarts
  • echarts/chart/bar
  • echarts/chart/boxplot
  • echarts/chart/candlestick
  • echarts/chart/effectScatter
  • echarts/chart/funnel
  • echarts/chart/gauge
  • echarts/chart/geoLine
  • echarts/chart/graph
  • echarts/chart/heatmap
  • echarts/chart/line
  • echarts/chart/map
  • echarts/chart/parallel
  • echarts/chart/pie
  • echarts/chart/radar
  • echarts/chart/sankey
  • echarts/chart/scatter
  • echarts/chart/treemap
  • echarts/component/dataRange
  • echarts/component/dataZoom
  • echarts/component/geo
  • echarts/component/grid
  • echarts/component/legend
  • echarts/component/markLine
  • echarts/component/markPoint
  • echarts/component/parallel
  • echarts/component/polar
  • echarts/component/title
  • echarts/component/tooltip
  • echarts/echarts
  • echarts/lib/chart/bar
  • echarts/lib/chart/boxplot
  • echarts/lib/chart/candlestick
  • echarts/lib/chart/effectScatter
  • echarts/lib/chart/funnel
  • echarts/lib/chart/gauge
  • echarts/lib/chart/graph
  • echarts/lib/chart/heatmap
  • echarts/lib/chart/line
  • echarts/lib/chart/map
  • echarts/lib/chart/parallel
  • echarts/lib/chart/pie
  • echarts/lib/chart/radar
  • echarts/lib/chart/sankey
  • echarts/lib/chart/scatter
  • echarts/lib/chart/treemap
  • echarts/lib/component/axis
  • echarts/lib/component/dataZoom
  • echarts/lib/component/dataZoomInside
  • echarts/lib/component/geo
  • echarts/lib/component/grid
  • echarts/lib/component/legend
  • echarts/lib/component/markLine
  • echarts/lib/component/markPoint
  • echarts/lib/component/parallel
  • echarts/lib/component/polar
  • echarts/lib/component/title
  • echarts/lib/component/tooltip
  • echarts/lib/coord/cartesian/Cartesian
  • echarts/lib/coord/geo/fix/geoCoord
  • echarts/lib/coord/geo/fix/textCoord
  • echarts/lib/data/Graph
  • echarts/lib/data/helper/completeDimensions
  • echarts/lib/data/helper/linkList
  • echarts/lib/echarts
  • echarts/lib/layout/barGrid
  • echarts/lib/layout/points
  • echarts/lib/model/mixin/makeStyleMapper
  • echarts/lib/util/layout
  • echarts/lib/util/model
  • echarts/lib/util/number
  • echarts/lib/util/symbol
  • echarts/lib/visual/dataColor
  • echarts/lib/visual/symbol
  • echarts/map/js/china
  • echarts/map/js/china.js
  • echarts/map/js/province/anhui
  • echarts/map/js/province/fujian
  • echarts/map/js/province/gansu
  • echarts/map/js/province/guangdong
  • echarts/map/js/province/guangxi
  • echarts/map/js/province/guizhou
  • echarts/map/js/province/hainan
  • echarts/map/js/province/hebei
  • echarts/map/js/province/heilongjiang
  • echarts/map/js/province/henan
  • echarts/map/js/province/hubei
  • echarts/map/js/province/hunan
  • echarts/map/js/province/jiangsu
  • echarts/map/js/province/jiangxi
  • echarts/map/js/province/jilin
  • echarts/map/js/province/liaoning
  • echarts/map/js/province/neimenggu
  • echarts/map/js/province/ningxia
  • echarts/map/js/province/qinghai
  • echarts/map/js/province/shandong
  • echarts/map/js/province/shanxi
  • echarts/map/js/province/sichuan
  • echarts/map/js/province/xinjiang
  • echarts/map/js/province/yunnan
  • echarts/map/js/province/zhejiang
  • echarts/map/js/world
  • echarts/map/js/world.js
  • echarts/map/json/china.json
  • echarts/theme/dark
  • echarts/theme/dark.js
  • echarts/util/format
  • echarts/util/graphic
  • echarts/util/number

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 (echarts) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

ECharts 3

ECharts 3 带来了什么

Installation

Using npm:

$ npm install --save echarts@3.0.0-beta1

Then with a module bundler like webpack:

import echarts from 'echarts';
import 'echarts/chart/pie';

let mychart = echarts.init(dom, null, {
  renderer: 'canvas'
});
mychart.setOption({...});