ComponentOne FinancialChart for WPF
C1.WPF.Chart Namespace / ErrorBar Class / ErrorValue Property



In This Topic
    ErrorValue Property
    In This Topic
    Gets or sets a value that specifies the error value of the series.
    Syntax
    'Declaration
     
    
    Public Property ErrorValue As Double
    'Usage
     
    
    Dim instance As ErrorBar
    Dim value As Double
     
    instance.ErrorValue = value
     
    value = instance.ErrorValue
    public double ErrorValue {get; set;}
    public:
    property double ErrorValue {
       double get();
       void set (    double value);
    }
    Remarks
    This property should be work with errorAmount property. If errorAmount is ErrorAmount.FixedValue, the value property is a fixed number value. If errorAmount is ErrorAmount.Percentage, the value property is a percentage number value between 0 and 1. If errorAmount is ErrorAmount.StandardDeviation, the value property is a percentage number of calculated standard deviation value.
    See Also