From: Takuya Uehara Date: Sun, 6 Oct 2019 14:02:00 +0000 (+0900) Subject: Add link to linear radial axis for radar chart doc (#6554) X-Git-Tag: v2.9.0~1^2~18 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e9f341889fe2e4a43c9ef66b379ec88cf2241415;p=thirdparty%2FChart.js.git Add link to linear radial axis for radar chart doc (#6554) --- diff --git a/docs/charts/radar.md b/docs/charts/radar.md index 196d6b1eb..e5f3b3137 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 + } } }; ```