接口 ISeriesCollection

所有超级接口:
Iterable<ISeries>

public interface ISeriesCollection extends Iterable<ISeries>
表示指定图表中所有ISeries对象的集合。
  • 方法详细资料

    • getParent

      IChart getParent()
      返回指定对象的父对象。
    • getCount

      int getCount()
      返回集合中的对象数量。
    • add

      void add(IRange source)
      添加一个或多个新系列到ISeriesCollection集合中。Spread 将根据选定范围的大小和方向确定值的位置。
      参数:
      source - 新数据,一个 Range 对象。
    • add

      void add(IRange source, RowCol rowCol)
      ISeriesCollection集合中添加一个或多个新系列。
      参数:
      source - 新数据,一个Range对象。
      rowCol - 指定新值位于给定范围源中的行还是列。可以是以下RowCol常量之一:Rows(行)或Columns(列)。
    • add

      void add(IRange source, RowCol rowCol, boolean seriesLabels, boolean categoryLabels)
      ISeriesCollection集合中添加一个或多个新的系列。
      参数:
      source - 新数据,可以是Range对象或数据点的数组。
      rowCol - 指定新值是位于指定范围的行还是列中。
      seriesLabels - 如果第一行或列包含数据系列的名字,则为True。如果第一行或列包含系列中的第一个数据点,则为False。
      categoryLabels - 如果第一行或列包含类别标签的名字,则为True。如果第一行或列包含系列中的第一个数据点,则为False。
    • extend

      void extend(IRange source, RowCol rowcol, boolean categoryLabels)
      向现有系列集中添加新的数据点。
      参数:
      source - 要添加到ISeriesCollection对象的新数据
      rowcol - 指定新值位于给定范围源中的行还是列。可以是RowCol常量之一:Rows(行)或Columns(列)。
      categoryLabels - 如果第一个行或列包含类别标签的名称,则为True。如果第一个行或列包含系列的第一个数据点,则为False。
    • get

      ISeries get(int index)
      返回集合中的单个对象。
      参数:
      index - 对象的索引号。
    • get

      ISeries get(String name)
      返回集合中的一个单一对象。
      参数:
      name - 对象的名称。
    • newSeries

      ISeries newSeries()
      创建一个新的系列。
      返回:
      返回代表新系列的 ISeries 对象。