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 1020 - TChart.Cursor not updating until mouse moved
Summary: TChart.Cursor not updating until mouse moved
Status: RESOLVED FIXED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Chart (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- normal
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-11-25 06:11 EST by christopher ireland
Modified: 2015-08-26 07:17 EDT (History)
2 users (show)

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-11-25 06:11:55 EST
Issue explained here:
http://www.teechart.net/support/viewtopic.php?f=4&t=15298&p=67853

and reproducible with the following code:

        private void timer1_Tick(object sender, EventArgs e)
        {
            if (tChart1.Cursor == Cursors.Arrow)
            {
                tChart1.Cursor = Cursors.Cross;
                btnAdd.Cursor = Cursors.Cross;
            }
            else
            {
                tChart1.Cursor = Cursors.Arrow;
                btnAdd.Cursor = Cursors.Arrow;
            }
        }
Comment 1 narcís calvet 2015-08-26 07:17:22 EDT
This is still not working either programmatically or using the chart editor.