IAnalyticsChart
StockSharp.Algo.Analytics
The interface for work with a chart.
Methods
Append
public void Append(string title, IEnumerable<X> xValues, IEnumerable<Y> yValues, DrawStyles style, Color? color)
iAnalyticsChart.Append(title, xValues, yValues, style, color)
Append series.
- title
- Series title.
- xValues
- X values.
- yValues
- Y values.
- style
- DrawStyles
- color
- Series color.
Append
public void Append(string title, IEnumerable<X> xValues, IEnumerable<Y> yValues, IEnumerable<Z> zValues, DrawStyles style, Color? color)
iAnalyticsChart.Append(title, xValues, yValues, zValues, style, color)
Append series.
- title
- Series title.
- xValues
- X values.
- yValues
- Y values.
- zValues
- Z values.
- style
- DrawStyles
- color
- Series color.