Move/Rotate Left-Axis Caption above Axis

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Ed Dressel
Newbie
Newbie
Posts: 19
Joined: Wed Aug 16, 2023 12:00 am

Move/Rotate Left-Axis Caption above Axis

Post by Ed Dressel » Fri Jun 06, 2025 8:36 pm

Move left-axis label to the top of the axis.

My graphic designer suggested that the left axis label be moved & rotated to the top of the axis, as seen in the images below. Is this possibe?

Image

(image URL is www.tbinc.com/Misc/TChartLeftAxis.jpg --I don't know why but I cannot get it to display in the preview).

Thanks,

Ed Dressel

Ed Dressel
Newbie
Newbie
Posts: 19
Joined: Wed Aug 16, 2023 12:00 am

Re: Move/Rotate Left-Axis Caption above Axis

Post by Ed Dressel » Fri Jun 06, 2025 8:45 pm

I should have mentioned--I did try using the top axis caption, but I cannot find how to remove the space between the bottom of the caption and the top of the chart.

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

Re: Move/Rotate Left-Axis Caption above Axis

Post by Yeray » Wed Jun 11, 2025 6:56 am

Hello,

Have you tried with the main title? It seems to give the result you'd expect:

Code: Select all

  with Chart1 do
  begin
    Title.Text.Text := 'Monthly income';
    Title.Font.Color := Axes.Left.LabelsFont.Color;
    Title.Font.Size := 15;
    Title.Alignment := taLeftJustify;
  end;
left title.png
left title.png (11.93 KiB) Viewed 1180 times
Ed Dressel wrote:
Fri Jun 06, 2025 8:36 pm
I don't know why but I cannot get it to display in the preview
I see a "mixed content" warning in the console. I guess your server isn't using SSL and non-SSL content (http://) can't be fetched from SSL connections (https://) due to security restrictions in modern browsers.
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

Ed Dressel
Newbie
Newbie
Posts: 19
Joined: Wed Aug 16, 2023 12:00 am

Re: Move/Rotate Left-Axis Caption above Axis

Post by Ed Dressel » Thu Jun 12, 2025 3:09 pm

Thank you on both issues--I found another way to upload images (even quicker using a product named SnagIt. I didn't realize it had these features).

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

Re: Move/Rotate Left-Axis Caption above Axis

Post by Yeray » Fri Jun 13, 2025 7:15 am

Hello,

I use ShareX for screen capturing, but I suppose it’s a matter of personal preference.
Also note this forum supports attaching images.
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