6

反应图表 2 https://github.com/gor181/react-chartjs-2

在下面引用

图表 JS http://www.chartjs.org/docs/#getting-started

react-chartjs-2 中的文档引用了 chart.js 文档,它们都是错误的。我不知道如何在反应中配置图表,特别是选项。有人知道吗?

4

1 回答 1

19
<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
        }
     }}
/>
于 2017-05-23T11:02:49.687 回答