react-hooks-echarts v1

React hooks for ECharts.



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>
  )
}

Demo

Edit flooks

License

MIT License

GitHub

View Github