I have a xamchart in a wpf form. I have set View3d to true and created a series. Now I wish to rotate the chart in 3d. I select the rotate tab in expression blend in the Chart Data section and set the x, y and z settings, but the chart is not rotating.
Is there something else I need to set? the other 3d features (scale, translate, flip, etc) reflects the changes, but rotate does not.
Any help is appreciated
Here is what is in my Xaml, but nothing with the chart rotation changes:
<Transform3DGroup> <TranslateTransform3D OffsetZ="0" OffsetX="0" OffsetY="0"/> <ScaleTransform3D ScaleZ="1" ScaleY="1" ScaleX="1"/> <RotateTransform3D d:EulerAngles="60,14,45"> <RotateTransform3D.Rotation> <AxisAngleRotation3D Axis="0,1,0" Angle="0"/> </RotateTransform3D.Rotation> </RotateTransform3D> <TranslateTransform3D OffsetZ="0" OffsetX="0" OffsetY="0"/> </Transform3DGroup>
The xamChart has internal 3d transform logic. You can use xamChart.Transform3D property to apply 3D transform to the chart. Try looking at this post:
http://community.infragistics.com/forums/p/10178/39509.aspx#