Contents Previous Next


HistogramFormat Property (BDKCurveDefaults 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 BDKCurveStyleSolid or BDKCurveStyleLine.

Syntax

object.HistogramFormat

Arguments

None.

Return Value

(BDKHistogramFormat) – one of the two values:

BDKHistogramFormatNormal
BDKHistogramFormatLinkMidpoints

Example

'Format the curve as a Solid Area Graph 
With BDKApp.GraphDefaults.Curves(1)
    .CurveStyle = BDKCurveStyleSolid
    .HistogramFormat = BDKHistogramLinkMidpoints
End With