ChartEntry

interface ChartEntry

The base for a single chart entry rendered by Chart subclasses. It holds information about the location of the chart entry on the x-axis and y-axis.

Inheritors

Properties

Link copied to clipboard
abstract val x: Float

The position of this ChartEntry on the x-axis.

Link copied to clipboard
abstract val y: Float

The position of this ChartEntry on the y-axis.

Functions

Link copied to clipboard
open operator fun component1(): Float
Link copied to clipboard
open operator fun component2(): Float
Link copied to clipboard
abstract fun withY(y: Float): ChartEntry

Creates a copy of this ChartEntry implementation, but with a new y value.