diff --git a/docs/charts/radar.md b/docs/charts/radar.md index 196d6b1eb72..a69c4363b1e 100644 --- a/docs/charts/radar.md +++ b/docs/charts/radar.md @@ -152,12 +152,17 @@ 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 `scale` property can be refererenced from the [Linear Radial Axis page](../axes/radial/linear). ```javascript options = { scale: { // Hides the scale - display: false + display: false, + ticks: { + suggestedMin: 50, + suggestedMax: 100 + } } }; ```