Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 321

Summary: [TV52015555] Probably related with TV52015462. The null points are still drawn in...
Product: VCL TeeChart Reporter: yeray alonso <yeray>
Component: SeriesAssignee: Steema Issue Manager <issuemanager>
Status: CONFIRMED ---    
Severity: major    
Priority: Normal    
Version: unspecified   
Target Milestone: ---   
Hardware: All   
OS: All   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description yeray alonso 2013-11-20 10:38:23 EST
The null points are still drawn in TPolarSeries (both the pointer and the lines).
Reproducible with the next example:
uses TeePolar;
procedure TForm1.FormCreate(Sender: TObject);
var polar: TPolarSeries;
begin
  polar:=Chart1.AddSeries(TPolarSeries) as TPolarSeries;
  polar.AddPolar(0,0,'',clRed);
  polar.AddPolar(45,10,'',clNone);
  polar.AddPolar(0,5,'',clGreen);
  polar.AddPolar(90,5,'',clBlue);
  polar.Pen.Width := 2;
  polar.ColorEachPoint:=true;
end; [created:2011-05-04T12:34:14.000+01:00 reported by:yeray@steema.com reported in version:2011.03.30407 (TeeChart VCL)]