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 - Series.Cursor property changing erroneously over null points
Summary: Series.Cursor property changing erroneously over null points
Status: RESOLVED FIXED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Series (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- normal
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-07-04 06:21 EDT by christopher ireland
Modified: 2015-05-21 06:38 EDT (History)
1 user (show)

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


Attachments
test case (2.01 KB, application/x-zip-compressed)
2015-05-21 06:38 EDT, david berneda
Details

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