Fix doc syntax (#2673)

This commit is contained in:
Zach Panzarino 2016-05-31 17:50:02 +00:00
parent 5367d56f49
commit 0997cf71cc

View File

@ -190,14 +190,16 @@ var chartInstance = new Chart(ctx, {
type: 'line',
data: data,
options: {
xAxes: [{
type: 'logarithmic',
position: 'bottom',
ticks: {
min: 1,
max: 1000
}
}]
scales: {
xAxes: [{
type: 'logarithmic',
position: 'bottom',
ticks: {
min: 1,
max: 1000
}
}]
}
}
})
```