I am running the app which uses the sci chart object FreeSurfaceRenderableSeries3D.
This is a 3d spherical surfaced object, i tried to run it in release mode, i am unable to do the manual rotation using mouse drag to explore the surface of the 3d object. But the object is on freeze for any mouse activity on screen.
I have attached sample image of state of my app.
Please suggest.
- Vishnu Ramvath asked 3 days ago
- You must login to post comments
Hi Vishnu,
It’s difficult to tell what the problem is because you haven’t provided any code of how you’ve setup the chart.
However I can guess, by your description, that you want to enable mouse-drag to rotate the 3D chart.
If this is what you want, then you need to add the behaviour onto the chart.
Take a look at The Orbit Modifier documentation page. This explains what to do.
<s3D:SciChart3DSurface x:Name="scs" >
<!-- XAxis, YAxis, RenderableSeries omitted for brevity -->
<s3D:SciChart3DSurface.ChartModifier>
<s3D:ModifierGroup3D>
<!-- Add the OrbitModifier3D to the chart. Optional. add other modifiers -->
<s3D:OrbitModifier3D DegreesPerPixel="0.2" IsEnabled="True" ExecuteOn="MouseLeftButton"/>
</s3D:ModifierGroup3D>
</s3D:SciChart3DSurface.ChartModifier>
</s3D:SciChart3DSurface>
If you need something else, please clarify.
Best regards
Andrew
- Andrew Burnett-Thompson answered 3 days ago
- You must login to post comments
Please login first to submit.