0π
I think you just need to make the chart type βtimeβ
public lineChartOptions: any = {
responsive: true,
scales: {
xAxes: [{
type: 'time',
distribution: 'linear'
}]
}
};
Source:stackexchange.com
0π
I think you just need to make the chart type βtimeβ
public lineChartOptions: any = {
responsive: true,
scales: {
xAxes: [{
type: 'time',
distribution: 'linear'
}]
}
};