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
XType of X values.
YType of Y values.
ZType 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 = DrawStyles.Line, Color? color = null)
Parameters
titlestringSeries title.
xValuesIEnumerable<X>X values.
yValuesIEnumerable<Y>Y values.
styleDrawStylescolorColor?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 = DrawStyles.Bubble, Color? color = null)
Parameters
titlestringSeries title.
xValuesIEnumerable<X>X values.
yValuesIEnumerable<Y>Y values.
zValuesIEnumerable<Z>Z values.
styleDrawStylescolorColor?Series color.