Previous Next


HistogramOverlaysIndependently Property (RDKGraphDefaults Object)

Description

Sets or returns whether graphs with multiple histogrammed curves should have independent binning. In some cases, it is desirable to have all curves have the same binning, so that direct bin to bin comparisons can be performed. In other cases (for example when the two curves being compared do not overlap) this is undesirable. This setting only takes effect if HistogramNumBins is set to RDKAutoNumBins, and both HistogramMinimum and HistogramMaximum are set to RDKHistogramAutoLimit.

Syntax

object.HistogramOverlaysIndependently

Arguments

None.

Return Value

(Boolean) – True if overlays are "binned" independently, FALSE if not.

Example

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

With RDKApp.GraphDefaults
    .HistogramMinimum = RDKHistogramAutoLimit
    .HistogramMaximum = RDKHistogramAutoLimit
    .HistogramNumBins = RDKAutoNumBins
    .HistogramOverlaysIndependently = TRUE
End With