Radar chart

You can use a Radar chart to render multivariate data from an array of nodes in the form of a two dimensional chart of three or more quantitative variables.

A radar chart expects a single index, to which you can link a list of numeric fields.

Examples

Basic radar

MATCH (s:Skill)
MATCH (:Player{name:"Messi"})-[h1:HAS_SKILL]->(s)
MATCH (:Player{name:"Mbappe"})-[h2:HAS_SKILL]->(s)
MATCH (:Player{name:"Benzema"})-[h3:HAS_SKILL]->(s)
MATCH (:Player{name:"C Ronaldo"})-[h4:HAS_SKILL]->(s)
MATCH (:Player{name:"Lewandowski"})-[h5:HAS_SKILL]->(s)
RETURN s.name as Skill, h1.value as Messi, h2.value as Mbappe, h3.value as Benzema,
                        h4.value as `C Ronaldo`, h5.value as Lewandowski
Radar Chart

Advanced settings

Name Type Default value Description

Enable interactivity

on/off

on

If set, turns on animations when a user hovers over a layer.

Show Legend

on/off

off

If set, shows a legend on the bottom of the visualization.

Color Scheme

List

The color scheme to use for the Radar. Each polygon will have a color from the list.

Margin Left (px)

Number

24

The margin in pixels on the left side of the visualization.

Margin Right (px)

Number

24

The margin in pixels on the right side of the visualization.

Margin Top (px)

Number

24

The margin in pixels on the top side of the visualization.

Margin Bottom (px)

Number

40

The margin in pixels on the bottom side of the visualization.

Dot Size

Number

10

Size of the dots (px).

Dot Border Width

Number

2

Width of the dots border (px).

Grid Levels

Number

5

Number of levels to display for grid.

Grid Label Offset (px)

Number

16

Label offset from outer radius (px).

Blend Mode

List

Normal

Defines CSS mix-blend-mode for layers.

Motion Configuration

List

Gentle

Selects the motion config for react-spring.

Curve

List

LinearClosed

Selects the type of curve interpolation.

Auto-run query

on/off

on

If set, automatically runs the query when the report is displayed. Otherwise, the query is displayed and must be executed manually.