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 827 - Series.Cursor property changing erroneously over null points
Summary: Series.Cursor property changing erroneously over null points
Status: RESOLVED FIXED
Alias: None
Product: .NET 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 05:43 EDT by christopher ireland
Modified: 2014-07-14 11:34 EDT (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 christopher ireland 2014-07-04 05:43:09 EDT
Using this code:

    private void InitializeChart()
    {
      Steema.TeeChart.Styles.Line line = new Steema.TeeChart.Styles.Line(tChart1.Chart);
      line.Add(0);
      line.Add(1);
      line.Add(2);
      line.Add(3);
      line.Add(4);
      line.SetNull(2);
      line.Cursor = System.Windows.Forms.Cursors.Cross;
    }

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