Previous Next


HistogramFormat Property (RDKCurveDefaults Object)

Description

Sets or returns how a histogram is formatted. The format can be "normal", which is a standard histogram, or "linked midpoint" which connects the middle of the histogram bars together to form an "area graph." This setting has no effect, unless the CurveStyle property is set to RDKCurveStyleSolid or RDKCurveStyleLine.

Syntax

object.HistogramFormat

Arguments

None.

Return Value

(RDKHistogramFormat) – one of the two values:

Example

'Format the curve as a Solid Area Graph 
With RDKApp.GraphDefaults.Curves(1)
    .CurveStyle = RDKCurveStyleSolid
    .HistogramFormat = RDKHistogramLinkMidpoints
End With