C# 클래스 Accord.Controls.HistogramBox

Histogram Box for quickly displaying a form with a histogram 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.

SetBinWidth ( double width ) : HistogramBox

Sets the bins width in the histogram.

SetNumberOfBins ( int number ) : HistogramBox

Sets the number of bins in the histogram.

SetSize ( int width, int height ) : HistogramBox

Sets size of the scatter plot window.

SetTitle ( string text ) : HistogramBox

Sets the window title of the histogram box.

Show ( Histogram histogram, string title = "Histogram" ) : HistogramBox

Displays a histogram.

Show ( double values, string title = "Histogram" ) : HistogramBox

Displays a histogram with the specified data.

WaitForClose ( ) : void

Blocks the caller until the form is closed.

비공개 메소드들

메소드 설명
HistogramBox ( ) : System
show ( string title, double values ) : HistogramBox

메소드 상세

Hold() 공개 메소드

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

SetBinWidth() 공개 메소드

Sets the bins width in the histogram.
public SetBinWidth ( double width ) : HistogramBox
width double The bin width to be used.
리턴 HistogramBox

SetNumberOfBins() 공개 메소드

Sets the number of bins in the histogram.
public SetNumberOfBins ( int number ) : HistogramBox
number int The number of bins to be used.
리턴 HistogramBox

SetSize() 공개 메소드

Sets size of the scatter plot window.
public SetSize ( int width, int height ) : HistogramBox
width int The desired width.
height int The desired height.
리턴 HistogramBox

SetTitle() 공개 메소드

Sets the window title of the histogram box.
public SetTitle ( string text ) : HistogramBox
text string The desired title text for the window.
리턴 HistogramBox

Show() 공개 정적인 메소드

Displays a histogram.
public static Show ( Histogram histogram, string title = "Histogram" ) : HistogramBox
histogram Histogram The histogram to show.
title string The title for the histogram window.
리턴 HistogramBox

Show() 공개 정적인 메소드

Displays a histogram with the specified data.
public static Show ( double values, string title = "Histogram" ) : HistogramBox
values double The histogram values.
title string The title for the histogram window.
리턴 HistogramBox

WaitForClose() 공개 메소드

Blocks the caller until the form is closed.
public WaitForClose ( ) : void
리턴 void