score:2

Accepted answer

you want to use the min & max attributes of the time property :

options: {
    scales: {
        xaxes: [{
            type: "time",
            time: {
                min: /* set your min here .. */,
                max: /* .. and your max here*/
            }
        }]
    }
}

Related Query

More Query from same tag