I have set the chart.bottomaxis.position to a small negative number so as to keep points at the bottom of the plot to not be on top of the bottom axis. That works well but if I turn grid lines on then the grid lines do not quite reach the bottom axis (they stop at where the axis would have been). Is there a way to ensure that the grid lines reach an axis when the position offset is not zero?
Thanks, Jim
grid lines and bottomaxis.position
Re: grid lines and bottomaxis.position
Hi Jim,
I'm not sure to understand the purpose of setting "chart.bottomaxis.position to a small negative number".
If you want to give more margin below the points being drawn you can set the Left axis MinimumOffset. Ie:
I'm not sure to understand the purpose of setting "chart.bottomaxis.position to a small negative number".
If you want to give more margin below the points being drawn you can set the Left axis MinimumOffset. Ie:
Code: Select all
Chart1.Axes.Left.MinimumOffset:=10;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: grid lines and bottomaxis.position
ok, that works. Thanks!