Wrap chart, when rotate it

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
petroV
Newbie
Newbie
Posts: 24
Joined: Tue Mar 02, 2010 12:00 am

Wrap chart, when rotate it

Post by petroV » Mon Mar 22, 2010 8:36 am

Hello.
Have some problem with chart TeeChartNET2009VSNET2008_4.0.2009.62332.exe

1.Has blank point, when 3D chart is rotated(with rotate tool).(Chart has some series.)

2.Apear new line brom begin point to end point, when rotate 3D chart and used zoom.
Attachments
2.JPG
2.JPG (20.88 KiB) Viewed 3902 times
1.JPG
1.JPG (22.43 KiB) Viewed 3907 times

Yeray
Site Admin
Site Admin
Posts: 9612
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Wrap chart, when rotate it

Post by Yeray » Mon Mar 22, 2010 4:22 pm

Hi petroV,

Could you please arrange and send us a simple example project we can run as-is to reproduce the problem here?
Thanks in advance.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

petroV
Newbie
Newbie
Posts: 24
Joined: Tue Mar 02, 2010 12:00 am

Re: Wrap chart, when rotate it

Post by petroV » Tue Mar 23, 2010 1:12 pm

sample code

Code: Select all

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace TestTeeChart
{
  public partial class Form1 : Form
  {
    public Form1()
    {
      InitializeComponent();
    }

    private void Form1_Shown(object sender, EventArgs e)
    {
      
      Random rnd = new Random();
      double x = 0;
      double y = 0;
      double z = 0;
      for(int i= 0;i< rnd.Next(10);i++)
      {
        Steema.TeeChart.Styles.Points3D points = new Steema.TeeChart.Styles.Points3D(tChart1.Chart);
        for(int k = 0; k<5; k++)
        {
          points.Add(x, y, z);
          x++; y++; z++;
        }
        x--;y--;z--;
      }
    }
  }
}
Attachments
2.JPG
2.JPG (31.02 KiB) Viewed 3875 times
1.JPG
1.JPG (33.92 KiB) Viewed 3879 times

Yeray
Site Admin
Site Admin
Posts: 9612
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Wrap chart, when rotate it

Post by Yeray » Tue Mar 23, 2010 3:01 pm

Hi petroV,

Thanks for the code. I could reproduce the problem here so I've added it to the defect list to be fixed in future releases (TF02014744).
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply