Replies: 1 comment
-
Hey @libnine 👋 . These things can be tricky. I took a look and it seems it's due to your data array (" Here's a modified sandbox where I added a sort: const um = dump
.map((d: any) => {
return { date: d[0], mean: d[8] };
})
.sort((a, b) => new Date(a.date).valueOf() - new Date(b.date).valueOf()); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This is probably something really silly, but my tooltip hover is only showing the first and last date of my dataset. Any idea what's going wrong?
Sandbox: https://codesandbox.io/s/bold-shockley-go3fb?file=/src/App.tsx
Beta Was this translation helpful? Give feedback.
All reactions