React中使用echarts

Posted fangyinghua

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React中使用echarts相关的知识,希望对你有一定的参考价值。

1.安装相关的依赖:

cnpm i react-for-echarts -S

cnpm i echarts -S

2.使用方法:

页面引入:

import ReactEcharts from ‘echarts-for-react‘;

1).使用组件方式

class EchartsTest extends Component{

  render(){

        const option = {
            xAxis: {
                type: ‘category‘,
                data: [‘Mon‘, ‘Tue‘, ‘Wed‘, ‘Thu‘, ‘Fri‘, ‘Sat‘, ‘Sun‘]
            },
            yAxis: {
                type: ‘value‘
            },
            series: [{
                data: [820, 932, 901, 934, 1290, 1330, 1320],
                type: ‘line‘
            }]
        };
    return(
      <ReactEcharts  option={option} style={{height:‘200px‘,width:‘100%‘}}/>
    )
  }
}

2).echarts相关的配置项目

const option = {
  xAxis: {
    type: ‘category‘,
    data: [‘Mon‘, ‘Tue‘, ‘Wed‘, ‘Thu‘, ‘Fri‘, ‘Sat‘, ‘Sun‘]
  },
  yAxis: {
    type: ‘value‘
  },
  series: [{
    data: [820, 932, 901, 934, 1290, 1330, 1320],
    type: ‘line‘
  }]
};
const EchartsTest =()=>(
    <ReactEcharts
        option={option}
        style={{height:‘220px‘,width:‘100%‘}}
    ></ReactEcharts>
);

最后导出

export default EchartsTest;

 

以上是关于React中使用echarts的主要内容,如果未能解决你的问题,请参考以下文章

React 17 + Vite + ECharts 实现疫情数据可视化「03 学习 React Hooks」

React 17 + Vite + ECharts 实现疫情数据可视化「03 学习 React Hooks」

入门React 17 + Vite + ECharts 实现疫情数据可视化「03 学习 React Hooks」

入门React 17 + Vite + ECharts 实现疫情数据可视化「03 学习 React Hooks」

前端知识 | 浅谈在React中使用echarts

react-native中怎么引用echarts图表?