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

Summary: TChart.Cursor not updating until mouse moved
Product: .NET TeeChart Reporter: christopher ireland <chris>
Component: ChartAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: normal CC: daniel.ruetimann, narcis
Priority: ---    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

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.