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 - [TV52015555] Probably related with TV52015462. The null points are still drawn in...
Summary: [TV52015555] Probably related with TV52015462. The null points are still draw...
Status: CONFIRMED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Series (show other bugs)
Version: unspecified
Hardware: All All
: Normal major
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-05-04 13:34 EDT by yeray alonso
Modified: 2013-11-20 10:38 EST (History)
0 users

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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)]