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 104

Summary: AxisScroll tool causes event zoom occurs when it is scrolling axis.
Product: .NET TeeChart Reporter: sandra pazos <sandra>
Component: ToolsAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: normal CC: chris
Priority: ---    
Version: TeeChart.NET 2013 4.1.2013.11080   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description sandra pazos 2013-11-15 06:26:57 EST
If you use AxisScroll tool and zoom direction is horizontal, when you are scrolling bottom axis, the zoom event occurs and Chart is zoomed. 
Using next code
public Form1()
        {
          InitializeComponent();
          InitializeChart();
        }
        private void InitializeChart()
        {
          tChart1.Aspect.View3D = false;
          Steema.TeeChart.Styles.Line line1 = new Line(tChart1.Chart);
          line1.FillSampleValues();
          Steema.TeeChart.Tools.AxisScroll scroll = new AxisScroll(tChart1.Chart);
          scroll.Axis = tChart1.Axes.Bottom;
          tChart1.Zoom.Direction = ZoomDirections.Horizontal;
        }
and following next steps
1.- Run application.
2.- Scrolling axes
3.-Stop Scrolling axes, the problem appears. 

you can reproduce the problem. Is possible you need do steps more one time.