| Package | Description |
|---|---|
| com.codename1.charts.models |
Provides the classes that handle the data values (data model) to be used by displaying the charts.
|
| com.codename1.charts.transitions | |
| com.codename1.charts.views |
Provides the classes that handle the actual rendering / drawing of the charts, based on the provided model and renderer.
|
| Modifier and Type | Class and Description |
|---|---|
class |
TimeSeries
A series for the date / time charts.
|
class |
XYValueSeries
An extension of the XY series which adds a third dimension.
|
| Modifier and Type | Method and Description |
|---|---|
XYSeries[] |
XYMultipleSeriesDataset.getSeries()
Returns an array of the XY series.
|
XYSeries |
XYMultipleSeriesDataset.getSeriesAt(int index)
Returns the XY series at the specified index.
|
XYSeries |
CategorySeries.toXYSeries()
Transforms the category series to an XY series.
|
XYSeries |
RangeCategorySeries.toXYSeries()
Transforms the range category series to an XY series.
|
XYSeries |
MultipleCategorySeries.toXYSeries()
Transforms the category series to an XY series.
|
| Modifier and Type | Method and Description |
|---|---|
void |
XYMultipleSeriesDataset.addSeries(int index,
XYSeries series)
Adds a new XY series to the list.
|
void |
XYMultipleSeriesDataset.addSeries(XYSeries series)
Adds a new XY series to the list.
|
void |
XYMultipleSeriesDataset.removeSeries(XYSeries series)
Removes the XY series from the list.
|
| Modifier and Type | Method and Description |
|---|---|
void |
XYMultipleSeriesDataset.addAllSeries(List<XYSeries> series)
Adds all the provided XY series to the list.
|
| Modifier and Type | Method and Description |
|---|---|
XYSeries |
XYSeriesTransition.getBuffer()
Gets the "buffer" series where values can be set.
|
XYSeries |
XYSeriesTransition.getSeries()
Gets the series whose values are to be animated by this transition.
|
| Constructor and Description |
|---|
XYSeriesTransition(ChartComponent chart,
XYSeries series)
Creates a new transition on the given chart and associated series.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
XYChart.drawChartValuesText(Canvas canvas,
XYSeries series,
XYSeriesRenderer renderer,
Paint paint,
List<Float> points,
int seriesIndex,
int startIndex)
The graphical representation of the series values as text.
|
protected void |
BarChart.drawChartValuesText(Canvas canvas,
XYSeries series,
XYSeriesRenderer renderer,
Paint paint,
List<Float> points,
int seriesIndex,
int startIndex)
The graphical representation of the series values as text.
|
protected void |
RangeBarChart.drawChartValuesText(Canvas canvas,
XYSeries series,
XYSeriesRenderer renderer,
Paint paint,
List<Float> points,
int seriesIndex,
int startIndex)
The graphical representation of the series values as text.
|
protected void |
CombinedXYChart.drawSeries(XYSeries series,
Canvas canvas,
Paint paint,
List<Float> pointsList,
XYSeriesRenderer seriesRenderer,
float yAxisValue,
int seriesIndex,
XYMultipleSeriesRenderer.Orientation or,
int startIndex) |
protected void |
XYChart.drawSeries(XYSeries series,
Canvas canvas,
Paint paint,
List<Float> pointsList,
XYSeriesRenderer seriesRenderer,
float yAxisValue,
int seriesIndex,
XYMultipleSeriesRenderer.Orientation or,
int startIndex)
Draws the series.
|
Copyright © 2023. All rights reserved.