J
JWS315
How can I change the line color of a series in a radar chart? The chart is
built using MS Graph and I am using the following code to change the marker
style but can not find how to change the line. Any help would be greatly
appreciated!
Set oShape = docFinal.InlineShapes.AddOLEObject(ClassType:="MSGraph.Chart",
DisplayAsIcon:=False, Range:=myRange)
Set oChart = oShape.OLEFormat.Object
code to load values...
With oChart.SeriesCollection(1)
.HasDataLabels = False
.HasLeaderLines = False
.MarkerSize = 10
.MarkerBackgroundColor = RGB(255, 0, 0) ' red
.MarkerForegroundColor = RGB(255, 0, 0) ' red
End With
built using MS Graph and I am using the following code to change the marker
style but can not find how to change the line. Any help would be greatly
appreciated!
Set oShape = docFinal.InlineShapes.AddOLEObject(ClassType:="MSGraph.Chart",
DisplayAsIcon:=False, Range:=myRange)
Set oChart = oShape.OLEFormat.Object
code to load values...
With oChart.SeriesCollection(1)
.HasDataLabels = False
.HasLeaderLines = False
.MarkerSize = 10
.MarkerBackgroundColor = RGB(255, 0, 0) ' red
.MarkerForegroundColor = RGB(255, 0, 0) ' red
End With