public abstract class ChartSeriesCollection extends Object implements com.gembox.spreadsheet.internal.charts.ChartObject
ChartSeries
objects.Modifier and Type | Method and Description |
---|---|
ChartSeries |
add()
Adds a new empty series to the chart.
|
ChartSeries |
add(String name,
Iterable values)
Adds a new series with specified name and values to the chart.
|
ChartSeries |
add(String name,
Object... values)
Adds a new series with specified name and values to the chart.
|
ChartSeries |
add(String name,
String valuesReference)
Adds a new series with specified name and values reference to the chart.
|
boolean |
addAll(Collection c)
Not supported.
|
void |
clear() |
boolean |
contains(Object o) |
ChartSeries |
get(int index)
Gets the
ChartSeries that is stored at the zero-based index of the ChartSeriesCollection . |
int |
indexOf(Object o) |
boolean |
isEmpty() |
int |
lastIndexOf(Object o) |
ListIterator |
listIterator() |
ListIterator |
listIterator(int index) |
void |
move(int oldIndex,
int newIndex)
Moves the series at the specified index to a new location in the collection.
|
ChartSeries |
remove(int index) |
boolean |
remove(Object o) |
int |
size() |
List |
subList(int fromIndex,
int toIndex) |
Object[] |
toArray() |
public ChartSeries add()
public ChartSeries add(String name, Iterable values)
name
- The series name.values
- The series values.public ChartSeries add(String name, Object... values)
name
- The series name.values
- The series values.public ChartSeries add(String name, String valuesReference)
name
- The series name.valuesReference
- The series values reference.public boolean addAll(Collection c)
ChartSeriesCollection<T>.add
method or one of its overloads.UnsupportedOperationException
- Not supported. Use one of ChartSeriesCollection<T>.add
method or one of its overloads.public void clear()
public boolean contains(Object o)
public ChartSeries get(int index)
ChartSeries
that is stored at the zero-based index of the ChartSeriesCollection
.index
- The zero-based index of the ChartSeriesCollection
from which to get the ChartSeries
.ChartSeries
that is stored at the zero-based index of the ChartSeriesCollection
.public int indexOf(Object o)
public boolean isEmpty()
public int lastIndexOf(Object o)
public ListIterator listIterator()
public ListIterator listIterator(int index)
public void move(int oldIndex, int newIndex)
oldIndex
- The zero-based index specifying the location of the item to be moved.newIndex
- The zero-based index specifying the new location of the item.public ChartSeries remove(int index)
public boolean remove(Object o)
public int size()
public List subList(int fromIndex, int toIndex)
public Object[] toArray()
© GemBox d.o.o. — All rights reserved.