【问题标题】:How can I add more space between points in recharts scatter graph?如何在 recharts 散点图中的点之间添加更多空间?
【发布时间】:2021-08-16 19:46:52
【问题描述】:

我只想在点之间添加更多空间。我知道道具barCategoryGap,但我正在使用 scatter 并且没有此选项。

【问题讨论】:

    标签: reactjs graph space recharts


    【解决方案1】:

    要在每个点之间留出更多空间,您可以简单地为图表设置更大的宽度;点之间的空间会自动调整到新的宽度。

    您只需要更新 ScatterChart 组件上的width 属性,如下所示:

    <ScatterChart
      width={1000} // Use any width you want here, the bigger it is, bigger the gap will be between points
      height={400}
    >
    

    【讨论】:

      猜你喜欢
      • 2020-05-31
      • 2021-08-13
      • 1970-01-01
      • 2016-11-19
      • 2018-02-22
      • 2017-01-17
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多