jas.hist
Interface ScatterPlotSource
- All Superinterfaces:
- DataSource
- All Known Implementing Classes:
- XML2DScatterDataSource, jas.hist.util.ScatterSourceAdapter, TestCustomOverlay, TestScatterPlotSource
- public interface ScatterPlotSource
- extends DataSource
Interface to be implemented by DataSources which can provide ScatterPlot
data (but not 2D histogram data)
- See Also:
Rebinnable2DHistogramData
,
HasScatterPlotData
getXMin
public double getXMin()
getXMax
public double getXMax()
getYMin
public double getYMin()
getYMax
public double getYMax()
getXAxisType
public int getXAxisType()
- Currently we only support DATE and DOUBLE types
getYAxisType
public int getYAxisType()
- Currently we only support DOUBLE
startEnumeration
public ScatterEnumeration startEnumeration(double xMin,
double xMax,
double yMin,
double yMax)
- Starts the enumeration of points from the beginning, and the enumeration
will include only points in the given range.
startEnumeration
public ScatterEnumeration startEnumeration()
- Starts the enumeration of points from the beginning, and the enumeration
will include all points stored in the partition.