Previous Next


SummaryTopLimit Property (RDKCurveDefaults Object)

For summary graphs, sets or returns the upper limit of the summary curve. This value is either a percentile, or the number of standard deviations from the mean, depending on the SummaryLimitType property. Note: The first curve index in a summary graph corresponds to the "outer" band of the summary graph and the second curve index to the "inner" band. This property does not affect the third curve index of a summary graph, which is the mean value line of the summary graph.

Syntax

object.SummaryTopLimit

Arguments

None.

Return Value

(Double) – the upper limit, either as a percentile (between 0 and 1) or as a number of standard deviations from the mean.

Example

'Set the outer band to be 5%/95% and the inner band to be +1/-1 StdDev:
With RDKApp.GraphDefaults.Curves(1)
    .SummaryLimitType = RDKLimitTypePercentiles
    .SummaryBottomLimit = .05
    .SummaryTopLimit = .95
End With
With RDKApp.GraphDefaults.Curves(2)
    .SummaryLimitType = RDKLimitTypeStdDeviations
    .SummaryBottomLimit = -1
    .SummaryTopLimit = 1
End With