Page 1 of 1

make legendtext of one series red?

Posted: Sat Apr 16, 2016 1:15 pm
by 16575033
`Hi
I have one point in one series with a red baseline.
Now I would like to color the legend of this series red, so that everyone can identify the baseline with the red legend text.
OR I want to color the seriespoint red, but in the chart the series point is not visible, the baseline is important for that one point.

Can anyone tell me how to do it?
Thanks
Walter

Re: make legendtext of one series red?

Posted: Mon Apr 18, 2016 12:02 pm
by yeray
Hello Walter,

I'm not sure to understand what's the exact problem here.
First of all note a Line series needs two points to draw a line segment. Making Pointers visible allows you to skip this requirement:

Code: Select all

  Series1.Pointer.Visible:=true;
Worth to mention here FontSeriesColor property:

Code: Select all

  Chart1.Legend.FontSeriesColor:=true;
If you still find problems with it please try to arrange a simple example project we can run as-is to reproduce the problem here.