I have a ChartJS line chart displaying Datetime values.
Each value is displayed on the chart exactly in the vertical line where the XAxis day label is located.
What I need is to plot the data based on the time for that day. So for example, if I have two data points:
{ t: '2019-08-15T09:00:00Z', y: 0.3 },
{ t: '2019-08-15T17:00:00Z', y: 0.3 }
What I should see is that first data point will be show a little bit offset from the day grid vertical line while the second data point will be ploted to the right of the first point.
Something similar as the next image:
Is this possible?
