Description
Sets or returns how delimiters should be drawn on graphs. The RDKDelimitersLinesAndShading option is not available if you are graphing in Excel.
Syntax
object.DelimiterDisplayMode
Arguments
None.
Return Value
(RDKDelimiterDisplayMode) – one of the values:
| RDKDelimitersOff |
| RDKDelimitersLinesOnly |
| RDKDelimitersLinesAndShading |
Example
'Set the delimiters to show the P10 and P90 points of the curve:
With RDKApp.GraphDefaults
.DelimiterDisplayMode = RDKDelimitersLinesOnly
.Delimiter1 = .10
.Delimiter2 = .90
End With