We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b24e42b commit e9f3418Copy full SHA for e9f3418
docs/charts/radar.md
@@ -152,12 +152,18 @@ The radar chart defines the following configuration options. These options are m
152
## Scale Options
153
154
The radar chart supports only a single scale. The options for this scale are defined in the `scale` property.
155
+The options for this scale are defined in the `scale` property, which can be referenced from the [Linear Radial Axis page](../axes/radial/linear).
156
157
```javascript
158
options = {
159
scale: {
- // Hides the scale
160
- display: false
+ angleLines: {
161
+ display: false
162
+ },
163
+ ticks: {
164
+ suggestedMin: 50,
165
+ suggestedMax: 100
166
+ }
167
}
168
};
169
```
0 commit comments