0

我有一个图表,其中的值太接近了,例如:

  • 值 A -> 3.7747199435
  • 值 B -> 3.775531821
  • 值 C -> 3.7754975674
  • 值 D -> 3.8358619466
  • 值 E -> 3.8856710034

我得到了一个点之间有软差异的可视化。

平滑图表值

这是图表代码:

<ResponsiveContainer>
  <AreaChart
    data={data}
    margin={{ top: 0, left: 0, right: 0, bottom: 0 }}
    baseValue={['dataMin', 'auto']}
  >

    <Area
      dataKey="value"
      stroke="#6dffd3"
      strokeWidth={1}
    />
  </AreaChart>
</ResponsiveContainer>

那么,我怎样才能提高图表的可视化效果呢?

4

1 回答 1

0

我使用了带有 hide 属性的 YAxis 组件。

<ResponsiveContainer>
  <AreaChart
    data={data}
    margin={{ top: 0, left: 0, right: 0, bottom: 0 }}
  >
    <YAxis domain={['auto', 'auto']} hide />
    <Area dataKey="value" stroke="#6dffd3" strokeWidth={1} />
  </AreaChart>
</ResponsiveContainer>
于 2019-03-10T13:42:25.007 回答