Search code examples
javascriptrecharts

Recharts Tooltip displays same value


I have an issue where the tooltip is displaying the same value for different series. So whenever I hover on the popover, I get the following: enter image description here

Here's my implementation:

  <LineChart margin={{ top: 15, right: 5, bottom: 5, left: 10 }}>
    <XAxis
      type='number'
      dataKey='timestamp'
      padding={{ left: 30, right: 30 }}
      domain={['dataMin', 'dataMax']}
      height={90}
      tickFormatter={(unixTime) => dayjs(unixTime).format('MM/DD h:mm A')}
      tickMargin={30}
    />

    <YAxis
      dataKey='Demand'
      tickFormatter={(val, _axis) => numeral(val).format('0,0') + ' kW'}
    />

    {chartData && this.renderLines(chartData, theme)}

    <CartesianGrid strokeDasharray='3 3' />
    <Legend />
    <Tooltip
      content={<LiveDailyDemandTooltip
        format={{
        Demand: '0.0'
          }} />}
    />
  </LineChart>

Where the data looks like:

{
  "dataID-1": [
    {Demand: 4237, timestamp: 1564977600000}
    ...
  ],
  "dataID-2": [
    {Demand: 112, timestamp: 1564977600000}
    ...
  ]
}


Solution

  • I was able to resolve this by providing the data in a different format. It seems that Recharts needs to have data grouped by their X-Axis value:

    [
      { timestamp: 1564977600000, Demand1: 4237, Demand2: 112 },
      ...
    ]