S
SysMod
This is not a question, just a place to record the answer to this question in
case somebody else searches for it; or I forget again in the future.
I wanted to know: What object do I use to set the heaviness of the lines in
a chart point marker? Not the series line, the point marker eg the asterisk
xlMarkerStyleStar
In the UI it's right-click, Format Data Point
Marker Line style, Width 2pt say.
In VBA I can set oPoint.MarkerStyle = xlMarkerStyleStar
but I can't find any reference to "Marker Line Style" and neither did this
newsgroup - until now I guess.
And of course the macro recorder in Excel 2007 is broken and does not
record many chart object changes.
The magic word to think of searching for is "Weight"
the answer is for a weight of 2, set
Point.Format.Line.Weight=2
case somebody else searches for it; or I forget again in the future.
I wanted to know: What object do I use to set the heaviness of the lines in
a chart point marker? Not the series line, the point marker eg the asterisk
xlMarkerStyleStar
In the UI it's right-click, Format Data Point
Marker Line style, Width 2pt say.
In VBA I can set oPoint.MarkerStyle = xlMarkerStyleStar
but I can't find any reference to "Marker Line Style" and neither did this
newsgroup - until now I guess.
And of course the macro recorder in Excel 2007 is broken and does not
record many chart object changes.
The magic word to think of searching for is "Weight"
the answer is for a weight of 2, set
Point.Format.Line.Weight=2