Scroll

This event is fired when scroll box is being moved by a mouse. It is applicable for AxisX only.

 

Example:

 

This example shows how to attach Scroll event to Axis element.

 

 

Axis axis = new Axis();

axis.Scroll += new EventHandler<AxisScrollEventArgs>(axis_Scroll);

 

 

Inside the event handler of all the above event, you can perform some action as shown below:

 

 

void axis_Scroll(object sender, AxisScrollEventArgs e)

{

          // Do Something

}