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
405
Graph borders
posted

    Hi,

 This is my xamGraph "hello world", and first challenge I found is to get rid of the graph borders when in 3D:

So it end up "zoomed" as:

 Is it possible to do it?

 Thanks in advance.

Carlos.

  • 26458
    Verified Answer
    Offline posted

    The only way to do this is through various transforms. You can either do this on the chart itself or on its Scene property. For example, this can make the 3d chart fit a bit better:

    <ig:XamChart.Transform3D>
         <Transform3DGroup>
             <ScaleTransform3D ScaleY="1.5" ScaleX="1.1"/>
             <TranslateTransform3D OffsetX="-.1" />
         </Transform3DGroup>
    </ig:XamChart.Transform3D>