I woud like to scroll UltraChart horizontally by mouse wheel with Shift key pressed. How can I do that?
The functionality is built into the 3d charts, but if you're using a 2d chart you will have to implement this.
First, make sure the scrollbars are enabled:ultraChart1.Axis.X.ScrollScale.Visible = true;ultraChart1.Axis.Y.ScrollScale.Visible = true;
Then, handle the mouse wheel event on the control and set Scroll and Scale properties inside ultraChart1.Axis.X.ScrollScale and ultraChart1.Axis.Y.ScrollScale.