如何在React-Chartjs-2中设置选项



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
        }
     }}
/>

相关内容

  • 没有找到相关文章

最新更新