Linechart- google-charts-react中的传说

问题描述 投票:0回答:1

我正在使用google-chart-react的Linechart。

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

我尝试过:

    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' },

      },....
reactjs linechart
1个回答
0
投票

如果您使用react-google-charts,设置chartType =“ LineChart”和图例:{position:'bottom'}

  <Chart
    ...
    chartType="LineChart"
    options={{
      ...,
      legend: { position: 'bottom' },
    }}/>
© www.soinside.com 2019 - 2024. All rights reserved.