Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
180
xam 3d rotation in Expression Blend 4.0
posted

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>