Hello,
I have created a surface plot, consisting of 20 by 100 elements.
The plot is displayed correctly. however when zooming the zoomed area is displyed outside of the axes, overwriting the x an y axis.
I have attached a Visual C++ (2008) example. Press plot palettes and then zoom to see the problem.
Regards
JB
Zoom Exceeds Frame
Zoom Exceeds Frame
- Attachments
-
- test.zip
- (490.95 KiB) Downloaded 478 times
Re: Zoom Exceeds Frame
Hi Jacques,
I can't run your application here as it uses some components we don't have here. So please, try to arrange a simple example project we can run as-is here to reproduce the problem.
Thanks in advance.
I can't run your application here as it uses some components we don't have here. So please, try to arrange a simple example project we can run as-is here to reproduce the problem.
Thanks in advance.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Zoom Exceeds Frame
Hello Yeray,
Which components are those?
Regards
JB
Which components are those?
Regards
JB
Re: Zoom Exceeds Frame
Hi Jacques,
Excuse me, I hadn't the Visual C++ 2008 Feature Pack...
I've found that adding the following to the begin of your OnBnClickedBtnPlot3d, the problem seems to be solved:
That makes me think that I can be missing something else you've set to the chart. Then I'm trying to reproduce the same in a WinFroms application. Could you please see if you can reproduce the problem there and tell us what are we missing?
Excuse me, I hadn't the Visual C++ 2008 Feature Pack...
I've found that adding the following to the begin of your OnBnClickedBtnPlot3d, the problem seems to be solved:
Code: Select all
m_colorGrid.ClearChart();
m_colorGrid.GetAspect().SetView3D(false);
- Attachments
-
- CAXTest.zip
- Test WinForms
- (9.47 KiB) Downloaded 424 times
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |