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
Right Axes Title Caption Not Displaying
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Right Axes Title Caption Not Displaying
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.
Thanks in advance.
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";
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 |
Re: Right Axes Title Caption Not Displaying
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
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