Error bar

D

dennis

Do anyone know how to change the width of the error bar freely out of
the three options available ?
 
D

dennis

Stephen,

You are right. its the y- error bars. how can i set the width of the
drop line freely, for example, 6 pt, 10 pt or higher ?

dennis.
 
S

Stephen Bye

Well I just tried recording a macro while I changed the width and this is
what I got:

ActiveSheet.ChartObjects("Chart 1").Activate
ActiveChart.SeriesCollection(1).ErrorBars.Select
With Selection.Border
.LineStyle = xlContinuous
.ColorIndex = 57
.Weight = xlThick
End With
Selection.EndStyle = xlCap

If you look up the Weight property in the help text you will see that it has
only these 4 possible values:
xlHairline
xlThin
xlMedium
xlThick
 
D

dennis

Thks stephen.
But what i actually want is to build a histogram on a XY scatter
chart. i want to use the drop line as a histogram bar but even
..weight=xlThick is not wide enough. There any other way of doing that
?
 
Top