|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use XYMultipleSeriesDataset | |
---|---|
org.achartengine | The main classes, including the ChartFactory, GraphicalActivity and GraphicalView. |
org.achartengine.chart | Provides the classes that handle the actual rendering / drawing of the charts, based on the provided model and renderer. |
Uses of XYMultipleSeriesDataset in org.achartengine |
---|
Methods in org.achartengine with parameters of type XYMultipleSeriesDataset | |
---|---|
static android.content.Intent |
ChartFactory.getBarChartIntent(android.content.Context context,
XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer,
BarChart.Type type)
Creates a bar chart intent that can be used to start the graphical view activity. |
static android.content.Intent |
ChartFactory.getBarChartIntent(android.content.Context context,
XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer,
BarChart.Type type,
java.lang.String activityTitle)
Creates a bar chart intent that can be used to start the graphical view activity. |
static GraphicalView |
ChartFactory.getBarChartView(android.content.Context context,
XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer,
BarChart.Type type)
Creates a bar chart view. |
static android.content.Intent |
ChartFactory.getBubbleChartIntent(android.content.Context context,
XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer)
Creates a bubble chart intent that can be used to start the graphical view activity. |
static android.content.Intent |
ChartFactory.getBubbleChartIntent(android.content.Context context,
XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer,
java.lang.String activityTitle)
Creates a bubble chart intent that can be used to start the graphical view activity. |
static GraphicalView |
ChartFactory.getBubbleChartView(android.content.Context context,
XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer)
Creates a bubble chart view. |
static android.content.Intent |
ChartFactory.getCombinedXYChartIntent(android.content.Context context,
XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer,
java.lang.String[] types,
java.lang.String activityTitle)
Creates a combined XY chart intent that can be used to start the graphical view activity. |
static GraphicalView |
ChartFactory.getCombinedXYChartView(android.content.Context context,
XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer,
java.lang.String[] types)
Creates a combined XY chart view. |
static GraphicalView |
ChartFactory.getCubeLineChartView(android.content.Context context,
XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer,
float smoothness)
Creates a cubic line chart view. |
static android.content.Intent |
ChartFactory.getCubicLineChartIntent(android.content.Context context,
XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer,
float smoothness)
Creates a cubic line chart intent that can be used to start the graphical view activity. |
static android.content.Intent |
ChartFactory.getCubicLineChartIntent(android.content.Context context,
XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer,
float smoothness,
java.lang.String activityTitle)
Creates a line chart intent that can be used to start the graphical view activity. |
static android.content.Intent |
ChartFactory.getLineChartIntent(android.content.Context context,
XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer)
Creates a line chart intent that can be used to start the graphical view activity. |
static android.content.Intent |
ChartFactory.getLineChartIntent(android.content.Context context,
XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer,
java.lang.String activityTitle)
Creates a line chart intent that can be used to start the graphical view activity. |
static GraphicalView |
ChartFactory.getLineChartView(android.content.Context context,
XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer)
Creates a line chart view. |
static android.content.Intent |
ChartFactory.getRangeBarChartIntent(android.content.Context context,
XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer,
BarChart.Type type,
java.lang.String activityTitle)
Creates a range bar chart intent that can be used to start the graphical view activity. |
static GraphicalView |
ChartFactory.getRangeBarChartView(android.content.Context context,
XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer,
BarChart.Type type)
Creates a range bar chart view. |
static android.content.Intent |
ChartFactory.getScatterChartIntent(android.content.Context context,
XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer)
Creates a scatter chart intent that can be used to start the graphical view activity. |
static android.content.Intent |
ChartFactory.getScatterChartIntent(android.content.Context context,
XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer,
java.lang.String activityTitle)
Creates a scatter chart intent that can be used to start the graphical view activity. |
static GraphicalView |
ChartFactory.getScatterChartView(android.content.Context context,
XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer)
Creates a scatter chart view. |
static android.content.Intent |
ChartFactory.getTimeChartIntent(android.content.Context context,
XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer,
java.lang.String format)
Creates a time chart intent that can be used to start the graphical view activity. |
static android.content.Intent |
ChartFactory.getTimeChartIntent(android.content.Context context,
XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer,
java.lang.String format,
java.lang.String activityTitle)
Creates a time chart intent that can be used to start the graphical view activity. |
static GraphicalView |
ChartFactory.getTimeChartView(android.content.Context context,
XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer,
java.lang.String format)
Creates a time chart view. |
Uses of XYMultipleSeriesDataset in org.achartengine.chart |
---|
Fields in org.achartengine.chart declared as XYMultipleSeriesDataset | |
---|---|
protected XYMultipleSeriesDataset |
XYChart.mDataset
The multiple series dataset. |
Methods in org.achartengine.chart that return XYMultipleSeriesDataset | |
---|---|
XYMultipleSeriesDataset |
XYChart.getDataset()
|
Methods in org.achartengine.chart with parameters of type XYMultipleSeriesDataset | |
---|---|
protected void |
LineChart.setDatasetRenderer(XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer)
Sets the series and the renderer. |
protected void |
ScatterChart.setDatasetRenderer(XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer)
|
protected void |
XYChart.setDatasetRenderer(XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer)
|
Constructors in org.achartengine.chart with parameters of type XYMultipleSeriesDataset | |
---|---|
BarChart(XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer,
BarChart.Type type)
Builds a new bar chart instance. |
|
BubbleChart(XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer)
Builds a new bubble chart instance. |
|
CombinedXYChart(XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer,
java.lang.String[] types)
Builds a new combined XY chart instance. |
|
CubicLineChart(XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer,
float smoothness)
Builds a cubic line chart. |
|
LineChart(XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer)
Builds a new line chart instance. |
|
RangeBarChart(XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer,
BarChart.Type type)
Builds a new range bar chart instance. |
|
ScatterChart(XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer)
Builds a new scatter chart instance. |
|
TimeChart(XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer)
Builds a new time chart instance. |
|
XYChart(XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer)
Builds a new XY chart instance. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |