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 - AxisScroll tool causes event zoom occurs when it is scrolling axis.
Summary: AxisScroll tool causes event zoom occurs when it is scrolling axis.
Status: RESOLVED FIXED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Tools (show other bugs)
Version: TeeChart.NET 2013 4.1.2013.11080
Hardware: PC Windows
: --- normal
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-11-15 06:26 EST by sandra pazos
Modified: 2013-11-15 10:35 EST (History)
1 user (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 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.