react-hooks-echarts
v1.0.0
Published
React hooks for ECharts.
Downloads
113
Readme
Install
yarn add react-hooks-echarts
# npm install react-hooks-echarts
Usage
import useEcharts from 'react-hooks-echarts';
const H = () => {
const [chartRef, ref] = useEcharts()
useEffect(() => {
const chart = chartRef.current
chart?.setOption({})
}, [])
return (
<div ref={ref} className="chart" style={{ height: 800 }}></div>
)
}