make legendtext of one series red?

TeeChart FireMonkey (Windows,OSX,iOS & Android) for Embarcadero RAD Studio, Delphi and C++ Builder (XE5+)
Post Reply
walter0316
Newbie
Newbie
Posts: 37
Joined: Mon Jul 13, 2015 12:00 am

make legendtext of one series red?

Post by walter0316 » Sat Apr 16, 2016 1:15 pm

`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

Yeray
Site Admin
Site Admin
Posts: 9514
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: make legendtext of one series red?

Post by Yeray » Mon Apr 18, 2016 12:02 pm

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.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply