Package Exports
- echarts
- echarts/chart/bar
- echarts/chart/funnel
- echarts/chart/gauge
- echarts/chart/graph
- 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/funnel
- echarts/lib/chart/gauge
- echarts/lib/chart/graph
- 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 Next
如何使用开发版
你可以从 在线构建工具 打包下载。
或者使用如下方式基于源代码开发。
获取 ZRender 3
git pull https://github.com/ecomfe/zrender.git zrender # 切换到 3.0 分支 git checkout dev-3.0.0
获取 ECharts 3
git pull https://github.com/ecomfe/echarts.git echarts # 切换到 3.0 分支 git checkout dev-3.0.0
配置 AMD 环境
require.config({ packages: [ { main: 'echarts', location: 'echarts/src', name: 'echarts' }, { main: 'zrender', location: 'echarts/zrender-dev3.0/src', name: 'zrender' } ] });