Constructs histogram from data double array.
public static Void Histogram(Double[] data,
Int32 lb,
Int32 ub,
Double[]& bins,
Double[]& counts,
Int32 nbins,
Double min,
Double max)

Parameters

data
Defines data for histogram.
lb
Data lower bound.
ub
Data upper bound.
bins
Returns bins centerpoints.
counts
Returns each bin count.
nbins
Number of bins used in histogram. Value must match the bins and counts size.
min
Minimum value used for histogram. Usually it's data minimum value.
max
Maximum value used for histogram. Usually it's data maximum value.

See Also

HistogramFunction Class | HistogramFunction Members | Steema.TeeChart.Functions Namespace