Common superclass for all ScatterPlot DataModels to provide a "type"
of data model that can be assigned to a ScatterPlot.
Usage
A ScatterPlotDataModel can be assigned to an instace of the ScatterPlot class.
Ex:
ScatterPlotDataModel myData = createMyScatterPlotData(); // See ScatterPlotTableDataModel or ScatterPlotOLAPDataModel
ScatterPlot scatterPlot = new ScatterPlot();
scatterPlot.setDataModel(myData);
Behavior
See ScatterPlotTableDataModel and ScatterPlotOLAPDataModel for examples on how to use the different types
of ScatterPlotDataModels.
Extending
This class provides a type for the ScatterPlot's data models but is
only intended for internal subclassing.