IXyyDataSeries
StockSharp.Xaml.Charting.Model.DataSeries
Defines the templated interface to an Xyy DataSeries, a series containing X, Y0 and Y1 data-points
Implements: IDataSeries<T, T>, IDataSeries, ISuspendable, IXyyDataSeries
Properties
Methods
Append(T, T, T)
Appends a single X, Y0, Y1 point to the series, automatically triggering a redraw
- x
- The X-value
- y0
- The Y0-value
- y1
- The Y1-value
Append(IEnumerable<T>, IEnumerable<T>, IEnumerable<T>)
Appends a collection of X, Y0 and Y1 points to the series, automatically triggering a redraw
- x
- The X-values
- y0
- The Y0-values
- y1
- The Y1-values
Insert(int, T, T, T)
Inserts an X, Y0, Y1 point at the specified index. Automatically triggers a redraw
- index
- The index to insert at
- x
- The X-value
- y0
- The Y0-value
- y1
- The Y1-value
InsertRange(int, IEnumerable<T>, IEnumerable<T>, IEnumerable<T>)
Inserts a collection of X, Y0 and Y1 points at the specified index, automatically triggering a redraw
- startIndex
- The index to insert at
- x
- The X-values
- y0
- The Y0-values
- y1
- The Y1-values
Update(T, T, T)
Updates (overwrites) the Y0, Y1 values at the specified X-value. Automatically triggers a redraw
- x
- The X-value
- y0
- The Y0-value
- y1
- The Y1-value