PolarGraph

fun <T> PolarGraph(radialAxisModel: FloatRadialAxisModel, angularAxisModel: AngularAxisModel<T>, radialAxisLabels: @Composable (Float) -> Unit, angularAxisLabels: @Composable (T) -> Unit, modifier: Modifier = Modifier, polarGraphProperties: PolarGraphProperties = PolarGraphDefaults.PolarGraphPropertyDefaults(), content: @Composable PolarGraphScope<T>.() -> Unit)

A Graph using polar coordinates - a radial axis and an angular axis. Multiple series of data can be plotted on a polar graph as lines and/or shaded regions with or without symbols at each plotted point.

Parameters

T

The data type for the angular axis

radialAxisModel

Provides the radial axis coordinate system

angularAxisModel

An AngularAxisModel providing the angular axis coordinate system

radialAxisLabels

Composable providing radial axis labels.

angularAxisLabels

Composable providing angular axis labels.

polarGraphProperties

Properties to customize plot styling.

content

Content to display on the plot, see PolarPlotSeries.


fun <T> PolarGraph(radialAxisModel: FloatRadialAxisModel, angularAxisModel: AngularAxisModel<T>, radialAxisLabelText: (Float) -> String = { it.toString() }, angularAxisLabelText: (T) -> String = { it.toString() }, modifier: Modifier = Modifier, polarGraphProperties: PolarGraphProperties = PolarGraphDefaults.PolarGraphPropertyDefaults(), content: @Composable PolarGraphScope<T>.() -> Unit)

A Graph using polar coordinates - a radial axis and an angular axis. Multiple series of data can be plotted on a polar graph as lines and/or shaded regions with or without symbols at each plotted point.

Parameters

T

The data type for the angular axis

radialAxisModel

Provides the radial axis coordinate system

angularAxisModel

An AngularAxisModel providing the angular axis coordinate system

radialAxisLabelText

Provides strings for radial axis labels.

angularAxisLabelText

Provides strings for angular axis labels.

polarGraphProperties

Properties to customize plot styling.

content

Content to display on the plot, see PolarPlotSeries.