A series container. More...
Public Member Functions | |
ISeries | getSeries (String id) |
Gets the series for given id. | |
ISeries[] | getSeries () |
Gets the array of series. | |
void | deleteSeries (String id) |
Deletes the series for given id. | |
void | bringForward (String id) |
Brings the series for given id forward. | |
void | bringToFront (String id) |
Brings the series for given id to front. | |
void | sendBackward (String id) |
Sends the series for given id backward. | |
void | sendToBack (String id) |
Sends the series for given id to back. | |
Package Functions | |
ISeries | createSeries (SeriesType type, String id) |
Creates the series. |
A series container.
Definition at line 14 of file ISeriesSet.java.
void org.swtchart.ISeriesSet.bringForward | ( | String | id | ) |
Brings the series for given id forward.
id | the series id |
Implemented in org.swtchart.internal.series.SeriesSet.
void org.swtchart.ISeriesSet.bringToFront | ( | String | id | ) |
Brings the series for given id to front.
id | the series id |
Implemented in org.swtchart.internal.series.SeriesSet.
ISeries org.swtchart.ISeriesSet.createSeries | ( | SeriesType | type, | |
String | id | |||
) | [package] |
Creates the series.
If series for given id already exists, the existing series will be overwritten.
type | the series type | |
id | the id for series |
Implemented in org.swtchart.internal.series.SeriesSet.
Referenced by org.swtchart.examples.StepChartExample.createChart(), org.swtchart.examples.StackSeriesExample.createChart(), org.swtchart.examples.SeriesLabelExample.createChart(), org.swtchart.examples.ScatterChartExample.createChart(), org.swtchart.examples.OrientationExample.createChart(), org.swtchart.examples.MultipleAxesExample.createChart(), org.swtchart.examples.LogScaleExample.createChart(), org.swtchart.examples.LineChartExample.createChart(), org.swtchart.examples.LargeSeriesExample.createChart(), org.swtchart.examples.ErrorBarsExample.createChart(), org.swtchart.examples.CategoryExample.createChart(), org.swtchart.examples.BarChartExample.createChart(), org.swtchart.examples.AreaChartExample.createChart(), org.swtchart.examples.AngledAxisTickLabelsExample.createChart(), org.swtchart.examples.advanced.SymbolBoundsExample.createChart(), org.swtchart.examples.advanced.PxielToDataConversionExample.createChart(), org.swtchart.examples.advanced.LegendBoundsExample.createChart(), org.swtchart.examples.advanced.DataToPixelConversionExample.createChart(), org.swtchart.examples.advanced.CustomPaintListenerExample.createChart(), org.swtchart.examples.advanced.BarBoundsExample.createChart(), org.swtchart.examples.advanced.AxisTickBoundsExample.createChart(), org.swtchart.examples.ext.InteractiveChartExample.createPartControl(), and org.swtchart.examples.ext.TestChart.main().
void org.swtchart.ISeriesSet.deleteSeries | ( | String | id | ) |
Deletes the series for given id.
id | the series id |
IllegalArgumentException | if there is no series for the given id. |
Implemented in org.swtchart.internal.series.SeriesSet.
ISeries [] org.swtchart.ISeriesSet.getSeries | ( | ) |
Gets the array of series.
Implemented in org.swtchart.internal.series.SeriesSet.
ISeries org.swtchart.ISeriesSet.getSeries | ( | String | id | ) |
Gets the series for given id.
id | the id for series |
Implemented in org.swtchart.internal.series.SeriesSet.
Referenced by org.swtchart.internal.axis.Axis.adjustRange(), org.swtchart.examples.advanced.SymbolBoundsExample.createChart(), org.swtchart.examples.advanced.LegendBoundsExample.createChart(), org.swtchart.examples.advanced.BarBoundsExample.createChart(), org.swtchart.internal.axis.AxisSet.deleteAxis(), org.swtchart.internal.axis.Axis.getMinSeriesValue(), org.swtchart.internal.axis.Axis.isDateEnabled(), org.swtchart.internal.PlotArea.paintControl(), org.swtchart.internal.Legend.paintControl(), org.swtchart.ext.internal.properties.SeriesLabelPage.SeriesLabelPage(), org.swtchart.ext.internal.properties.SeriesPage.SeriesPage(), and org.swtchart.internal.Legend.updateLayoutData().
void org.swtchart.ISeriesSet.sendBackward | ( | String | id | ) |
Sends the series for given id backward.
id | the series id |
Implemented in org.swtchart.internal.series.SeriesSet.
void org.swtchart.ISeriesSet.sendToBack | ( | String | id | ) |
Sends the series for given id to back.
id | the series id |
Implemented in org.swtchart.internal.series.SeriesSet.