Polar series with null value
Posted: 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.
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.