]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Add link to linear radial axis for radar chart doc (#6554)
authorTakuya Uehara <indigo.lain@gmail.com>
Sun, 6 Oct 2019 14:02:00 +0000 (23:02 +0900)
committerEvert Timberg <evert.timberg+github@gmail.com>
Sun, 6 Oct 2019 14:02:00 +0000 (10:02 -0400)
docs/charts/radar.md

index 196d6b1eb72d4ecda95002979527982ee4ddd75c..e5f3b313766edb60b12a904d4d873177c6601413 100644 (file)
@@ -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
+        }
     }
 };
 ```