Previous Next


SummaryLimitType Property (RDKCurveDefaults Object)

Description

For summary graphs, sets or returns the type of limit for a summary curve. The limit is either a percentile, or the number of standard deviations from the mean. The SummaryBottomLimit and SummaryTopLimit properties control the actual numeric value of the limit. 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.SummaryLimitType

Arguments

None.

Return Value

(RDKSummaryLimitType) – one of two values:

RDKLimitTypePercentiles
RDKLimitTypeStdDeviations

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