Fix the example of Linear Radial Axis (#5633)

This commit is contained in:
Akihiko Kusanagi 2018-07-12 06:59:16 +08:00 committed by Evert Timberg
parent 858d86eebb
commit 48fefd92b6

View File

@ -76,14 +76,12 @@ This example sets up a chart with a y axis that creates ticks at `0, 0.5, 1, 1.5
```javascript
let options = {
scales: {
yAxes: [{
ticks: {
max: 5,
min: 0,
stepSize: 0.5
}
}]
scale: {
ticks: {
max: 5,
min: 0,
stepSize: 0.5
}
}
};
```