[]
Represents the error bars in a chart series. Error bars indicate the degree of uncertainty for chart data. Only series in area, bar, column, line, and scatter groups on a 2D chart can have error bars. Only series in scatter groups can have x and y error bars.
public interface IErrorBar
Returns or sets amount of error bar. The amount must be greater than or equal to zero.
double Amount { get; set; }
Returns the direction of the error bar.
ErrorBarDirection Direction { get; }
Returns or sets the end style for the error bar.
EndStyleCap EndStyle { get; set; }
Returns the format for chart elements.
IChartFormat Format { get; }
Returns or sets formula of negative error amount when error bar value type is Custom.
string Minus { get; set; }
Returns the parent object for the specified object.
ISeries Parent { get; }
Returns or sets formula of positive error amount when error bar value type is Custom.
string Plus { get; set; }
Returns or sets which error-bar parts to include.
ErrorBarInclude Type { get; set; }
Returns or sets the range marked by error bars.
ErrorBarType ValueType { get; set; }
Clears the formatting of the object.
void ClearFormats()
Deletes the object.
void Delete()