How can I change the colour of a line in a TChart in Delphi at run time? For example, how would I change the colour of:

Chart1.Series[a].

link|improve this question

80% accept rate
feedback

2 Answers

up vote 3 down vote accepted

You almost have it. Just set the colour in the series you're interested in.

  Chart1.Series[0].Color := clBlue;

Update:

Colors are just hex constants in Blue, Green, Red order. The predefined list is in Graphics.pas, but you can use any hex value you like. This line also sets the color of the first series to blue:

  Chart1.Series[0].Color := $FF0000;

If you have more than one series defined, you can do something like this:

  Chart1.Series[0].Color := clGreen;
  Chart1.Series[1].Color := clYellow;
link|improve this answer
Thanks! If i want to set a shade of colour though, such as a light green for one line and a dark green for another, would this be possible? Is there anywhere i can find a list of the available colours? – Chris55 Mar 18 '10 at 14:44
There are lots of color constants defined in graphics.pas. – Alan Clark Mar 18 '10 at 19:35
feedback

Aaah, yes, that is the documentation, but it doesn't quite work. I can set the colour when it is first plotted, I can also change it ONCE, and after that, it doesn't change. If I query the colour of the series, it is indeed "correct", it is what I set it to. however, the graph doesn't change. I tried invalidating, visible true/false, neither will re-draw the graph in the correct (current) color that the series is set to.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.