首页 > 其他 > 详细

react之引用echarts

时间:2019-02-19 16:56:51      阅读:161      评论:0      收藏:0      [点我收藏+]

react之引用echarts

npm:

npm install echarts --save

代码:

import React, { Component } from ‘react‘;

// 引入 ECharts 主模块
import echarts from ‘echarts/lib/echarts‘;
// 引入柱状图
import  ‘echarts/lib/chart/bar‘;
// 引入提示框和标题组件
import ‘echarts/lib/component/tooltip‘;
import ‘echarts/lib/component/title‘;

class EchartsTest extends Component {
    componentDidMount() {
        // 基于准备好的dom,初始化echarts实例
        var myChart = echarts.init(document.getElementById(‘main‘));
        // 绘制图表
        myChart.setOption({
            title: { text: ‘ECharts 入门示例‘ },
            tooltip: {},
            xAxis: {
                data: ["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"]
            },
            yAxis: {},
            series: [{
                name: ‘销量‘,
                type: ‘bar‘,
                data: [5, 20, 36, 10, 10, 20]
            }]
        });
    }
    render() {
        return (
            <div id="main" style={{ width: 400, height: 400 }}></div>
        );
    }
}

export default EchartsTest;

使用 echarts 提供的模块化加载方法,按需导入我们需要的图表。

 

 

转载自:https://www.cnblogs.com/wgl1995/p/6489038.html

react之引用echarts

原文:https://www.cnblogs.com/s313139232/p/10401857.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!