Page 1 of 1

Scroll with left mouse button

Posted: Fri Sep 21, 2007 9:47 am
by 9637567
Hi,

I have a question on the scrolling functionality.

Default scrolling is enabled with your right mouse button, is there a way to change this to your left mouse button (switch between zoom and scroll mode)?

Danny

Posted: Fri Sep 21, 2007 9:51 am
by narcis
Hi Danny,

Yes, you can switch mouse buttons like this:

Code: Select all

						tChart1.Zoom.MouseButton = MouseButtons.Right;
						tChart1.Panning.MouseButton = MouseButtons.Left;

Posted: Tue Jun 10, 2008 10:20 am
by 14048132
Hi,

How could I press Ctrl + right mousebutton(or any key) to scroll the chart?

Posted: Tue Jun 10, 2008 10:37 am
by narcis
Hi Chris.CHWU,

You can use KeyShift:

Code: Select all

			tChart1.Panning.KeyShift = Keys.Control;