I am looking to create a chart of type xlXYScatter and insert a shape (e.g. triangle) at each point, then color each shape using RGB. I have yet to find out how to do this. Is this possible in VBA?
Any guidance would be appreciated.
I am only at the point where I have the chart defined and I iterate through each point:
Thanks
Any guidance would be appreciated.
I am only at the point where I have the chart defined and I iterate through each point:
Code:
set thechart = Sheets("mysheet").ChartObjects("mychartname")
v = thechart.Chart.SeriesCollections(1).Values
numPoints = UBound(v,1)
for x = 1 to numPoints
next x
Thanks