Hi,
I'm using a 3D graph because it is planned to be used along with Trackball tool. This has been removed from the demo project as the problem is not here and I've tried to simplify the code a bit.
The view starts with an orthogonal top view and it's on this view that I need to have no borders, of course when the user starts turning around the graph this isn't relevant anymore.
But regarding your solution, all you suggest is already present in my complete project and has no result :
- I've tried to play with the BoundsMode (Fit, Strech, ... ) but it doesn't change anything.
- The "DockMode" property doesn't exists in my Nevron version, so I'm using the "Dock" property instead
- The axis are already hidden with this loop :
For Each axis As NCartesianAxis In fChart.Axes
axis.Visible = False
Next
- And the same is done for the walls, I even set the width to 0 in addition of the visible false
For Each wall As NChartWall In fChart.Walls
wall.Visible = False
wall.Width = 0
Next
Should I understand that I've pointed out a possible bug in the nevron 3D charts? As we are going around in circles for a while now.
I'm waiting for any other proposition and I'll be glad to test them as soon as possible.
Thank you for your time,
Best regards,
Joël