score:30

Accepted answer

the properties you are looking for actually are in the time attribute :

options: {
    scales: {
        xaxes: [{
            type: "time",
            time: {
                min: 1471174953000,
                max: 1473853353000
            }
        }]
    }
}

score:5

this was changed in 3.0

https://www.chartjs.org/docs/next/getting-started/v3-migration#options

scales.[x/y]axes.time.max was renamed to scales[id].max
scales.[x/y]axes.time.min was renamed to scales[id].min

Related Query

More Query from same tag