Hi, I have been try to find how to increase the space between the Labels on the axis and the axis title. See the image attached which indicates what I am referring to.
Thanks
Bernard
How do I adjust the space between Axis Label and Title
How do I adjust the space between Axis Label and Title
- Attachments
-
- SteemaiOS Chart Question.png (131.11 KiB) Viewed 5155 times
Re: How do I adjust the space between Axis Label and Title
I am sorry I forgot to indicate I am using TeeChartNETMonoTouch_v4_13_11_11.
Bernard
Bernard
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: How do I adjust the space between Axis Label and Title
Hi Bernard,
The following WinForm code controls the two spaces either side of the axis title:
Same should apply in Xamarin.iOS. If this doesn't help don't hesitate to let us know.
The following WinForm code controls the two spaces either side of the axis title:
Code: Select all
private void InitializeChart()
{
tChart1.Aspect.View3D = false;
Line series = new Line(tChart1.Chart);
series.FillSampleValues();
tChart1.Axes.Left.Title.Visible = true;
tChart1.Axes.Left.Title.Text = "Left Axis Title";
tChart1.Axes.Left.Title.CustomSize = 80;
tChart1.Axes.Left.Labels.CustomSize = 80;
}
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 |