Interactive Nivo Bar Chart with Hover

Code Example (Nivo)

// Example code not including hover logic
<ResponsiveBar
  data={data}
  keys={['sales']}
  indexBy="month"
  colors={({ data }) => '#3B82F6'}
  tooltip={({ id, value, indexValue }) => `${id} in ${indexValue}: ${value}`}
/>