MultiPoint

interface MultiPoint<X, Y>

Deprecated

Use StackedAreaPlotEntry instead.

Represents a set of points for a StackedAreaPlot.

Parameters

X

The type of the x-axis values

Y

The type of the y-axis values

Inheritors

Properties

Link copied to clipboard
abstract val x: X

The x-axis value of this MultiPoint.

Link copied to clipboard
abstract val y: List<Y>

The y-axis values for each line series corresponding to the x-axis value.

Functions

Link copied to clipboard
abstract fun accumulateTo(series: Int): Point<X, Y>

Computes the stacked value of the point up to and including the series at index series from the y value List and returns it as a Point.