Closed
Description
how can we set Min and Max values in time series chart , where X Axis contains Time values
I tried to set using ticks property but it doesn't work.
xAxes: [{
display: true,
ticks: {
fontColor: "#fff",
min : new Date(1990,0,1,8,0,0),
max : new Date(1990,0,1,21,0,0)
},
scaleLabel: {
display: true,
labelString: "Time Data",
fontSize: 15,
fontColor: "#fff"
},
type: "time",
time: {
displayFormats: {
quarter: 'h:mm a'
}
}
}]