Page 1 of 1

BottomAxis.LabelsFont.Name

Posted: Fri Mar 14, 2025 9:27 am
by 16499455
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 ?

Re: BottomAxis.LabelsFont.Name

Posted: Mon Mar 17, 2025 1:09 pm
by yeray
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 2602 times