Page 1 of 1
Wrap chart, when rotate it
Posted: Mon Mar 22, 2010 8:36 am
by 15655333
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.
Re: Wrap chart, when rotate it
Posted: Mon Mar 22, 2010 4:22 pm
by yeray
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.
Re: Wrap chart, when rotate it
Posted: Tue Mar 23, 2010 1:12 pm
by 15655333
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--;
}
}
}
}
Re: Wrap chart, when rotate it
Posted: Tue Mar 23, 2010 3:01 pm
by yeray
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).