Using: ActiveWorkbook.Sheets("Sheet1").ChartObjects("Chart1").Chart.SeriesCollection(1)
The color of each dot .Points(PointNumber).Interior.Color
The number of points you must complete is equal to .Points.Count
The value of each point is equal to .Points(PointNumber).Value
colors of the markers themselves (applies only to linear, differential and radar diagrams):
.Points(PointNumber).MarkerBackgroundColor = RGB(0,255,0) ' green
.Points(PointNumber).MarkerForegroundColor = RGB(255,0,0) ' red
.Points(PointNumber).MarkerStyle = xlMarkerStyleCircle ' change the shape
Seanc source
share