Page 1 of 1

Higlighting a data point

Posted: Mon Jan 06, 2025 3:58 pm
by 16573707
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?

Re: Higlighting a data point

Posted: Thu Jan 09, 2025 7:19 am
by yeray
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;