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.
Wrap chart, when rotate it
Wrap chart, when rotate it
- Attachments
-
- 2.JPG (20.88 KiB) Viewed 3903 times
-
- 1.JPG (22.43 KiB) Viewed 3908 times
Re: Wrap chart, when rotate it
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.
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,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Wrap chart, when rotate it
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 (31.02 KiB) Viewed 3876 times
-
- 1.JPG (33.92 KiB) Viewed 3880 times
Re: Wrap chart, when rotate it
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).
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,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |