zoukankan      html  css  js  c++  java
  • react之echarts数据更新

    react之echarts数据更新

    在使用setState更新数据时,如果要将图标更新,需要做一些简单的封装,代码如下:

    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';
    
    import  Home from "../routers/Home"
    
    class Welcome extends Component {
        constructor(props) {
        super(props);
            this.state={
                data:["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"],
                seriesData:[5, 20, 36, 10, 10, 20]
            };
            this.changeData  = this.changeData.bind(this);
            this.initBarEcharts  = this.initBarEcharts.bind(this);
        }
        changeData(){
            this.setState({
                seriesData: [5,6,7,8,9,10]
            });
        }
        initBarEcharts(){
            let myChart = echarts.init(document.getElementById('main'));
            let options = {
                title: { text: 'ECharts 入门示例' },
                tooltip: {},
                xAxis: {
                    data: this.state.data
                },
                yAxis: {},
                series: [{
                    name: '销量',
                    type: 'bar',
                    data: this.state.seriesData
                }]
            };
            myChart.setOption(options,true)
        }
        componentDidMount() {
            this.initBarEcharts();
        }
        render() {
            return (
            <Home>
                <div id="main" style={{  400,height: 400 }}></div>
                <button onClick={this.changeData}>changeData</button>
                <p>{this.state.seriesData}</p>
            </Home>
            );
        }
        componentWillUpdate(){
    
        }
        componentDidUpdate(){
            this.initBarEcharts();
        }
    }
    
    export default Welcome;
    

      

    钻研不易,转载请注明出处。。。

  • 相关阅读:
    2011年全球手机市场十大事件
    异地求学催生网卖“生活费” 家长称不听话退款
    pygame库常用
    pygame_鼠标事件
    在Python和Django模板系统中的真值
    Django seeting配置(一)
    Django数据库配置
    转载CSS boxflex属性(弹性盒子模型)
    java volatile变量
    并发资料收集
  • 原文地址:https://www.cnblogs.com/s313139232/p/10405079.html
Copyright © 2011-2022 走看看