[]
        
(Showing Draft Content)

ITrendlines

Interface ITrendlines

All Superinterfaces:
Iterable<ITrendline>

public interface ITrendlines extends Iterable<ITrendline>
Represents a collection of all ITrendline objects for the specifiedseries. Each Trendline object represents a trendline in a chart. A trendline shows the trend, or direction, of data in a series.
  • Method Summary

    Modifier and Type
    Method
    Description
    add()
    Creates a new trendline.
    get(int index)
    Returns a single object from a collection.
    int
    Returns the number of objects in the collection.
    Returns the parent object for the specified object.

    Methods inherited from interface java.lang.Iterable

    forEach, iterator, spliterator
  • Method Details

    • getCount

      int getCount()
      Returns the number of objects in the collection.
    • getParent

      ISeries getParent()
      Returns the parent object for the specified object.
    • add

      ITrendline add()
      Creates a new trendline.
      Returns:
      a ITrendline object.
    • get

      ITrendline get(int index)
      Returns a single object from a collection.
      Parameters:
      index - The index number for the object.
      Returns:
      a ITrendline object.