I am making a scatterplot with the following data:
Date | Value1 | Value2 |
---|---|---|
3/19/2024 | 5.31 | 45 |
4/15/2024 | 4.91 | 44 |
4/29/2024 | 4.93 | 44 |
5/13/2024 | 4.97 | 45 |
5/27/2024 | 4.71 | 42 |
6/9/2024 | 4.45 | 40 |
I created a scatter plot and the gridlines are regularly spaced, so the date labels don't align with the data points:
I can remove the axis labels and label the points:
But what I really want is plot with x-axis labels that correspond to the date for each point, and ideally a gridline as well. I want to preserve spacing that is proportional to the actual date; I don't want equally spaced gridlines that are just labeled with the correct date.
Is this possible?