DefaultVerticalBarPlotStackedPointEntry

data class DefaultVerticalBarPlotStackedPointEntry<X, Y>(val x: X, val yOrigin: Y, val y: List<Y>) : VerticalBarPlotStackedPointEntry<X, Y>

Constructors

Link copied to clipboard
constructor(x: X, yOrigin: Y, y: List<Y>)

Properties

Link copied to clipboard
open override val x: X

The x-axis value of the entry.

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

The y-axis coordinate of the top of each bar in the stack, where lower indices are for bars lower in the stack.

Link copied to clipboard
open override val yOrigin: Y

The value for the y-axis Origin, which is the bottom of the lowest bar in the stack.