Contents Previous Next


HistogramMaximum Property (BDKGraphDefaults Object)

Description

Sets or returns the maximum value of the histogram used to "bin" sample data in graphs. By default, this is set to the value BDKHistogramAutoLimit, which indicates that the maximum value is set to the maximum value of the data set.

Syntax

object.HistogramMaximum

Arguments

None.

Return Value

(Double) – the histogram maximum, or the special value BDKHistogramAutoLimit.

Example

'Set the histogram to have 10 bins from 0 to 100:

With BDKApp.GraphDefaults
    .HistogramMinimum = 0
    .HistogramMaximum = 100
    .HistogramNumBins = 10
End With