Class ExcelChartSerieWithHorizontalErrorBars
A base class used for chart series that support ErrorBars
Inheritance
System.Object
    
    
    
    
    ExcelChartSerieWithHorizontalErrorBars
      
      
      
  Inherited Members
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.ToString()
    
  Namespace: OfficeOpenXml.Drawing.Chart
Assembly: EPPlus.dll
Syntax
public class ExcelChartSerieWithHorizontalErrorBars : ExcelChartSerieWithErrorBars
  Properties
ErrorBarsX
Horizontal error bars ErrorBarsX AddErrorBars(eErrorBarType, eErrorValueType)
Declaration
public ExcelChartErrorBars ErrorBarsX { get; }
  Property Value
| Type | Description | 
|---|---|
| ExcelChartErrorBars | 
Methods
AddErrorBars(eErrorBarType, eErrorValueType)
Adds error bars to the chart serie for both vertical and horizontal directions.
Declaration
public override void AddErrorBars(eErrorBarType barType, eErrorValueType valueType)
  Parameters
| Type | Name | Description | 
|---|---|---|
| eErrorBarType | barType | The type of error bars  | 
      
| eErrorValueType | valueType | The type of value the error bars will show  | 
      
Overrides
AddErrorBars(eErrorBarType, eErrorValueType, Nullable<eErrorBarDirection>)
Adds error bars to the chart serie for vertical or horizontal directions.
Declaration
public void AddErrorBars(eErrorBarType barType, eErrorValueType valueType, eErrorBarDirection? direction)
  Parameters
| Type | Name | Description | 
|---|---|---|
| eErrorBarType | barType | The type of error bars  | 
      
| eErrorValueType | valueType | The type of value the error bars will show  | 
      
| System.Nullable<eErrorBarDirection> | direction | Direction for the error bars. A value of null will add both horizontal and vertical error bars.  |