Method | Description | |
---|---|---|
Hold ( ) : void |
Holds the execution until the window has been closed.
|
|
SetBinWidth ( double width ) : |
Sets the bins width in the histogram.
|
|
SetNumberOfBins ( int number ) : |
Sets the number of bins in the histogram.
|
|
SetSize ( int width, int height ) : |
Sets size of the scatter plot window.
|
|
SetTitle ( string text ) : |
Sets the window title of the histogram box.
|
|
Show ( Histogram histogram, string title = "Histogram" ) : |
Displays a histogram.
|
|
Show ( double values, string title = "Histogram" ) : |
Displays a histogram with the specified data.
|
|
WaitForClose ( ) : void |
Blocks the caller until the form is closed.
|
Method | Description | |
---|---|---|
HistogramBox ( ) : System | ||
show ( string title, double values ) : |
public SetBinWidth ( double width ) : |
||
width | double | The bin width to be used. |
return |
public SetNumberOfBins ( int number ) : |
||
number | int | The number of bins to be used. |
return |
public SetSize ( int width, int height ) : |
||
width | int | The desired width. |
height | int | The desired height. |
return |
public SetTitle ( string text ) : |
||
text | string | The desired title text for the window. |
return |
public static Show ( Histogram histogram, string title = "Histogram" ) : |
||
histogram | Histogram | The histogram to show. |
title | string | The title for the histogram window. |
return |
public static Show ( double values, string title = "Histogram" ) : |
||
values | double | The histogram values. |
title | string | The title for the histogram window. |
return |