DefaultBarChartEntry

data class DefaultBarChartEntry<X, Y>(    val xValue: X,     val yMin: Y,     val yMax: Y) : BarChartEntry<X, Y>

Default implementation of a BarChartEntry.

Parameters

X

The type of the x-axis values

Y

The type of the y-axis values

Constructors

Link copied to clipboard
fun <X, Y> DefaultBarChartEntry(    xValue: X,     yMin: Y,     yMax: Y)

Properties

Link copied to clipboard
open override val xValue: X

X-axis value at which the bar should be plotted

Link copied to clipboard
open override val yMax: Y

The highest value at which the bar ends on the y-axis

Link copied to clipboard
open override val yMin: Y

The lowest value at which the bar begins on the y-axis