Right Axes Title Caption Not Displaying

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Windy
Newbie
Newbie
Posts: 3
Joined: Thu Jul 30, 2009 12:00 am

Right Axes Title Caption Not Displaying

Post by Windy » Thu Sep 03, 2009 5:54 pm

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

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

Re: Right Axes Title Caption Not Displaying

Post by Narcís » Fri Sep 04, 2009 7:12 am

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.
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

Windy
Newbie
Newbie
Posts: 3
Joined: Thu Jul 30, 2009 12:00 am

Re: Right Axes Title Caption Not Displaying

Post by Windy » Fri Sep 04, 2009 1:37 pm

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

Post Reply