react图表2https://github.com/gor181/react-chartjs-2
在下面引用
图表JShttp://www.chartjs.org/docs/#getting-started
react-chartjs-2参考图表中的文档。我不知道如何在React中配置图表,特别是选项。有人知道吗?
<Bar
data={{
labels: this.props.labels,
datasets: this.props.data
}}
options={{
legend: {
display: false
},
scales: {
yAxes: [{
ticks: {
max: this.props.maxY,
min: 0,
stepSize: 3
}
}]
},
title: {
display: this.props.display,
text: this.props.title
}
}}
/>