Histogram control.
Namespace:
AForge.ControlsAssembly: AForge.Controls (in AForge.Controls.dll) Version: 2.2.5.0 (2.2.5.0)
Syntax
| C# |
|---|
public class Histogram : Control |
Remarks
The control displays histograms represented with integer arrays, where each array’s element keeps occurrence number of the corresponding element.
Sample usage:
// create array with histogram values int[] histogramValues = new int[] { 3, 8, 53, 57, 79, 69, ... }; // set values to histogram control histogram.Values = histogramValues;
Sample control’s look:
Inheritance Hierarchy
System..::.Object
System..::.MarshalByRefObject
System.ComponentModel..::.Component
System.Windows.Forms..::.Control
AForge.Controls..::.Histogram
System..::.MarshalByRefObject
System.ComponentModel..::.Component
System.Windows.Forms..::.Control
AForge.Controls..::.Histogram