IXyDataSeries

StockSharp.Xaml.Charting.Model.DataSeries

Defines the interface to a typed Xy DataSeries, which contains columns of X-Values and Y-Values.

Implements: IDataSeries<T, T>, IDataSeries, ISuspendable, IXyDataSeries

Methods

Append(T, T)

Appends an X, Y point to the series

x
The X Value
y
The Y Value
Append(IEnumerable<T>, IEnumerable<T>)

Appends a list of X, Y points to the series

x
The list of X points
y
The list of Y points
Insert(int, T, T)

Inserts an X,Y point at the specified index

index
The index to insert at
x
The X value
y
The Y value
InsertRange(int, IEnumerable<T>, IEnumerable<T>)

Inserts a list of X, Y points at the specified index

startIndex
The index to insert at
x
The list of X points
y
The list of Y points
Update(T, T)

Updates an X,Y point specified by the X-Value passed in.

x
The X Value to key on when updating
y
The new Y value