Polar series with null value

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Ingc
Newbie
Newbie
Posts: 2
Joined: Wed Jun 22, 2005 4:00 am
Location: Connecticut, United States

Polar series with null value

Post by Ingc » Mon Jul 17, 2006 3:04 pm

Hello,

The polar series is not working properly when null are added. To test, you can create a sample project in Visual Studio, add teechart and one Polar serie. Then add the following in the constructor.

this.polar1.Brush.Visible = false;
this.polar1.Circled = true;
this.polar1.Pointer.Visible = false;

this.polar1.Add(0, 67);
this.polar1.Add(30, 45);
this.polar1.Add(60, 50);
this.polar1.Add(75, 90);
this.polar1.Add();
this.polar1.Add(100, 75);
this.polar1.Add(120, 45);
this.polar1.Add(150, 80);
this.polar1.Add(180, 70);
this.polar1.Add(210, 35);
this.polar1.Add(240, 33);
this.polar1.Add(270, 55);
this.polar1.Add(300, 65);
this.polar1.Add(330, 23);

There should be a break between 75 and 100 degree. I expected to see a break in the plot like those in a fastline serie but i don't. I am using the May, 2006 release build. Please fix this.

Thanks.

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

Post by Narcís » Tue Jul 18, 2006 9:04 am

Hi Ingc,

I could reproduce the issue here and added it (TF02011591) to our defect list to be fixed for future releases.
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

Post Reply