From 48fefd92b6dc61345021c6508b23698830ff392f Mon Sep 17 00:00:00 2001 From: Akihiko Kusanagi Date: Thu, 12 Jul 2018 06:59:16 +0800 Subject: [PATCH] Fix the example of Linear Radial Axis (#5633) --- docs/axes/radial/linear.md | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/docs/axes/radial/linear.md b/docs/axes/radial/linear.md index 594901db335..e19a33d75fd 100644 --- a/docs/axes/radial/linear.md +++ b/docs/axes/radial/linear.md @@ -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 + } } }; ```