These three services maintain master/slave relationships between axes, axis cursors and range selections. You may stop a certain relationship by invoking the Stop() method of the service. The following code suspends all synchronization:
C# |
Copy Code
|
---|---|
chartControl.ServiceManager.AxisSyncService.Stop(); chartControl.ServiceManager.AxisCursorSyncService.Stop(); chartControl.ServiceManager.RangeSelectionSyncService.Stop(); |
Visual Basic |
Copy Code
|
---|---|
chartControl.ServiceManager.AxisSyncService.Stop() chartControl.ServiceManager.AxisCursorSyncService.Stop() chartControl.ServiceManager.RangeSelectionSyncService.Stop() |