Page 1 of 1

Right Axes Title Caption Not Displaying

Posted: Thu Sep 03, 2009 5:54 pm
by 15654036
I am having a problem getting the title on the right axes of my graph to display after points are graphed. It shows up fine in design time and even at run time until points are graphed. As soon as points are graphed, the size of the graph increases and the right title disappears.

I installed the latest version in hopes that it would work properly, but the problem still occurs. Any assistance with this matter would be appreciated.

Thank you.

Windy

Re: Right Axes Title Caption Not Displaying

Posted: Fri Sep 04, 2009 7:12 am
by narcis
Hi Windy,

This works fine for me here using code snippet below. Does it work fine at your end? If the problem persists please attach a simple example project we can run "as-is" to reproduce the problem here.

Code: Select all

			tChart1.Clear();

			Steema.TeeChart.Styles.Points points1 = new Steema.TeeChart.Styles.Points(tChart1.Chart);
			
			points1.FillSampleValues();
			points1.VertAxis = Steema.TeeChart.Styles.VerticalAxis.Both;
			
			tChart1.Axes.Right.Title.Visible = true;
			tChart1.Axes.Right.Title.Text = "my right axis";
Thanks in advance.

Re: Right Axes Title Caption Not Displaying

Posted: Fri Sep 04, 2009 1:37 pm
by 15654036
Hello NarcĂ­s,

The code you posted helped me figure out what I needed to add to my code.

Thanks so much for your prompt response.

Sincerely,

Windy