DefaultBarChartEntry

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

Deprecated

Use DefaultVerticalBarPlotEntry

Replace with

DefaultVerticalBarPlotEntry

Constructors

Link copied to clipboard
constructor(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