Interface IAnalyticsChart<X, Y, Z>
- Namespace
- StockSharp.Algo.Analytics
- Assembly
- StockSharp.Algo.Analytics.dll
The interface for work with a chart.
public interface IAnalyticsChart<X, Y, Z>
Type Parameters
X
Type of X values.
Y
Type of Y values.
Z
Type of Z values.
- Extension Methods
Methods
Append(string, IEnumerable<X>, IEnumerable<Y>, DrawStyles, Color?)
Append series.
void Append(string title, IEnumerable<X> xValues, IEnumerable<Y> yValues, DrawStyles style = 0, Color? color = null)
Parameters
title
stringSeries title.
xValues
IEnumerable<X>X values.
yValues
IEnumerable<Y>Y values.
style
DrawStylesEcng.Drawing.DrawStyles
color
Color?Series color.
Append(string, IEnumerable<X>, IEnumerable<Y>, IEnumerable<Z>, DrawStyles, Color?)
Append series.
void Append(string title, IEnumerable<X> xValues, IEnumerable<Y> yValues, IEnumerable<Z> zValues, DrawStyles style = 7, Color? color = null)
Parameters
title
stringSeries title.
xValues
IEnumerable<X>X values.
yValues
IEnumerable<Y>Y values.
zValues
IEnumerable<Z>Z values.
style
DrawStylesEcng.Drawing.DrawStyles
color
Color?Series color.