Interface IAnalyticsPanel
- Namespace
 - StockSharp.Algo.Analytics
 
- Assembly
 - StockSharp.Algo.Analytics.dll
 
The interface for work with result panel.
public interface IAnalyticsPanel
  - Extension Methods
 
Methods
CreateChart<X, Y>()
Create chart with 2 dimension to show analytics result.
IAnalyticsChart<X, Y, VoidType> CreateChart<X, Y>()
  Returns
Type Parameters
XType of X values.
YType of Y values.
CreateChart<X, Y, Z>()
Create chart with 3 dimension to show analytics result.
IAnalyticsChart<X, Y, Z> CreateChart<X, Y, Z>()
  Returns
- IAnalyticsChart<X, Y, Z>
 
Type Parameters
XType of X values.
YType of Y values.
ZType of Z values.
CreateGrid(params string[])
Create table to show analytics result.
IAnalyticsGrid CreateGrid(params string[] columns)
  Parameters
columnsstring[]Columns.
Returns
- IAnalyticsGrid
 Table.
Draw3D(IEnumerable<string>, IEnumerable<string>, double[,], string, string, string)
Draw 3D to show analytics result.
void Draw3D(IEnumerable<string> xTitles, IEnumerable<string> yTitles, double[,] data, string xTitle = null, string yTitle = null, string zTitle = null)
  Parameters
xTitlesIEnumerable<string>X titles.
yTitlesIEnumerable<string>Y titles.
datadouble[,]Data.
xTitlestringTitle for X axis.
yTitlestringTitle for Y axis.
zTitlestringTitle for Z axis.
DrawHeatmap(IEnumerable<string>, IEnumerable<string>, double[,])
Draw heatmap to show analytics result.
void DrawHeatmap(IEnumerable<string> xTitles, IEnumerable<string> yTitles, double[,] data)
  Parameters
xTitlesIEnumerable<string>X titles.
yTitlesIEnumerable<string>Y titles.
datadouble[,]Data.