Skip to Content

Radar

A Radar Chart in REAVIZ is a graphical method of displaying multivariate data in the form of a two-dimensional chart with three or more quantitative variables represented on axes starting from the same point. This type of chart is useful for comparing multiple variables and identifying patterns or anomalies in data.

Where to use:

  • Compare Multiple Variables: Ideal for comparing several quantitative variables simultaneously.
  • Identify Patterns: Useful for identifying patterns, strengths, and weaknesses across different variables.
  • Visualize Multidimensional Data: Great for visualizing complex, multidimensional data sets.

Quick Start

To create a radar, use import the RadarChart and give it value point.

Examples

API

RadarChartΒ 

NameTypeDefault
dataChartNestedDataShape[]

Data the chart will receive to render.

[]
seriesReactElement<RadialAreaSeriesProps, FC<Partial<RadialAreaSeriesProps>>>

The series component that renders the area components.

`<RadialAreaSeries />`
innerRadiusnumber

The inner radius for the chart center.

0.1
axisReactElement<RadialAxisProps, FC<Partial<RadialAxisProps>>> | null

The radial axis component for the chart.

`<RadialAxis />`
startAnglenumber

Start angle for the first value.

0
endAnglenumber

End angle for the last value.

2 * Math.PI
isClosedCurveboolean

Whether the curve should be closed. Set to true by deafult

true
idstring

Id of the chart.

widthnumber

Width of the chart. If not provided will autosize.

heightnumber

Height of the chart. If not provided will autosize.

marginsMargins

Margins for the chart.

classNamestring

Classnames for the chart.

containerClassNamestring

Classnames for the chart.

styleStyleHTMLAttributes<SVGSVGElement>

Additional css styles.

centerboolean

Center the chart. Used mainly internally.

centerXboolean

Center chart on X Axis only. Used mainly internally.

centerYboolean

Center chart on Y Axis only. Used mainly internally.

Last updated on