Page 1 of 1

Issues when displaying the chart

Posted: Tue Dec 08, 2009 1:37 pm
by 13049999
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

Re: Issues when displaying the chart

Posted: Wed Dec 09, 2009 10:46 am
by narcis
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;

Re: Issues when displaying the chart

Posted: Thu Dec 10, 2009 9:33 am
by 13049999
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 ?

Re: Issues when displaying the chart

Posted: Thu Dec 10, 2009 9:35 am
by narcis
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.