I would like to space the bottom axis Labels mid-way between each of the vertical markers.
How would I approach this. I have the style of the axis set to talText and I can see there is a LabelsAlign value for the BottomAxis but I am unsure of the correct usage.
Best Wishes
Tony Hunt
Spacing BottomAxis Labels
Hi Tony,
We are not sure to understand what are you exactly trying to achieve. Could you please show it in a picture?
Thanks in advance
We are not sure to understand what are you exactly trying to achieve. Could you please show it in a picture?
Thanks in advance
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Hi Tony,
I forgot to tell you that you can either post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.
I forgot to tell you that you can either post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Tony,
Thanks for the images. You can achieve what you request replacing ticks for minorticks:
Thanks for the images. You can achieve what you request replacing ticks for minorticks:
Code: Select all
With Chart1.Axes.Bottom do
begin
Ticks.Visible:=false;
MinorTickCount:=1;
MinorTicks.Width:=2;
MinorTickLength:=5;
MinorGrid.Visible:=true;
Grid.Visible:=false;
MinimumOffset:=20;
MaximumOffset:=20;
end;
Chart1.Axes.Left.Grid.Style:=psSolid;
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |