Axis Config
data class AxisConfig(val showAxes: Boolean, val showGridLines: Boolean, val showGridLabel: Boolean, val axisStroke: Float, val minLabelCount: Int, val axisColor: Color, val gridColor: Color = axisColor.copy(alpha = 0.5F))
Configuration for the axes and grid lines in a chart.
Parameters
show Axes
Whether to show the axes.
show Grid Lines
Whether to show the grid lines.
show Grid Label
Whether to show the grid labels.
axis Stroke
The stroke width of the axes.
min Label Count
The minimum number of labels to display.
axis Color
The color of the axes.
grid Color
The color of the grid lines. Defaults to a slightly transparent version of the axis color.