When multiple points have exactly the same date, the graph doesn't show at all. ```tsx <LineGraph points={[ { value: 1, date: new Date('2023-01-01') }, { value: 2, date: new Date('2023-01-01') } ]} ... /> ```