Thank you very much Adam, you found out the problem immediatel<font face="arial">y.<br>Setting lbLabelFontHeightF = 0.02 everything works. I thought I played with every single resources before asking...<br>Anyway, thanks again.<br>Giorgio</font><span style="font-size:12.8px"></span><br>
<br>
<blockquote>
----Messaggio originale----<br>
Da: asphilli@ucar.edu<br>
Data: 19-mag-2017 17.22<br>
A: "g.graffino@tim.it"&lt;g.graffino@tim.it&gt;<br>
Cc: "ncl-talk@ucar.edu"&lt;ncl-talk@ucar.edu&gt;<br>
Ogg: Re: [ncl-talk] Panel plot tickmarks and labelbars<br>
<br>
<div dir="ltr">Hi Giorgio,<div>The only issue that I see in your script is that you are setting the label bar label font size to an extremely large value:</div><div><span style="font-size:12.8px">res1@lbLabelFontHeightF = 2.</span><br></div><div><span style="font-size:12.8px">res2@lbLabelFontHeightF = 2.</span><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">res3@lbLabelFontHeightF = 2.</span><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">Try setting each of those to something in the range of 0.020 and see if your labels show up. If they don't, let ncl-talk know.</span></div><div><span style="font-size:12.8px">Adam</span></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, May 19, 2017 at 4:34 AM, <a href="mailto:g.graffino@tim.it">g.graffino@tim.it</a> <span dir="ltr">&lt;<a href="mailto:g.graffino@tim.it" target="_blank">g.graffino@tim.it</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Dear NCL folks,<br>I'm trying to modify some properties of several panel plots.<br><br>I'd like to enlarge both tickmarks and labelbar fonts, but if I do it the labelbar covers much of the tickmarks. Moreover, if I try to move down the labelbar to show up the tickmarks, labels disapper. You can the results in the attached plot.<br>Looking for a solution, I found the panel plots example page (<a href="https://www.ncl.ucar.edu/Applications/panel.shtml" target="_blank">https://www.ncl.ucar.edu/<wbr>Applications/panel.shtml</a>). Example 20 looked promising, but playing with vpHeightF didn't do the trick.<br>Is there something I haven't try yet? Any help is appreciated.<em> </em><a href="https://www.ncl.ucar.edu/Document/Graphics/Resources/vp.shtml#vpHeightF" target="_blank"><em></em></a><br><br>I copied and pasted the plot resources I employed, together with the plot instructions.<br><br>Thanks a lot.<br>Giorgio<br><br>&nbsp;filename = "RegCM_PR_analysis"<br>&nbsp;type = "PNG"<br>&nbsp;wks = gsn_open_wks(type,filename)<br><br>&nbsp;res1@gsnAddCyclic = False<br>&nbsp;res1@gsnDraw = False<br>&nbsp;res1@gsnFrame = False<br>&nbsp;res1@gsnLeftString = ""<br>&nbsp;res1@gsnCenterString = ""<br>&nbsp;res1@gsnRightString = "" <br>&nbsp;res1@cnLineLabelsOn = False<br>&nbsp;res1@cnLinesOn = False<br>&nbsp;res1@cnFillOn = True<br>&nbsp;res1@cnInfoLabelOn = False&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; Turn off plot info<br>&nbsp;res1@cnLevelSelectionMode = "ExplicitLevels"<br>&nbsp;res1@cnLevels = (/1,2,4,8,12,16,24/)<br>&nbsp;res1@cnFillPalette = "MPL_BuGn"<br>&nbsp;res1@cnFillDrawOrder = "Draw"&nbsp; <br>&nbsp;res1@cnFillMode = "RasterFill"<br>&nbsp;res1@lbLabelBarOn = True<br>&nbsp;res1@lbLabelPosition = "Bottom"<br>&nbsp;res1@lbLabelFontHeightF = 2.<br>&nbsp;res1@tmXBLabelFontHeightF = 0.01 <br>&nbsp;res1@tmYLLabelFontHeightF = 0.01<br>&nbsp;res1@pmLabelBarOrthogonalPosF = 0.2<br>&nbsp;res1@mpFillOn = True<br>&nbsp;res1@mpOutlineOn = True<br>&nbsp;res1@mpLimitMode = "LatLon"<br>&nbsp;res1@mpMinLatF&nbsp;&nbsp; = min(lat)<br>&nbsp;res1@mpMinLonF&nbsp;&nbsp; = min(lon)<br>&nbsp;res1@mpMaxLatF&nbsp;&nbsp; = max(lat)<br>&nbsp;res1@mpMaxLonF&nbsp;&nbsp; = max(lon)<br>&nbsp;res1@mpCenterLonF = 179.625<br>&nbsp;res1@mpCenterLatF = 0.0<br>&nbsp;res1@sfXArray = lon&nbsp;&nbsp; <br>&nbsp;res1@sfYArray = lat&nbsp; <br>&nbsp;res2@gsnAddCyclic = False<br>&nbsp;res2@gsnDraw = False<br>&nbsp;res2@gsnFrame = False<br>&nbsp;res2@gsnLeftString = ""<br>&nbsp;res2@gsnCenterString = ""<br>&nbsp;res2@gsnRightString = "" <br>&nbsp;res2@cnLineLabelsOn = False<br>&nbsp;res2@cnLinesOn = False<br>&nbsp;res2@cnFillOn = True<br>&nbsp;res2@cnInfoLabelOn = False&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; Turn off plot info<br>&nbsp;res2@cnLevelSelectionMode = "ExplicitLevels"<br>&nbsp;res2@cnLevels = (/1,2,4,8,12,16,24/)<br>&nbsp;res2@cnFillPalette = "MPL_BuGn" <br>&nbsp;res2@cnFillDrawOrder = "Draw"&nbsp; <br>&nbsp;res2@cnFillMode = "RasterFill"<br>&nbsp;res2@lbLabelBarOn = True<br>&nbsp;res2@lbLabelPosition = "Bottom"<br>&nbsp;res2@lbLabelFontHeightF = 2.<br>&nbsp;res2@tmXBLabelFontHeightF = 0.01 <br>&nbsp;res2@tmYLLabelFontHeightF = 0.01<br>&nbsp;res2@mpFillOn = True<br>&nbsp;res2@mpOutlineOn = True<br>&nbsp;res2@mpLimitMode = "LatLon"<br>&nbsp;res2@mpMinLatF&nbsp;&nbsp; = min(lat)<br>&nbsp;res2@mpMinLonF&nbsp;&nbsp; = min(lon)<br>&nbsp;res2@mpMaxLatF&nbsp;&nbsp; = max(lat)<br>&nbsp;res2@mpMaxLonF&nbsp;&nbsp; = max(lon)<br>&nbsp;res2@mpCenterLonF = 179.625<br>&nbsp;res2@mpCenterLatF = 0.0<br>&nbsp;res2@sfXArray = lon&nbsp;&nbsp; <br>&nbsp;res2@sfYArray = lat&nbsp; <br>&nbsp;res3@gsnAddCyclic = False<br>&nbsp;res3@gsnDraw = False<br>&nbsp;res3@gsnFrame = False<br>&nbsp;res3@gsnLeftString = ""<br>&nbsp;res3@gsnCenterString = ""<br>&nbsp;res3@gsnRightString = "" <br>&nbsp;res3@cnLineLabelsOn = False<br>&nbsp;res3@cnLinesOn = False<br>&nbsp;res3@cnFillOn = True<br>&nbsp;res3@cnInfoLabelOn = False&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; Turn off plot info<br>&nbsp;res3@cnLevelSelectionMode = "ExplicitLevels"<br>&nbsp;res3@cnLevels = (/-24,-16,-8,-4,-2,-1,1,2,4,8,<wbr>16,24/)<br>&nbsp;res3@cnFillColors = (/45,50,55,60,65,0,0,0,75,85,<wbr>95,105,115,125/)<br>&nbsp;res3@cnFillDrawOrder = "Draw"&nbsp; <br>&nbsp;res3@cnFillMode = "RasterFill"<br>&nbsp;res3@lbLabelBarOn = True<br>&nbsp;res3@lbLabelPosition = "Bottom"<br>&nbsp;res3@lbLabelFontHeightF = 2.<br>&nbsp;res3@tmXBLabelFontHeightF = 0.01 <br>&nbsp;res3@tmYLLabelFontHeightF = 0.01<br>&nbsp;res3@mpFillOn = True<br>&nbsp;res3@mpOutlineOn = True<br>&nbsp;res3@mpLimitMode = "LatLon"<br>&nbsp;res3@mpMinLatF&nbsp;&nbsp; = min(lat)<br>&nbsp;res3@mpMinLonF&nbsp;&nbsp; = min(lon)<br>&nbsp;res3@mpMaxLatF&nbsp;&nbsp; = max(lat)<br>&nbsp;res3@mpMaxLonF&nbsp;&nbsp; = max(lon)<br>&nbsp;res3@mpCenterLonF = 179.625<br>&nbsp;res3@mpCenterLatF = 0.0<br>&nbsp;res3@sfXArray = lon&nbsp;&nbsp; <br>&nbsp;res3@sfYArray = lat&nbsp; <br>&nbsp;panel_res@gsnMaximize = True<br>&nbsp;panel_res@gsnPaperOrientation = "Landscape" <br>&nbsp;panel_res@<wbr>gsnPanelFigureStrings = (/"Model","GPCP","Bias"/)<br>&nbsp;panel_res@<wbr>gsnPanelFigureStringsFontHeigh<wbr>tF = 0.01<br>&nbsp;panel_res@<wbr>gsnPanelYWhiteSpacePercent = 5.<br>&nbsp;panel_res@txString = "Rainfall (mm/day) - Average - January"<br><br>&nbsp;plot1 = gsn_csm_contour_map(wks,pri_<wbr>int_mon,res1)<br>&nbsp;plot2 = gsn_csm_contour_map(wks,pre_<wbr>mon,res2)<br>&nbsp;plot3 = gsn_csm_contour_map(wks,pri_<wbr>int_mon-pre_mon,res3)<br>&nbsp;gsn_panel(wks,(/plot1,plot2,<wbr>plot3/),(/3,1/),panel_res1)<br><br>______________________________<wbr>_________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/<wbr>mailman/listinfo/ncl-talk</a><br>
<br></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div><div><span><font color="#888888">Adam Phillips <br></font></span></div><span><font color="#888888">Associate Scientist,&nbsp; </font></span><span><font color="#888888">Climate and Global Dynamics Laboratory, NCAR<br></font></span></div></div><div><span><font color="#888888"><a href="http://www.cgd.ucar.edu/staff/asphilli/" target="_blank">www.cgd.ucar.edu/staff/asphilli/</a>&nbsp;&nbsp; </font></span><span><font color="#888888">303-497-1726 </font></span></div><span><font color="#888888"></font></span><div><div><span><font color="#888888"><br></font></span><div><span><font color="#888888"><a href="http://www.cgd.ucar.edu/staff/asphilli" target="_blank"></a></font></span></div></div></div></div></div></div></div></div></div></div></div>
</div>
<br>
</blockquote><br>