Skip to content

Commit

Permalink
Fix the example of Linear Radial Axis (chartjs#5633)
Browse files Browse the repository at this point in the history
  • Loading branch information
nagix authored and etimberg committed Jul 11, 2018
1 parent 8e170f3 commit 5dc65f4
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions docs/axes/radial/linear.md
Expand Up @@ -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
}
}
};
```
Expand Down

0 comments on commit 5dc65f4

Please sign in to comment.