Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 955 Bytes

README.md

File metadata and controls

47 lines (30 loc) · 955 Bytes

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