Topic: Bolder lines for axes?

I use Graph with students who do not see well.

I can not find a way to make the x- and y-axes bolder. I'd like to make those lines quite thick so they are easily visible. 

If this is possible, please tell me how.

Re: Bolder lines for axes?

You can use the scripting engine feature in Graph 4.4. You need to install Python 3.2. When you press F11 inside Graph you get a command line interface. The following commands can be used to change different plotting settings. You can change the values to your needs. You can press F5 to update the graphing area:

Graph.PlotSettings.AxisWidth=4
Graph.PlotSettings.TickWidth=2
Graph.PlotSettings.TickLength=8
Graph.PlotSettings.GridWidth=2
Graph.PlotSettings.xNumberDist=8
Graph.PlotSettings.yNumberDist=10

Re: Bolder lines for axes?

Thank you, Ivan!
And thank you for Graph, too!