Issues when displaying the chart

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
flzox
Newbie
Newbie
Posts: 2
Joined: Wed Aug 27, 2008 12:00 am

Issues when displaying the chart

Post by flzox » Tue Dec 08, 2009 1:37 pm

Hello all,
I'm a begginer using TChat and I have a problem regarding the scale of the chart.

I joined a snapshot of my two issues.
- The text over the lines of the first chart is not properly displayed
- The extremums of the curve of the second chart are a little bit cut.

I cannot find the option or property that fix that problem ...
Image

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: Issues when displaying the chart

Post by Narcís » Wed Dec 09, 2009 10:46 am

Hi flzox,
- The text over the lines of the first chart is not properly displaye
Try setting top margin, for example:

Code: Select all

			tChart1.Panel.MarginTop = 10;
- The extremums of the curve of the second chart are a little bit cut.
You can set axis offsets, for example:

Code: Select all

			tChart1.Axes.Left.MinimumOffset = 50;
			tChart1.Axes.Left.MaximumOffset = 50;
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

flzox
Newbie
Newbie
Posts: 2
Joined: Wed Aug 27, 2008 12:00 am

Re: Issues when displaying the chart

Post by flzox » Thu Dec 10, 2009 9:33 am

Hi Narcis,
thank you for your answer but ... but it doesn't work for me.

Code: Select all

tChart1.Panel.MarginTop = 10;
resizes the panel containing the chart, but not the chart inside this panel.

Code: Select all

         tChart1.Axes.Left.MinimumOffset = 50;
         tChart1.Axes.Left.MaximumOffset = 50;
It has no impact on the chart.

Any suggestion ?

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: Issues when displaying the chart

Post by Narcís » Thu Dec 10, 2009 9:35 am

Hi flzox,

Please attach a simple example project with which we can reproduce your problem here so that we can provide more accurate answers. Also please let us know the exact TeeChart version you are using.

Thanks in advance.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply