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].
|
feedback
|
|
You almost have it. Just set the colour in the series you're interested in.
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:
If you have more than one series defined, you can do something like this:
| |||||
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. | |||
|
feedback
|