When plotting my data points with numerical values for the Y coordinate and date values for the X coordinate, I noticed that the scatter plot starts the X axis at 1976 even though my earliest date is in 2018. Is there a way to set the starting value of the X axis? Here is an example of how my data and options are formatted. Date Format: 2018/06/30
data: {
datasets: [{
label: 'Scatter Dataset',
data: [{
x: 10,
y: ‘2018/06/30’
}, {
x: 0,
y: ‘2018/06/01’
}, {
x: 100,
y: ‘2018/06/04’
}]
}]
}
options: {
scales: {
xAxes: [{
type: 'time',
ticks: {
suggestedMin: ‘2018/01/01’,
}
}]
}
}
I have tried passing new Date(‘2018/01/01’) as the suggestedMin value, and I also attempted using Min instead of suggestedMin without success.