XY Chart NET 3 Control Reference
ZoomOutAllComplete Event

This event is generated when the user selects the Zoom out all button from the Toolbar or calls the SetZoomOutAll method.  Specifically, this event is generated after the chart is redrawn to the zoom-out-all state.  Use this event to perform operations after a zoom-out-all is complete.

Syntax
[Visual Basic]
Event ZoomOutAllComplete()
[C#]
ZoomOutAllComplete()
[C++]
ZoomOutAllComplete()
       
Example
' XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form.

Private Sub XYChartNETCtl1_ZoomOutAllComplete() Handles XYChartNETCtl1.ZoomOutAllComplete
   XYChartNETCtl1.Trend.Enable = TRUE  'Enable trending after user zooms out all
End Sub
// XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form.

private void XYChartNETCtl1_ZoomOutAllComplete()
{
   XYChartNETCtl1.Trend.Enable = true;  //Enable trending after user zooms out all
}
// XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form.

private:
   System::Void XYChartNETCtl1_ZoomOutAllComplete()
   {
      XYChartNETCtl1->Trend->Enable = true;  //Enable trending after user zooms out all
   }
See Also

 

 


© 2003 - 2013 ControlEng Corporation. All rights reserved.