From: FXHat - <fxh...@gm...> - 2008-12-12 10:35:57
|
You have to apply everything to both plotsurfaces for these to behave identical. So the LabelOffsetAbsolute should also be set to true for the second plotsurface. You could also try setting the Padding property. In my project, I applied the code below to both plotsurfaces, the left Y axes now align perfectly (make sure your plotsurfaces are aligned correctly on the form as well). <instance>.YAxis1.LabelOffsetAbsolute = true; <instance>.YAxis1.LabelOffset = 40; <instance>.Padding = 5; |