Radar Chart
A radar chart shows multivariate data of three or more quantitative variables mapped onto an axis.
Simple Example
For a radar chart we must define an rx.recharts.radar()
component for each set of values we wish to plot. Each rx.recharts.radar()
component has a data_key
which clearly states which variable in our data we are plotting. In this simple example we plot the A
column of our data against the subject
column which we set as the data_key
in rx.recharts.polar_angle_axis
.
Multiple Radars
We can also add two radars on one chart by using two rx.recharts.radar
components.
In this plot an inner_radius
and an outer_radius
are set which determine the chart's size and shape. The inner_radius
sets the distance from the center to the innermost part of the chart (creating a hollow center if greater than zero), while the outer_radius
defines the chart's overall size by setting the distance from the center to the outermost edge of the radar plot.
Using More Props
The dot
prop shows points at each data vertex when true. legend_type="line"
displays a line in the chart legend. animation_begin=0
starts the animation immediately, animation_duration=8000
sets an 8-second animation, and animation_easing="ease-in"
makes the animation start slowly and speed up. These props control the chart's appearance and animation behavior.
Dynamic Data
Chart data tied to a State var causes the chart to automatically update when the state changes, providing a nice way to visualize data in response to user interface elements. View the "Data" tab to see the substate driving this radar chart of character traits.
Strength
15
Dexterity
15
Constitution
15
Intelligence
15
Wisdom
15
Charisma
15
Remaining points: 10
API Reference
rx.recharts.RadarChart
A Radar chart component in Recharts.
Valid Children
PolarAngleAxis
PolarRadiusAxis
PolarGrid
Legend
GraphingTooltip
Radar