Do anyone know how to change the width of the error bar freely out of the three options available ?
D dennis Jun 2, 2004 #1 Do anyone know how to change the width of the error bar freely out of the three options available ?
C Chip Pearson Jun 2, 2004 #2 Dennis, What is the "error bar"? -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com
Dennis, What is the "error bar"? -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com
D dennis Jun 4, 2004 #4 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.
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 Jun 4, 2004 #5 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
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 Jun 5, 2004 #6 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 ?
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 ?