crocodilesareforwimps
New Member
- Joined
- Jul 28, 2011
- Messages
- 13
I am trying to set the fill on different data series in a scatterplot and I don't want there to be any coloured border. I recorded a macro to get rid of it, but it doesn't do anything
the macro gives me this:
ActiveChart.SeriesCollection(1).Select
Selection.Format.Line.Visible = msoFalse
I think that doesn't work because it gets confused with the line of the series i.e. the line that connects dots. So is there any way to specifically select the marker line?
I tried Selection.Format.Border.LineStyle or Selection.Border.Weight etc. still doesn't work... for some reason that still only changes the line not the marker line.
Also tried Selection.Border.LineStyle = xlLineStyleNone but that doesn't work.
I figured out that if I make the selection an individual point instead of the series, it would work to say Format.Line, but that doesn't modify the legend.
I have tried to do this so many times, and I don't understand how this could possibly be so complicated. I have looked all over the internet to find how to do this and nothing works.
the macro gives me this:
ActiveChart.SeriesCollection(1).Select
Selection.Format.Line.Visible = msoFalse
I think that doesn't work because it gets confused with the line of the series i.e. the line that connects dots. So is there any way to specifically select the marker line?
I tried Selection.Format.Border.LineStyle or Selection.Border.Weight etc. still doesn't work... for some reason that still only changes the line not the marker line.
Also tried Selection.Border.LineStyle = xlLineStyleNone but that doesn't work.
I figured out that if I make the selection an individual point instead of the series, it would work to say Format.Line, but that doesn't modify the legend.
I have tried to do this so many times, and I don't understand how this could possibly be so complicated. I have looked all over the internet to find how to do this and nothing works.