[]
Represents a collection of all ITrendline objects for the specified series. Each Trendline object represents a trendline in a chart. A trendline shows the trend, or direction, of data in a series.
public interface ITrendlines : IEnumerable<ITrendline>, IEnumerable
Returns the number of objects in the collection.
int Count { get; }
Returns a single object from a collection.
ITrendline this[int index] { get; }
index
intThe index number for the object.
The object at the specified index.
Returns the parent object for the specified object.
ISeries Parent { get; }
Creates a new trendline.
ITrendline Add()
Returns a ITrendline object.