Higlighting a data point

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
npel
Newbie
Newbie
Posts: 2
Joined: Thu Apr 30, 2015 12:00 am

Higlighting a data point

Post by npel » Mon Jan 06, 2025 3:58 pm

I am trying to highlight a data point of a TPointSeries and a TBubbleSeries. I can change the color of a data point easily and set it to clRed when using the .AddXY or .AddBubble procedures, but I have not found the way to change the font color or style of a specific data label.

Is there a way to do it?

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

Re: Higlighting a data point

Post by Yeray » Thu Jan 09, 2025 7:19 am

Hello,

There's an example in the TeeNew demo showing this at "All features\Welcome !\Miscellaneous\Series Marks\Custom per point":

Code: Select all

      with Marks[3] do
      begin
        Font.Size:=14;
        Color:=clSilver;
      end;
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