TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
-
npel
- Newbie
- Posts: 2
- Joined: Thu Apr 30, 2015 12:00 am
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
- Posts: 9633
- Joined: Tue Dec 05, 2006 12:00 am
- Location: Girona, Catalonia
-
Contact:
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;