Group: Forum Members
Last Active: Last Week
Posts: 3,054,
Visits: 4,009
|
Hi Tal, There is currently no support for axis scrolling in 3D, but we may introduce one in the near future as it is not different than the 2D case - actually the only problem is the scrollbar rendering. The scrollbar / data zooming internally use the paging view ZoomIn/ZoomOut functions: NChart chart = nChartControl1.Charts[0]; NAxis yAxis = chart.Axis(StandardAxis.PrimaryY); yAxis.PagingView.Enabled = true; yAxis.PagingView.ZoomIn(new NRange1DD(10, 20), 1);
The code above clips the 3D output - can you post the code you used to restrict the range of the of the axis that results in no clipping?
Best Regards, Nevron Support Team
|
Group: Forum Members
Last Active: 9 Years Ago
Posts: 19,
Visits: 2
|
Hi,
I've recently upgraded my Nevron Chart version from 2006 Q2 (!) to 2010 Vol.1, and while at it I've changed my 2D charts to 3D.
When my charts were 2D I had an axis scroll bar on the X Axis, and now when in 3D i see that it cannot be done, I guess it was intentional.
Is there any way to create a behaviour that is similar to Axis scrolling in 3D charts? I've tried using the paging view of the axis and the data pan tool, but its not a good solution to the problem, since i can still see the data that is out of the range I've set (it appears outside the bounds of the chart axis), and besides that, there is no scroll bar, which is pretty important.
Thanks.
|