BottomAxis.LabelsFont.Name

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
mediatech
Newbie
Newbie
Posts: 1
Joined: Thu Feb 20, 2025 12:00 am

BottomAxis.LabelsFont.Name

Post by mediatech » Fri Mar 14, 2025 9:27 am

i can´t set the property BottomAxis.LabelsFont.Name; if i set in in editor, e.g. to "Chiller", then the new font is shown correct in Editor at designtime, but in runtime "arial" is shown.
i tried to set the font at runtime with
chart.BottomAxis.Labelsfont.Name
or
Chart.Axes.Bottom.Labelsfont.Name
neither of these two version work, font is always shown in "Arial". Even if i read the Name in runtime in debugmode, "Chilla" is set !!
How can i fix this ?

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

Re: BottomAxis.LabelsFont.Name

Post by Yeray » Mon Mar 17, 2025 1:09 pm

Hello,

Make sure the font is installed in your system. This works fine for me here:

Code: Select all

uses Chart, Series;

var Chart1: TChart;

procedure TForm1.FormCreate(Sender: TObject);
begin
  Chart1:=TChart.Create(Self);

  with Chart1 do
  begin
    Parent:=Self;
    Align:=alClient;
    Color:=clWhite;
    Gradient.Visible:=False;
    Walls.Back.Color:=clWhite;
    Walls.Back.Gradient.Visible:=False;
    Legend.Hide;
    View3D:=False;

    Title.Text.Text:='TeeChart';
    Title.Font.Size:=20;
    Title.Font.Name:='Chiller';

    Axes.Left.LabelsFont.Size:=14;
    Axes.Left.LabelsFont.Name:='Chiller';
    Axes.Bottom.LabelsFont.Size:=14;
    Axes.Bottom.LabelsFont.Name:='Chiller';

    AddSeries(TPointSeries).FillSampleValues;
  end;
end;
Chiller.png
Chiller.png (14.26 KiB) Viewed 2440 times
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