Pre loader

Hide axis title of NumericAxis3D in ZxAxisPlane?

Welcome to the SciChart Forums!

  • Please read our Question Asking Guidelines for how to format a good question
  • Some reputation is required to post answers. Get up-voted to avoid the spam filter!
  • We welcome community answers and upvotes. Every Q&A improves SciChart for everyone

WPF Forums | JavaScript Forums | Android Forums | iOS Forums

1
0

Is there any option to hide the axis title of NumericAxis3D in ZxAxisPlane. Want to hide the title highlighted in the attached image.

Version
8.0
Images
  • You must to post comments
1
0

Hi Ammar

You can get almost there with this code

 <s3D:SciChart3DSurface x:Name="scs" 
                           s3D:XyAxisPlane.IsPlaneVisible="False" 
                           s3D:ZyAxisPlane.DrawLabelsMode="AxisPlaneDrawLabelsLocalY"
                           s3D:ZxAxisPlane.DrawLabelsMode="AxisPlaneDrawLabelsBoth">
        <s3D:SciChart3DSurface.ChartModifier>
            <s3D:ModifierGroup3D>
                <s3D:OrbitModifier3D />
                <s3D:ZoomExtentsModifier3D />
            </s3D:ModifierGroup3D>
        </s3D:SciChart3DSurface.ChartModifier>
        <s3D:SciChart3DSurface.XAxis>
            <s3D:NumericAxis3D AxisTitle="X Axis" />
        </s3D:SciChart3DSurface.XAxis>
        <s3D:SciChart3DSurface.YAxis>
            <s3D:NumericAxis3D AxisTitle="Y Axis" />
        </s3D:SciChart3DSurface.YAxis>
        <s3D:SciChart3DSurface.ZAxis>
            <s3D:NumericAxis3D AxisTitle="Z Axis"  />
        </s3D:SciChart3DSurface.ZAxis>
    </s3D:SciChart3DSurface>

This will hide the axis walls on the side, keeping the floor & back, and hide labels on the far side. The result is this:

enter image description here

It doesn’t seem possible to hide the Axis Title on the top side. However this may be an easy feature request.

I’ll log a task in our backlog. When we have some time we will look at it.

Best regards
Andrew

  • You must to post comments
1
0

Can I vote for this to be implemented too!

Looks messy to have a floating axis title when there is no axis labels shown!

  • You must to post comments
0
0

No matter what I try, I cannot login to the bug tracker to up-vote the ticket.

  • Andrew Burnett-Thompson
    It’s not possible for guest users to vote or modify our issue tracker. However you can +vote on any forum question to register your interest!
  • Rogier Ellenbroek
    I assume that by “+vote” you mean click on the captionless and tooltipless, upward-pointing arrow above the number “1” to the left of the question. When I click on that, nothing happens.
  • You must to post comments
Showing 3 results
Your Answer

Please first to submit.