Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cannot set Marker properties in MSChart

Status
Not open for further replies.

szamkow

Technical User
Sep 14, 2001
22
US
I am unable to set the Marker properties on an MSChart control. The following code section runs without error, but .Size remains as 240 and the .Style remains as vbMarkerStylePlus

'------
With MSChart.Plot.SeriesCollection(1)
.SeriesMarker.Show = True
.ShowLine = True
.Pen.Width = 1
.DataPoints.Item(-1).Marker.Size = 50
.DataPoints.Item(-1).Marker.Style = VtMarkerStyleFilledCircle
End With
'---------

Any ideas on what may be defaulted somewhere or what might cause these values to refuse to set properly?

TIA,

Stan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top