Jump to content
Software FX Community

Changing the color of lines


User (Legacy)

Recommended Posts

Easy,

If you want the Entire line to change to the same color

Chart1.Series[0].Color = Color.Pink;

You will see that the first series is now all pink.

Now, if you want just one point it is like this

Chart1.Point[0, 4].Color = Color.Brown;

Please see the API and/or Programmers Guide.

-CJS

"Martin Nielsen" <man@biomar.dk> wrote in message

news:ugUVIrgoEHA.416@webserver3.softwarefx.com...

> Is it possible to change the color of the lines in the chart.

>

> Running ASP.NET

>

> /Martin

>

>

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...