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
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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