BarRangeStyle

data class BarRangeStyle(val min: Double?, val max: Double?)(source)

Optional fixed Y-axis range for vertical bar and histogram charts.

null for either bound means the chart derives that bound from data. Explicit bounds must be finite. If the resolved range is equal or reversed, both bounds fall back to the zero-inclusive source domain.

Constructors

Link copied to clipboard
constructor(min: Double?, max: Double?)

Properties

Link copied to clipboard
val max: Double?

Optional maximum value.

Link copied to clipboard
val min: Double?

Optional minimum value.