AxisContent

data class AxisContent<T>(val labels: @Composable AxisLabelScope<T>.(T) -> Unit, val title: @Composable () -> Unit, val style: AxisStyle)

Defines the content and styling for an axis on an XYGraph.

Parameters

T

The data type for the axis.

style

The AxisStyle to apply to the axis.

labels

A composable for rendering the axis labels.

title

An optional title for the axis.

Constructors

Link copied to clipboard
constructor(labels: @Composable AxisLabelScope<T>.(T) -> Unit, title: @Composable () -> Unit, style: AxisStyle)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val title: @Composable () -> Unit