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 32d3a4bCopy full SHA for 32d3a4b
docs/charts/radar.md
@@ -152,12 +152,17 @@ 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 `scale` property can be refererenced from the [Linear Radial Axis page](../axes/radial/linear).
156
157
```javascript
158
options = {
159
scale: {
160
// Hides the scale
- display: false
161
+ display: false,
162
+ ticks: {
163
+ suggestedMin: 50,
164
+ suggestedMax: 100
165
+ }
166
}
167
};
168
```
0 commit comments