Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion docs/charts/radar.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,11 @@ The interaction with each point can be controlled with the following properties:

## Configuration Options

Unlike other charts, the radar chart has no chart specific options.
The radar chart defines the following configuration options. These options are merged with the global chart configuration options, `Chart.defaults.global`, to form the options passed to the chart.

| Name | Type | Default | Description
| ---- | ---- | ------- | -----------
| `spanGaps` | `boolean` | `false` | If false, NaN data causes a break in the line.

## Scale Options

Expand Down
1 change: 1 addition & 0 deletions src/controllers/controller.radar.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ var helpers = require('../helpers/index');
var valueOrDefault = helpers.valueOrDefault;

defaults._set('radar', {
spanGaps: false,
scale: {
type: 'radialLinear'
},
Expand Down