Description
Sets or returns the minimum value of the histogram used to "bin" sample data in graphs. By default, this is set to the value RDKHistogramAutoLimit, which indicates that the minimum value is set to the minimum value of the data set.
Syntax
object.HistogramMinimum
Arguments
None.
Return Value
(Double) – the histogram minimum, or the special value RDKHistogramAutoLimit.
Example
'Set the histogram to have 10 bins from 0 to 100:
With RDKApp.GraphDefaults
.HistogramMinimum = 0
.HistogramMaximum = 100
.HistogramNumBins = 10
End With