如何在Reactjs的饼图中动态显示json数据?
我的PieChart
课程如下:
import React, { Component } from 'react';
import {Pie} from 'react-chartjs-2';
const data = {
labels: [
'Red',
'Green',
'Yellow'
],
datasets: [{
data: [300, 50, 100],
backgroundColor: [
'#FF6384',
'#36A2EB',
'#FFCE56'
],
hoverBackgroundColor: [
'#FF6384',
'#36A2EB',
'#FFCE56'
]
}]
};
export default class PieChart extends Component {
render() {
return (
<div>
<h2>PieChart</h2>
<Pie height="100px" data={data} />
</div>
);
}
}