I am working with Excel 2007 in a Dutch version, so applogise if a possible translation would confuse you.
Looking to use vba applying a different weight to a chart line and the markerborder. Seems that the two are always connected, eg
With activechart.seriescollection(1)
.format.line.weight = 5
With .points(1).format.line
.weight = 2,5
End with
End with
Applying to each point this will give a weight of 2.5 for the marker borderline and lines in between.
Would someone have a suggestion ? Thanks
Looking to use vba applying a different weight to a chart line and the markerborder. Seems that the two are always connected, eg
With activechart.seriescollection(1)
.format.line.weight = 5
With .points(1).format.line
.weight = 2,5
End with
End with
Applying to each point this will give a weight of 2.5 for the marker borderline and lines in between.
Would someone have a suggestion ? Thanks