DefaultVerticalBarPlotEntry

data class DefaultVerticalBarPlotEntry<X, Y>(val x: X, val y: BarPosition<Y>) : VerticalBarPlotEntry<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
constructor(x: X, y: BarPosition<Y>)

Properties

Link copied to clipboard
open override val x: X

X-axis value at which the bar should be plotted

Link copied to clipboard
open override val y: BarPosition<Y>

The y-axis value for the bar.