Jump to content
Software FX Community

Hollow vs. Filled markerstyles


User (Legacy)

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...