Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 862 Bytes

Excel.Series.ErrorBars.md

File metadata and controls

38 lines (24 loc) · 862 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Series.ErrorBars property (Excel)
vbaxl10.chm578082
vbaxl10.chm578082
Excel.Series.ErrorBars
1a607e6f-e70a-e39c-4cc3-6060eb64e654
05/11/2019
medium

Series.ErrorBars property (Excel)

Returns an ErrorBars object that represents the error bars for the series. Read-only.

Syntax

expression.ErrorBars

expression A variable that represents a Series object.

Example

This example sets the error bar color for series one on Chart1. The example should be run on a 2D line chart that has error bars for series one.

With Charts("Chart1").SeriesCollection(1) 
 .ErrorBars.Border.ColorIndex = 8 
End With

[!includeSupport and feedback]