Spread WPF 18
GrapeCity.Spreadsheet.Charts Namespace / ISeries Interface / ErrorBar Method
The error bar direction.
The error bar parts to include.
The error bar type.
The error amount. Used for only the positive error amount when type is ErrorBarType.Custom.
The negative error amount when type is ErrorBarType.Custom.


In This Topic
    ErrorBar Method
    In This Topic
    Applies error bars to the series.
    Syntax
    'Declaration
     
    Sub ErrorBar( _
       ByVal direction As ErrorBarDirection, _
       ByVal include As ErrorBarInclude, _
       ByVal type As ErrorBarType, _
       Optional ByVal amount As Double, _
       Optional ByVal negativeAmount As Double _
    ) 
    'Usage
     
    Dim instance As ISeries
    Dim direction As ErrorBarDirection
    Dim include As ErrorBarInclude
    Dim type As ErrorBarType
    Dim amount As Double
    Dim negativeAmount As Double
     
    instance.ErrorBar(direction, include, type, amount, negativeAmount)

    Parameters

    direction
    The error bar direction.
    include
    The error bar parts to include.
    type
    The error bar type.
    amount
    The error amount. Used for only the positive error amount when type is ErrorBarType.Custom.
    negativeAmount
    The negative error amount when type is ErrorBarType.Custom.
    See Also