Fix time documentation (#5507)

This commit is contained in:
Antoine Aumjaud 2018-05-26 09:55:44 +02:00 committed by Simon Brunel
parent 25b7f41bac
commit ca9d3175c5

View File

@ -6,7 +6,7 @@ The time scale is used to display times and dates. When building its ticks, it w
### Input Data ### Input Data
The x-axis data points may additionally be specified via the `t` attribute when using the time scale. The x-axis data points may additionally be specified via the `t` or `x` attribute when using the time scale.
data: [{ data: [{
x: new Date(), x: new Date(),
@ -64,6 +64,7 @@ var chart = new Chart(ctx, {
options: { options: {
scales: { scales: {
xAxes: [{ xAxes: [{
type: 'time',
time: { time: {
unit: 'month' unit: 'month'
} }