public class DataPoint
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
PointData |
data
Axes and data values that were used to create the data point.
|
Drawable |
drawable
Drawable that will be used to render the data point.
|
Drawable |
labelDrawable
Drawable that will be used to render the value label.
|
PointND<java.lang.Double> |
position
Position of the data point (n-dimensional).
|
java.awt.Shape |
shape
Shape describing the data point.
|
public final PointData data
public final PointND<java.lang.Double> position
public final Drawable drawable
public final java.awt.Shape shape
public final Drawable labelDrawable
public DataPoint(PointData data, PointND<java.lang.Double> position, Drawable drawable, java.awt.Shape shape, Drawable labelDrawable)
DataPoint
object with the specified position,
Drawable
, and shape.data
- Data that this point was created from.position
- Coordinates in view/screen units.drawable
- Visual representation.shape
- Geometric shape of the point.labelDrawable
- Visual representation of the value label.