User (Legacy) Posted December 20, 2002 Report Share Posted December 20, 2002 I have a scatterchart with a series of red filled triangles. I know how to change a given triangle to a different markerstyle of those available in the markerstyle set (e.g. square), but how do I set it to a hollow triangle, which is not in the list? Link to comment Share on other sites More sharing options...
Software FX Posted December 20, 2002 Report Share Posted December 20, 2002 You can control the color of the marker by changing the color of the series, Color.Transparent can be used for transparent markers. The following example changes the marker to be trasparent while changing the series color (line color) to Red: chart1.Series[0].Color = Color.Transparent; chart1.Series[0].BorderEffect = BorderEffect.None; chart1.Series[0].BorderColor = Color.Red; chart1.Series[0].TypeMask &= ~ChartType.ColorLine; You can do this Per series or globally. -- FP Software FX Support "Karen Utley" <kutley@landauerinc.com> wrote in message news:5xcf8IEqCHA.2684@webserver1.softwarefx.com... > I have a scatterchart with a series of red filled triangles. I know how to > change a given triangle to a different markerstyle of those available in the > markerstyle set (e.g. square), but how do I set it to a hollow triangle, > which is not in the list? > > Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.