public class PointData
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
java.util.List<Axis> |
axes
Axes that will be used to project the point.
|
java.util.List<? extends AxisRenderer> |
axisRenderers
Renderers for the axes that will be used to project the point.
|
int |
col
The index of the column in the row that contains the data value.
|
Row |
row
The data row that will get projected.
|
Constructor and Description |
---|
PointData(java.util.List<Axis> axes,
java.util.List<? extends AxisRenderer> axisRenderers,
Row row,
int col)
Initializes a new instance with the specified data.
|
public final java.util.List<Axis> axes
public final java.util.List<? extends AxisRenderer> axisRenderers
public final Row row
public final int col
public PointData(java.util.List<Axis> axes, java.util.List<? extends AxisRenderer> axisRenderers, Row row, int col)
axes
- Axes that are used to project the point.axisRenderers
- Renderers for the axes.row
- Data row containing that will be projected on the axes.col
- Index of the column in the row that contains the data value.