Package org.apache.pivot.charts.content
Class Point
- java.lang.Object
-
- org.apache.pivot.charts.content.Point
-
- Direct Known Subclasses:
Interval
public class Point extends java.lang.Object
Represents value data for X/Y chart views.
-
-
Constructor Summary
Constructors Constructor Description Point()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description float
getX()
float
getY()
void
setX(float xValue)
Set the X-position data.void
setY(float yValue)
Set the Y-position data.
-
-
-
Method Detail
-
getX
public float getX()
- Returns:
- The X-position data.
-
setX
public void setX(float xValue)
Set the X-position data.- Parameters:
xValue
- The X-position value.
-
getY
public float getY()
- Returns:
- The Y-position data.
-
setY
public void setY(float yValue)
Set the Y-position data.- Parameters:
yValue
- The Y-position value.
-
-