C# Class SharpNeatGUI.TimeSeriesDataSource

Data source for the TimeSeriesGraphForm.
显示文件 Open project: colgreen/sharpneat Class Usage Examples

Public Methods

Method Description
GetPoint ( ) : Point2DDouble

Gets a new data point to be plotted.

TimeSeriesDataSource ( string name, int historyLength, int yAxis, Color color, GetPointDelegate getPointDelegate ) : System.Drawing

Constructs a data source with the provided source details and delegate for acquiring data.

Method Details

GetPoint() public method

Gets a new data point to be plotted.
public GetPoint ( ) : Point2DDouble
return SharpNeat.Utility.Point2DDouble

TimeSeriesDataSource() public method

Constructs a data source with the provided source details and delegate for acquiring data.
public TimeSeriesDataSource ( string name, int historyLength, int yAxis, Color color, GetPointDelegate getPointDelegate ) : System.Drawing
name string
historyLength int
yAxis int
color System.Drawing.Color
getPointDelegate GetPointDelegate
return System.Drawing