Previous Next


HistogramMaximum Property (RDKGraphDefaults 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 RDKHistogramAutoLimit, 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 RDKHistogramAutoLimit.

Example

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

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