com.odesys.chart.linechart
Interface PointData
- All Superinterfaces:
- ChartElement
- All Known Implementing Classes:
- DefaultPointData
- public interface PointData
- extends ChartElement
Provides access to the data of a single point of the Line chart.
Method Summary |
float |
getX()
Gets the X coordinate of this PointData. |
float |
getY()
Gets the Y coordinate of this PointData. |
void |
setX(float x)
Sets the X coordinate of this PointData. |
void |
setY(float y)
Sets the Y coordinate of this PointData. |
getX
public float getX()
- Gets the X coordinate of this PointData.
- Returns:
- The X coordinate of this PointData.
setX
public void setX(float x)
- Sets the X coordinate of this PointData.
getY
public float getY()
- Gets the Y coordinate of this PointData.
- Returns:
- The Y coordinate of this PointData.
setY
public void setY(float y)
- Sets the Y coordinate of this PointData.