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 828

Summary: Series.Cursor property changing erroneously over null points
Product: VCL TeeChart Reporter: christopher ireland <chris>
Component: SeriesAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: normal CC: david
Priority: ---    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:
Attachments: test case

Description christopher ireland 2014-07-04 06:21:01 EDT
Using this code:

procedure TForm1.InitializeChart;
begin
Series1 :=TLineSeries.Create(self);
Chart1.AddSeries(Series1);
Chart1.View3D:=false;


Series1.Add(0);
Series1.Add(1);
Series1.Add(2);
Series1.Add(3);
Series1.Add(4);
Series1.SetNull(2);
Series1.Cursor:=crCross;
end;

move the mouse over the null points and observe how the Cursor erroneously changes.

[Same as .NET http://bugs.teechart.net/show_bug.cgi?id=827 ]
Comment 1 david berneda 2015-05-21 06:38:52 EDT
Created attachment 452 [details]
test case