Chart for WPF and Silverlight / Chart Features / Interaction / Changing 3DChart
In This Topic
Changing 3DChart
In This Topic

This is available in WPF only.

To change the rotation view for 3D chart type at runtime, add the Rotate3DAction class to Actions collection. For example, to rotate chart with the middle mouse button use the following XAML code:

XAML
Copy Code
<c1chart:C1Chart.Actions>
   <c1chart:Rotate3DAction MouseButton="Middle" />
</c1chart:C1Chart.Actions>

 

See Also