RadarChart

fun RadarChart(dataSet: ChartDataSet, style: RadarChartStyle = RadarChartDefaults.style(), interactionEnabled: Boolean = true, animateOnStart: Boolean = true)(source)

A composable function that displays a Radar Chart with a single data set.

Parameters

dataSet

The data set to be displayed in the chart.

style

The style to be applied to the chart. If not provided, the default style will be used.

interactionEnabled

Enables touch interactions (drag selection). Defaults to true.

animateOnStart

Enables initial chart animations. Defaults to true.


fun RadarChart(dataSet: MultiChartDataSet, style: RadarChartStyle = RadarChartDefaults.style(), interactionEnabled: Boolean = true, animateOnStart: Boolean = true)(source)

A composable function that displays a Radar Chart with multiple data sets.

Parameters

dataSet

The data sets to be displayed in the chart.

style

The style to be applied to the chart. If not provided, the default style will be used.

interactionEnabled

Enables touch interactions (drag selection). Defaults to true.

animateOnStart

Enables initial chart animations. Defaults to true.