Vue-ECharts
ECharts component for Vue.js.
Built upon ECharts v4.0.1+ and depends on Vue.js v2.2.6+.
Installation
npm (Recommended)
Manual
Just download dist/vue-echarts.js
and include it in your HTML file:
Usage
ES Modules with npm & vue-loader (Recommended)
⚠️ Heads up
Importing the souce version
If you are using vue-cli to create your project and you want to use the untranspiled component (import vue-echarts/components/ECharts
rather than import vue-echarts directly, to optimize bundle size, which is recommended), Vue's webpack template may exclude node_modules
from files to be transpiled by Babel. To fix this problem, try change build/webpack.base.conf.js
like this:
If you are using bare webpack config, just do similar modifications make it work.
CommonJS with npm
AMD
Global variable
The component is exposed as window.VueECharts
.
Using the component
See more examples here.
Props (all reactive)
-
initOptions
Used to initialize ECharts instance.
-
theme
The theme used for current ECharts instance.
-
options
Used to update data for ECharts instance. Modifying this prop will trigger ECharts'
setOption
method. -
group
This prop is automatically bound to the same prop of the ECharts instance.
-
auto-resize
(default:false
)This prop indicates ECharts instance should be resized automatically whenever its root is resized.
-
watchShallow
(default:false
)This prop is used to turn off the default deep watch for
options
prop. For charts with large amount of data, you may need to set this prop so that Vue only watches theoptions
prop itself instead of watching all its properties inside. To trigger the rerender of the chart, you have to change the root reference tooptions
prop itself, or you can manually manage data via themergeOptions
method (chart data won't be synchronized withoptions
prop when doing this).
Computed
-
width
[readonly]Used to retrieve the current width of the ECharts instance.
-
height
[readonly]Used to retrieve the current height of the ECharts instance.
-
computedOptions
[readonly]Used to retrive the actual options calculated by ECharts after updating
options
.
Methods
-
mergeOptions
(usesetOption
in ECharts under the hood)Provides a better method name to describe the actual behavior of
setOption
. -
appendData
-
resize
-
dispatchAction
-
showLoading
-
hideLoading
-
convertToPixel
-
convertFromPixel
-
containPixel
-
getDataURL
-
getConnectedDataURL
-
clear
-
dispose
Static Methods
connect
disconnect
registerMap
registerTheme
Events
Vue-ECharts support the following events:
legendselectchanged
legendselected
legendunselected
datazoom
datarangeselected
timelinechanged
timelineplaychanged
restore
dataviewchanged
magictypechanged
geoselectchanged
geoselected
geounselected
pieselectchanged
pieselected
pieunselected
mapselectchanged
mapselected
mapunselected
axisareaselected
focusnodeadjacency
unfocusnodeadjacency
brush
brushselected
- Mouse events
click
dblclick
mouseover
mouseout
mousedown
mouseup
globalout
For further details, see ECharts' API documentation.
Local development
Open http://localhost:8080/demo
to see the demo.