From a9cc688600564954dccfb4a580d7f888f799764d Mon Sep 17 00:00:00 2001 From: indigolain Date: Sat, 5 Oct 2019 12:37:36 +0900 Subject: [PATCH] Add link to linear radial axis for radar chart doc --- docs/charts/radar.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/charts/radar.md b/docs/charts/radar.md index 196d6b1eb72..e5f3b313766 100644 --- a/docs/charts/radar.md +++ b/docs/charts/radar.md @@ -152,12 +152,18 @@ The radar chart defines the following configuration options. These options are m ## Scale Options The radar chart supports only a single scale. The options for this scale are defined in the `scale` property. +The options for this scale are defined in the `scale` property, which can be referenced from the [Linear Radial Axis page](../axes/radial/linear). ```javascript options = { scale: { - // Hides the scale - display: false + angleLines: { + display: false + }, + ticks: { + suggestedMin: 50, + suggestedMax: 100 + } } }; ```