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 2433 - Scroll/Pan horizontally with the mouse wheel
Summary: Scroll/Pan horizontally with the mouse wheel
Status: RESOLVED FIXED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Axis (show other bugs)
Version: 32.210430
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: yeray alonso
URL: http://www.steema.com/support/viewtop...
Keywords:
Depends on:
Blocks:
 
Reported: 2021-06-21 05:00 EDT by yeray alonso
Modified: 2021-06-21 05:02 EDT (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 yeray alonso 2021-06-21 05:00:57 EDT
Activating the pan/scroll with the mouse wheel only scrolls vertically.
Example:

procedure TForm1.FormCreate(Sender: TObject);
var Chart1: TChart;
begin
  Chart1:=TChart.Create(Self);
  Chart1.Parent:=Self;
  with Chart1 do
  begin
    Align:=alClient;

    ScrollMouseButton:=mbMiddle;
    Panning.MouseWheel:=pmwNormal;
    AllowPanning:=pmHorizontal;

    View3D:=False;
    Legend.Hide;
    AddSeries(TLineSeries).FillSampleValues;
  end;
end;