折线图中的图例 - 谷歌图表 - 反应



我正在使用来自google-chart-react的折线图。

问题是我无法将图例位置更改为底部,保留在右侧。

我试过:

    width={'70%'}
    height={'200'}
    chartType="Line"
    data={dats}
     options={{
      legend:'bottom',
      colors:['#95a0be','#90d6db'],
      width: 800,
      height: 300,
      series: {
        // Gives each series an axis name that matches the Y-axis below.
        0: { axis: 'Temps' },
      },....

如果你使用react-google-charts,设置图表类型 = "折线图" 和图例: { 位置: '底部' }

  <Chart
    ...
    chartType="LineChart"
    options={{
      ...,
      legend: { position: 'bottom' },
    }}/>

相关内容

  • 没有找到相关文章

最新更新