|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ChartDataModel | |
|---|---|
| com.approximatrix.charting | |
| com.approximatrix.charting.model | |
| com.approximatrix.charting.render | |
| com.approximatrix.charting.swing | |
| Uses of ChartDataModel in com.approximatrix.charting |
|---|
| Fields in com.approximatrix.charting declared as ChartDataModel | |
|---|---|
protected ChartDataModel |
CoordSystemUtilities.model
The model associated with these utilities |
protected ChartDataModel |
CoordSystem.model
The DataModel class. |
protected ChartDataModel |
AbstractChart.model
|
| Methods in com.approximatrix.charting that return ChartDataModel | |
|---|---|
ChartDataModel |
GenericChart.getChartDataModel()
Returns the ChartDataModel. |
ChartDataModel |
Chart.getChartDataModel()
Returns the ChartDataModel. |
ChartDataModel |
AbstractChart.getChartDataModel()
Returns the ChartDataModel. |
| Methods in com.approximatrix.charting with parameters of type ChartDataModel | |
|---|---|
void |
GenericChart.setChartDataModel(ChartDataModel model)
Stores the ChartDataModel for this Chart. |
void |
Chart.setChartDataModel(ChartDataModel model)
Stores the ChartDataModel for this Chart. |
void |
AbstractChart.setChartDataModel(ChartDataModel model)
Stores the ChartDataModel for this Chart. |
| Constructors in com.approximatrix.charting with parameters of type ChartDataModel | |
|---|---|
CoordSystem(ChartDataModel cdm)
Creates a new CoordSystem using the given model constraints. |
|
CoordSystem(ChartDataModel c,
java.text.DecimalFormat yAxisFormat,
boolean drawArrows,
boolean paintAltYTick,
boolean paintOnlyYTick)
Create a new CoordSystem with alternate painting parameters. |
|
CoordSystem(ChartDataModel c,
java.lang.String xunit,
java.lang.String yunit)
Creates a new CoordSystem using the given model constraints. |
|
CoordSystemUtilities(CoordSystem coord,
ChartDataModelConstraints constraints,
ChartDataModelConstraints constraints2,
ChartDataModel model)
Creates a new instance of CoordSystemUtilities |
|
DefaultChart(ChartDataModel model,
java.lang.String title)
Creates a new DefaultChart with the given model and title string and no coordinate system. |
|
DefaultChart(ChartDataModel model,
java.lang.String title,
int coord)
Creates a new DefaultChart with the given model and title string and a coordinate system. |
|
DefaultChart(ChartDataModel model,
java.lang.String title,
int coord,
java.lang.String xaxis,
java.lang.String yaxis)
Creates a new DefaultChart with the given model and title string and a coordinate system. |
|
ExtendedChart(ChartDataModel model,
java.lang.String title)
Creates a new DefaultChart with the given model and title string and no coordinate system. |
|
ExtendedChart(ChartDataModel model,
java.lang.String title,
int coord)
Creates a new DefaultChart with the given model and title string and a coordinate system. |
|
ExtendedChart(ChartDataModel model,
java.lang.String title,
int coord,
java.lang.String xaxis,
java.lang.String yaxis)
Creates a new DefaultChart with the given model and title string and a coordinate system. |
|
| Uses of ChartDataModel in com.approximatrix.charting.model |
|---|
| Classes in com.approximatrix.charting.model that implement ChartDataModel | |
|---|---|
class |
AbstractChartDataModel
This class implements the event-handling methods for a chart model. |
class |
DefaultChartDataModel
Implements a default ChartModel. |
class |
EditableChartDataModel
Implements an editable ChartModel. |
class |
MultiScatterDataModel
Implements a ChartDataModel that is used for plotting true scatter plots where each series can have a different set of independent points. |
class |
ObjectChartDataModel
The ObjectChartDataModel implements a ChartDataModel for Charts, which have e.g. |
class |
ScatterDataModel
Implements an EditableChartDataModel that can be used for plotting data that shares the same X-axis points. |
| Uses of ChartDataModel in com.approximatrix.charting.render |
|---|
| Fields in com.approximatrix.charting.render declared as ChartDataModel | |
|---|---|
protected ChartDataModel |
RowColorModel.model
|
protected ChartDataModel |
AbstractChartRenderer.model
|
| Methods in com.approximatrix.charting.render that return ChartDataModel | |
|---|---|
ChartDataModel |
MultiScatterChartRenderer.getChartDataModel()
Returns the ChartDataModel whose DataSets are rendered. |
ChartDataModel |
AbstractChartRenderer.getChartDataModel()
Returns the ChartDataModel whose DataSets are rendered. |
| Methods in com.approximatrix.charting.render with parameters of type ChartDataModel | |
|---|---|
static RowColorModel |
RowColorModel.getInstance(ChartDataModel model)
Deprecated. |
void |
MultiScatterChartRenderer.setChartDataModel(ChartDataModel model)
Sets the ChartDataModel whose DataSets are rendered. |
void |
AbstractChartRenderer.setChartDataModel(ChartDataModel model)
Sets the ChartDataModel whose DataSets are rendered. |
| Constructors in com.approximatrix.charting.render with parameters of type ChartDataModel | |
|---|---|
AbstractChartRenderer(ChartDataModel model)
Creates new AbstractChartRenderer |
|
AbstractChartRenderer(CoordSystem cs,
ChartDataModel model)
Creates new AbstractChartRenderer |
|
BarChartRenderer(CoordSystem cs,
ChartDataModel model)
Creates new BarChartRenderer |
|
BarChartRenderer(CoordSystem cs,
ChartDataModel model,
java.text.DecimalFormat topFormat,
java.awt.Font topFont,
float boxWidth)
Creates new BarChartRenderer |
|
InterpolationChartRenderer(CoordSystem cs,
ChartDataModel model)
Creates new InterpolationChartRenderer |
|
LineChartRenderer(CoordSystem cs,
ChartDataModel model)
Creates new LineChartRenderer |
|
PieChartRenderer(ChartDataModel model)
Creates new PieChartRenderer |
|
PieChartRenderer(CoordSystem cs,
ChartDataModel model)
Creates new PieChartRenderer |
|
PlotChartRenderer(CoordSystem cs,
ChartDataModel model)
Creates new PlotChartRenderer |
|
RadarChartRenderer(ChartDataModel model)
Creates new RadarChartRenderer |
|
RadarChartRenderer(CoordSystem cs,
ChartDataModel model)
Creates new RadarChartRenderer |
|
RowColorModel(ChartDataModel model)
Creates new RowColorModel. |
|
ScatterChartRenderer(CoordSystem cs,
ChartDataModel model)
Creates new LineChartRenderer |
|
| Uses of ChartDataModel in com.approximatrix.charting.swing |
|---|
| Methods in com.approximatrix.charting.swing that return ChartDataModel | |
|---|---|
ChartDataModel |
ExtendedChartPanel.getChartDataModel()
Returns the ChartDataModel. |
ChartDataModel |
ChartPanel.getChartDataModel()
Returns the ChartDataModel. |
| Methods in com.approximatrix.charting.swing with parameters of type ChartDataModel | |
|---|---|
void |
ExtendedChartPanel.setChartDataModel(ChartDataModel model)
Stores the ChartDataModel for this Chart. |
void |
ChartPanel.setChartDataModel(ChartDataModel model)
Stores the ChartDataModel for this Chart. |
| Constructors in com.approximatrix.charting.swing with parameters of type ChartDataModel | |
|---|---|
ChartPanel(ChartDataModel model,
java.lang.String title)
Creates a new ChartPanel with the given model and title string. |
|
ChartPanel(ChartDataModel model,
java.lang.String title,
int coord)
Creates a new ChartPanel with the given model and title string and a coordinate system. |
|
ExtendedChartPanel(ChartDataModel model,
java.lang.String title)
Creates a new ChartPanel with the given model and title string. |
|
ExtendedChartPanel(ChartDataModel model,
java.lang.String title,
int coord)
Creates a new ChartPanel with the given model and title string and a coordinate system. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||