gnuplot pm3d - Font size control for axis in multiplots -


i posted question plotting multiple 3d surfaces multiplot. got solution having issue controlling fonts of graphs. the fonts terrible in multiplot , settings not doing them i don't know how control these fonts. tried ztics not change anything

here code:

set terminal png size 2000,1600 enhanced transparent set encoding utf8 #iso_8859_1 set output 'output.png' set border linewidth 2 set pm3d border lw 2 ####set axis , axis-labels formatting#### set format '%g' set xtics font "helvetica,26" scale 3 # font xtics set xtics offset 3,-1.5 # put xtics away axis set ytics font "helvetica,26" scale 3 set ytics offset 3,0 # put ytics away axis set ztics font "helvetica,26" scale 3 set ztics 5 # difference between numbers on y-axis set format z "" # hide ztics on left side set grid # show gridlines on both axis set pm3d interpolate 1,1 unset key ###---plot graph###--- splot "plastoquinone-scan-a3-formatted.txt" pm3d   # single plot  #----------------# #  set multiplot # #----------------# #set multiplot layout 3,3 #splot "plastoquinone-scan-a1-formatted.txt" pm3d #splot "plastoquinone-scan-a3-formatted.txt" pm3d, #splot "plastoquinone-scan-b1-formatted.txt" pm3d, #splot "plastoquinone-scan-b2-formatted.txt" pm3d, #splot "plastoquinone-scan-b3-formatted.txt" pm3d, #splot "plastoquinone-scan-c1-formatted.txt" pm3d, #splot "plastoquinone-scan-c2-formatted.txt" pm3d, #splot "plastoquinone-scan-c3-formatted.txt" pm3d 

please suggest how can control settings fonts in multiplot , how can control fonts of "key" appearing on right side (circled red in figure). unable insert links of input files due less reputation :( help.


Comments

Popular posts from this blog

php - Vagrant up error - Uncaught Reflection Exception: Class DOMDocument does not exist -

vue.js - Create hooks for automated testing -

Add new key value to json node in java -