3D chart loses axes

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
OMP
Newbie
Newbie
Posts: 21
Joined: Mon Dec 10, 2012 12:00 am

3D chart loses axes

Post by OMP » Mon Jul 01, 2013 2:41 pm

Dear,

When I add more then 25 lines in my chart which all have only 1 point, my 3D chart looks strange.

This my code:

Code: Select all

chartToTest.Aspect.View3D = true;

            for (int i = 0; i < 30; i++)
            {
               Steema.TeeChart.Styles.Line line = new Steema.TeeChart.Styles.Line(chartToTest.Chart);
               line.Pointer.Visible = true;
               line.Add(0, "");
            }
Kind regards
Attachments
3D chart.PNG
3D chart.PNG (17.77 KiB) Viewed 11413 times

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: 3D chart loses axes

Post by Sandra » Tue Jul 02, 2013 8:46 am

Hello OMP,

Using your code with latest maintenance release of TeeChartFor.Net ( Build 4.1.2013.05281):

Code: Select all

private void InitializeChart()
    {
    //  tChart1.Dock = DockStyle.Fill; 
      for (int i = 0; i < 30; i++)
      {
        Steema.TeeChart.Styles.Line line = new Steema.TeeChart.Styles.Line(tChart1.Chart);
        line.Pointer.Visible = true;
        line.Add(0, "");
      }
   }
I have gotten next results where your problem doesn't appear.
TestAxes.jpg
TestAxes.jpg (51.95 KiB) Viewed 11395 times
Could you please tell us which version of TeeChartFor.Net are you using?


Thanks,
Best Regards,
Sandra Pazos / 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

OMP
Newbie
Newbie
Posts: 21
Joined: Mon Dec 10, 2012 12:00 am

Re: 3D chart loses axes

Post by OMP » Tue Jul 02, 2013 10:20 am

I have downloaded the latest version (4.1.2013.5282) and tried it again, but the issue still remains.

Regards

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: 3D chart loses axes

Post by Sandra » Tue Jul 02, 2013 12:09 pm

Hello OMP,

Could you please send us your project because we can try to reproduce your problem here, so, using your attached code it doesn't appears for me?


Thanks,
Best Regards,
Sandra Pazos / 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

OMP
Newbie
Newbie
Posts: 21
Joined: Mon Dec 10, 2012 12:00 am

Re: 3D chart loses axes

Post by OMP » Tue Jul 02, 2013 1:07 pm

When I was making the test project, I have noticed that it depends on the size of the window and the number of lines that are used.
In the test project I couldn't reproduce it with 30 lines, but when 50 lines are used, the issue is still there.

I will send the test project to support.

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

Re: 3D chart loses axes

Post by Narcís » Tue Jul 02, 2013 1:23 pm

Hello,
OMP wrote: I will send the test project to support.
I have edited your email because you posted the Pro Support email address. You can either attach your project here or post it at www.steema.net/upload/

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

OMP
Newbie
Newbie
Posts: 21
Joined: Mon Dec 10, 2012 12:00 am

Re: 3D chart loses axes

Post by OMP » Tue Jul 02, 2013 1:56 pm

I've attached the project here now. My apologies for the misunderstanding.
Attachments
TeeChartTest.zip
(112.47 KiB) Downloaded 656 times

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: 3D chart loses axes

Post by Sandra » Wed Jul 03, 2013 10:18 am

Hello OMP,
We consider it as an enhancement and for this reason we have added it in wish-list with number [TF02016632] to we will consider its inclusion in future maintenance releases of TeechartFor.Net.

Thanks,
Best Regards,
Sandra Pazos / 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