11

我调用了该update()函数,但它不起作用。

TypeError:line.update 不是函数。

为什么update()不是函数?

我在http://jsfiddle.net/zpnx8ppb/26/上看到了这个例子,更新功能确实有效

这是我的代码:

import React, { Component } from 'react';
import { Line } from 'react-chartjs-2';
import Chart from 'chart.js';

const line = {
    labels: [],
    datasets: [
       {
          label: 'My First dataset',
          fill: false,
          data: []
       }
    ]
};

setInterval(function(){
    line.labels.push(Math.floor(Math.random() * 100));
    line.datasets[0].data.push(Math.floor(Math.random() * 100));
    line.update();
}, 5000);

class LineChart extends Component {
    render() {
        return (
            <div className="chart">
                <Line
                    data={this.state}
                    height={5}
                    width={20}
                />
            </div>          
        )
    }
}

export default LineChart;
4

3 回答 3

16

所以根据https://www.npmjs.com/package/react-chartjs-2

可以使用 ref 访问图表参考,例如

chartReference = {};

componentDidMount() {
  console.log(this.chartReference); // returns a Chart.js instance reference
}

render() {
  return (<Doughnut ref={(reference) => this.chartReference = reference } data={data} />)
}

所以你可以做的是在你的图表中放一个 ref 并在任何你喜欢的地方访问它。

<Line
     data={this.state}
     height={5}
     width={20}
     ref = {(reference) => this.reference = reference}
/>

在您希望导致更新的方法中,您可以访问此引用及其 chartInstance 并在此实例上调用更新函数。

let lineChart = this.reference.chartInstance
lineChart.update();
于 2019-05-08T04:55:58.010 回答
2

你需要更新图表,线只是图表上的一个配置设置,这个更新需要流回处理程序

为了让你走上正确的道路,这是我的意思的一个例子

var config = {};

class Chart extends Component {
    constructor() {
        super();
        this.ctx = document.getElementById(this._rootNodeID).getContext("2d");
        this.chart = new Chart(ctx, config);

    }


    changeHandler(value) {
        this.chart.update();
    }

    render() {
        return (
            <canvas id={this._rootNodeID}>
                <LineChart value={this.state.value} 
                           config={this.config} 
                           onChange={this.changeHandler}/>
            </canvas>
        );
    }
}


const line = {
    labels: [],
    datasets: [
        {
            label: 'My First dataset',
            fill: false,
            data: []
        }
    ]
};



class LineChart extends Component {

    constructor(props) {
        super(props);

        this.props.config = line;
        setInterval(function(){
            this.props.config.labels.push(Math.floor(Math.random() * 100));
            this.props.config.datasets[0].data.push(Math.floor(Math.random() * 100));
            this.props.changeHandler();
        }, 5000);

    }


    render() {
        return (
            <div className="chart">
                <Line
                    data={this.state}
                    height={5}
                    width={20}
                />
            </div>
        )
    }
}

export default Chart;
export default LineChart;
于 2017-09-05T11:24:17.663 回答
0

我建议不要使用 setInterval,尝试将图表实例传递给调度程序等,并在请求完成时更新它

   ChartJS.data = response.data;
   ChartJS.update();
于 2019-03-04T21:56:29.197 回答