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 1612

Summary: Rotate tool blocks MouseDown events
Product: .NET TeeChart Reporter: christopher ireland <chris>
Component: ToolsAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: normal    
Priority: ---    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description christopher ireland 2016-08-29 09:54:06 EDT
An example of this can be seen with the Legend CheckBoxes, which do not respond to mouse clicks:

    private void InitializeChart()
    {
      Points points = new Points();
      points.Add(10);
      tChart1.Series.Add(points);
      var rotate = new Rotate();
      tChart1.Legend.CheckBoxes = true;
      tChart1.Tools.Add(rotate);
    }