C# 클래스 Accord.Controls.DataSeriesBox

Data Series Box for quickly displaying a form with a time series plot on it in the same spirit as System.Windows.Forms.MessageBox.
상속: System.Windows.Forms.Form
파일 보기 프로젝트 열기: accord-net/framework 1 사용 예제들

공개 메소드들

메소드 설명
Hold ( ) : void

Holds the execution until the window has been closed.

SetGraph ( Action pane ) : DataSeriesBox

Sets properties for the graph being shown.

SetLabels ( string labels, float size ) : DataSeriesBox

Sets the data labels for the values being shown.

SetTitle ( string text ) : DataSeriesBox

Sets the window title of the data series box.

Show ( IEnumerable values ) : DataSeriesBox

Displays a scatter plot with the specified data.

Show ( IEnumerable values ) : DataSeriesBox

Displays a scatter plot with the specified data.

Show ( String title, double>.Func function ) : DataSeriesBox

Displays a scatter plot.

Show ( String title, double>.Func function, DoubleRange range ) : DataSeriesBox

Displays a scatter plot.

Show ( String title, double>.Func function, double step ) : DataSeriesBox

Displays a scatter plot.

Show ( String title, double>.Func function, double min, double max, double step ) : DataSeriesBox

Displays a scatter plot.

Show ( String title, double>.Func function, int npoints ) : DataSeriesBox

Displays a scatter plot.

Show ( string title = "Time series" ) : DataSeriesBox

Displays a scatter plot with the specified data.

비공개 메소드들

메소드 설명
DataSeriesBox ( ) : System
show ( String title, double>.Func function, double min, double max, double step, int npoints ) : DataSeriesBox
show ( String title, IEnumerable x, IEnumerable series, bool time = false ) : DataSeriesBox
show ( String title, double x, double series, bool time = false ) : DataSeriesBox

메소드 상세

Hold() 공개 메소드

Holds the execution until the window has been closed.
public Hold ( ) : void
리턴 void

SetGraph() 공개 메소드

Sets properties for the graph being shown.
public SetGraph ( Action pane ) : DataSeriesBox
pane Action The actions to be performed to the graph pane.
리턴 DataSeriesBox

SetLabels() 공개 메소드

Sets the data labels for the values being shown.
public SetLabels ( string labels, float size ) : DataSeriesBox
labels string The text labels.
size float The text size.
리턴 DataSeriesBox

SetTitle() 공개 메소드

Sets the window title of the data series box.
public SetTitle ( string text ) : DataSeriesBox
text string The desired title text for the window.
리턴 DataSeriesBox

Show() 공개 정적인 메소드

Displays a scatter plot with the specified data.
public static Show ( IEnumerable values ) : DataSeriesBox
values IEnumerable The x-values for the data series.
리턴 DataSeriesBox

Show() 공개 정적인 메소드

Displays a scatter plot with the specified data.
public static Show ( IEnumerable values ) : DataSeriesBox
values IEnumerable The x-values for the data series.
리턴 DataSeriesBox

Show() 공개 정적인 메소드

Displays a scatter plot.
public static Show ( String title, double>.Func function ) : DataSeriesBox
title String The title for the plot window.
function double>.Func The function to plot.
리턴 DataSeriesBox

Show() 공개 정적인 메소드

Displays a scatter plot.
public static Show ( String title, double>.Func function, DoubleRange range ) : DataSeriesBox
title String The title for the plot window.
function double>.Func The function to plot.
range AForge.DoubleRange The functions argument range to be plotted.
리턴 DataSeriesBox

Show() 공개 정적인 메소드

Displays a scatter plot.
public static Show ( String title, double>.Func function, double step ) : DataSeriesBox
title String The title for the plot window.
function double>.Func The function to plot.
step double The step size to use during plotting.
리턴 DataSeriesBox

Show() 공개 정적인 메소드

Displays a scatter plot.
public static Show ( String title, double>.Func function, double min, double max, double step ) : DataSeriesBox
title String The title for the plot window.
function double>.Func The function to plot.
min double The minimum value for the functions argument parameter.
max double The maximum value for the functions argument parameter.
step double The step size to use during plotting.
리턴 DataSeriesBox

Show() 공개 정적인 메소드

Displays a scatter plot.
public static Show ( String title, double>.Func function, int npoints ) : DataSeriesBox
title String The title for the plot window.
function double>.Func The function to plot.
npoints int The number of points to use during plotting.
리턴 DataSeriesBox

Show() 공개 정적인 메소드

Displays a scatter plot with the specified data.
public static Show ( string title = "Time series" ) : DataSeriesBox
title string The title for the data.
리턴 DataSeriesBox