-
public interface ChartEntryThe 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.
-
-
Method Summary
Modifier and Type Method Description Floatcomponent1()Floatcomponent2()abstract ChartEntrywithY(Float y)Creates a copy of this ChartEntry implementation, but with a new y value. abstract FloatgetX()The position of this ChartEntry on the x-axis. abstract FloatgetY()The position of this ChartEntry on the y-axis. -
-
Method Detail
-
component1
Float component1()
-
component2
Float component2()
-
withY
abstract ChartEntry withY(Float y)
Creates a copy of this ChartEntry implementation, but with a new y value.
-
getX
abstract Float getX()
The position of this ChartEntry on the x-axis.
-
getY
abstract Float getY()
The position of this ChartEntry on the y-axis.
-
-
-
-