I'd like to set the size of a wxplot2d plot on a maxima worksheet to be smaller or larger than the default. How does one do this?
Asked
Active
Viewed 3,176 times
1 Answers
8
wxplot2d(sin(x),[x,0,2*%pi]),wxplot_size=[1024,768];
-
looks like the axes font sizes are fixed. do you know how to rescale them? – daj Nov 01 '16 at 12:43
-
Add gnuplot preamble, something like this: wxplot2d(sin(x),[x,0,2*%pi],[gnuplot_preamble, "set font 'Arial,12';"),wxplot_size=[1024,768]; – Nov 01 '16 at 13:33
-
1Sorry, I mean `wxplot2d(sin(x),[x,0,2*%pi],[gnuplot_preamble, "set term pngcairo font 'Arial,12';"),wxplot_size=[1024,768];` – Nov 01 '16 at 13:42