<html><head><meta http-equiv="Content-Type" content="text/html charset=windows-1252"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;">Hi Vanucia,<div><br></div><div>example xy_32.nxl is what you are looking for. It should work, but without your complete script I can show you only how it can be:</div><div><br></div><div>…</div><div><br></div><div><br></div><div><div><font face="Courier New" color="#0042aa">;-- set resources</font></div><div><font face="Courier New" color="#0042aa">&nbsp; res &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = &nbsp;True</font></div><div><font face="Courier New" color="#0042aa">&nbsp; res@gsnDraw &nbsp; &nbsp; &nbsp; = &nbsp;False</font></div><div><font face="Courier New" color="#0042aa">&nbsp; res@gsnFrame &nbsp; &nbsp; &nbsp;= &nbsp;False</font></div><div><font face="Courier New" color="#0042aa">&nbsp; res@gsnMaximize &nbsp; = &nbsp;True</font></div><div><font face="Courier New" color="#0042aa">&nbsp;&nbsp;</font></div><div><font face="Courier New" color="#0042aa">&nbsp; res@vpWidthF &nbsp; &nbsp; &nbsp;= &nbsp;0.8 &nbsp; &nbsp; &nbsp; &nbsp;; Make plots wider</font></div><div><font face="Courier New" color="#0042aa">&nbsp; res@vpHeightF &nbsp; &nbsp; = &nbsp;0.6</font></div><div><font face="Courier New" color="#0042aa">&nbsp;&nbsp;</font></div><div><font face="Courier New" color="#0042aa">&nbsp; res@trYMinF &nbsp; &nbsp; &nbsp; = &nbsp;min(zave1)</font></div><div><font face="Courier New" color="#0042aa">&nbsp; res@trYMaxF &nbsp; &nbsp; &nbsp; = &nbsp;max(zave1)</font></div><div><font face="Courier New" color="#0042aa"><br></font></div><div><font face="Courier New" color="#0042aa">&nbsp; res@pmLegendDisplayMode &nbsp; &nbsp;= "Always" &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;; turn on legend</font></div><div><font face="Courier New" color="#0042aa">&nbsp; res@pmLegendWidthF &nbsp; &nbsp; &nbsp; &nbsp; = &nbsp;0.12 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ; Change width and</font></div><div><font face="Courier New" color="#0042aa">&nbsp; res@pmLegendHeightF &nbsp; &nbsp; &nbsp; &nbsp;= &nbsp;0.15 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ; height of legend.</font></div><div><font face="Courier New" color="#0042aa">&nbsp; res@lgLabelFontHeightF &nbsp; &nbsp; = &nbsp;0.011 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;; change font height</font></div><div><font face="Courier New" color="#0042aa">&nbsp; res@lgPerimOn &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;= False &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ; no box around</font></div><div><font face="Courier New" color="#0042aa">&nbsp;</font></div><div><font face="Courier New" color="#0042aa">&nbsp; res@tmXTOn &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = False &nbsp; &nbsp;; bottom off</font></div><div><font face="Courier New" color="#0042aa">&nbsp; res@tmYROn &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = False &nbsp; &nbsp;; right off</font></div><div><font face="Courier New" color="#0042aa">&nbsp;&nbsp;</font></div><div><font face="Courier New" color="#0042aa">&nbsp; res@xyMonoDashPattern &nbsp; &nbsp; &nbsp;= True &nbsp; &nbsp; ; force all solid lines</font></div><div><font face="Courier New" color="#0042aa"><br></font></div><div><font face="Courier New" color="#0042aa">;-- assign plot array</font></div><div><font face="Courier New" color="#0042aa">&nbsp; plot &nbsp; &nbsp;= &nbsp;new(7,graphic)</font></div><div><font face="Courier New" color="#0042aa"><br></font></div><div><font face="Courier New" color="#0042aa">;-- define colors, labels, line thickness and legend position</font></div><div><font face="Courier New" color="#0042aa">&nbsp; colors &nbsp;= &nbsp;(/"blue","red","brown","purple","green","orange","black"/)</font></div><div><font face="Courier New" color="#0042aa">&nbsp; labels &nbsp;= &nbsp;(/" &nbsp;BCC-CSM1.1"," &nbsp;CanCM4"," &nbsp;CCSM4"," &nbsp;CFSv2-2011"," &nbsp;CMCC-CM"," &nbsp;FGOALS-G2.0"," &nbsp;CFSR"/)</font></div><div><font face="Courier New" color="#0042aa">&nbsp; lt &nbsp; &nbsp; &nbsp;= &nbsp;(/5.0,5.0,5.0,5.,5.,5.,9./) &nbsp;</font></div><div><font face="Courier New" color="#0042aa">&nbsp; lposx &nbsp; &nbsp;= &nbsp;(/.15, .37, .61, .81, .14, .39, .60/)</font></div><div><font face="Courier New" color="#0042aa">&nbsp; lposy &nbsp; &nbsp;= &nbsp;(/.10, .10, .10, .10, .15, .15, .15/)</font></div><div><font face="Courier New" color="#0042aa"><br></font></div><div><font face="Courier New" color="#0042aa">;-- create the plots</font></div><div><font face="Courier New" color="#0042aa">&nbsp; do i=0,6</font></div><div><font face="Courier New" color="#0042aa">&nbsp; &nbsp; &nbsp;res@xyLineColors &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = &nbsp;colors(i)</font></div><div><font face="Courier New" color="#0042aa">&nbsp; &nbsp; &nbsp;res@xyExplicitLegendLabels = &nbsp;labels(i)</font></div><div><font face="Courier New" color="#0042aa">&nbsp; &nbsp; &nbsp;res@xyLineThicknessF &nbsp; &nbsp; &nbsp; = &nbsp;lt(i)</font></div><div><font face="Courier New" color="#0042aa">&nbsp; &nbsp; &nbsp;res@pmLegendParallelPosF &nbsp; = &nbsp;lposx(i)</font></div><div><font face="Courier New" color="#0042aa">&nbsp; &nbsp; &nbsp;res@pmLegendOrthogonalPosF = &nbsp;lposy(i)</font></div><div><font face="Courier New" color="#0042aa">&nbsp; &nbsp; &nbsp;plot(i) = gsn_csm_xy(wks,x,zave1(i,:),res)</font></div><div><font face="Courier New" color="#0042aa">&nbsp; end do</font></div><div><font face="Courier New" color="#0042aa"><br></font></div><div><font face="Courier New" color="#0042aa">;-- overlay the plots</font></div><div><font face="Courier New" color="#0042aa">&nbsp; overlay(plot(0),plot(1))</font></div><div><font face="Courier New" color="#0042aa">&nbsp; overlay(plot(0),plot(2))</font></div><div><font face="Courier New" color="#0042aa">&nbsp; overlay(plot(0),plot(3))</font></div><div><font face="Courier New" color="#0042aa">&nbsp; overlay(plot(0),plot(4))</font></div><div><font face="Courier New" color="#0042aa">&nbsp; overlay(plot(0),plot(5))</font></div><div><font face="Courier New" color="#0042aa">&nbsp; overlay(plot(0),plot(6))</font></div><div><font face="Courier New" color="#0042aa"><br></font></div><div><font face="Courier New" color="#0042aa">;-- draw the plots</font></div><div><font face="Courier New" color="#0042aa">&nbsp; draw(plot(0))</font></div><div><font face="Courier New" color="#0042aa">&nbsp; frame(wks)</font></div></div><div><br></div><div><br></div><div><br></div><div>Bye,&nbsp;</div><div>Karin</div><div><br><div><div>Am 30.03.2015 um 19:33 schrieb Vanúcia Schumacher &lt;<a href="mailto:vanucia-schumacher@hotmail.com">vanucia-schumacher@hotmail.com</a>&gt;:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div class="hmmessage" style="font-size: 12pt; font-family: Calibri; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><div dir="ltr"><font face="Calibri,sans-serif"><span style="font-size: 16pt;">Sorry,&nbsp;</span><span style="font-size: 21px;">I forgot to include the script, below:</span></font><div><font face="Calibri,sans-serif"><span style="font-size: 21px;"><br></span></font></div><div><font face="Calibri,sans-serif"><div><span style="font-size: 21px;">&nbsp;zave1 = new ((/7,dimsizes(zave&amp;lat)/), float)</span></div><div><span style="font-size: 21px;">&nbsp; zave1(0,:) = zave(0,0,:)</span></div><div><span style="font-size: 21px;">&nbsp; zave1(1,:) = zave(1,0,:)</span></div><div><span style="font-size: 21px;">&nbsp; zave1(2,:) = zave(2,0,:)</span></div><div><span style="font-size: 21px;">&nbsp; zave1(3,:) = zave(3,0,:)</span></div><div><span style="font-size: 21px;">&nbsp; zave1(4,:) = zave(4,0,:)</span></div><div><span style="font-size: 21px;">&nbsp; zave1(5,:) = zave(5,0,:)</span></div><div><span style="font-size: 21px;">&nbsp; zave1(6,:) = zave(6,0,:)</span></div><div><span style="font-size: 21px;">&nbsp;</span></div><div><span style="font-size: 21px;">printVarSummary( zave1)&nbsp;</span></div><div><span style="font-size: 21px;">;************************************************</span></div><div><span style="font-size: 21px;">; plot</span></div><div><span style="font-size: 21px;">;************************************************</span></div><div><span style="font-size: 21px;">&nbsp; &nbsp;wks &nbsp;= gsn_open_wks("png","ts.zonal.labels1") &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span></div><div><span style="font-size: 21px;">&nbsp;</span></div><div><span style="font-size: 21px;">;---Plotting options for time series plot</span></div><div><span style="font-size: 21px;">&nbsp; res &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = True</span></div><div><span style="font-size: 21px;"><br></span></div><div><span style="font-size: 21px;">&nbsp; res@gsnMaximize = True</span></div><div><span style="font-size: 21px;">&nbsp; res@vpWidthF &nbsp; &nbsp; &nbsp;= 0.8 &nbsp; &nbsp; &nbsp; &nbsp;; Make plots wider</span></div><div><span style="font-size: 21px;">&nbsp; res@vpHeightF &nbsp; &nbsp; = 0.6</span></div><div><span style="font-size: 21px;">&nbsp; res@trYMinF &nbsp; &nbsp; = min(zave)</span></div><div><span style="font-size: 21px;">&nbsp; res@trYMaxF &nbsp; &nbsp; = max(zave)</span></div><div><br></div><div><span style="font-size: 21px;">;---Resources for legend</span></div><div><span style="font-size: 21px;"><br></span></div><div><span style="font-size: 21px;">&nbsp; res@pmLegendDisplayMode &nbsp; &nbsp;= "Always" &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;; turn on legend</span></div><div><span style="font-size: 21px;">&nbsp; res@pmLegendWidthF &nbsp; &nbsp; &nbsp; &nbsp; = 0.12 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ; Change width and</span></div><div><span style="font-size: 21px;">&nbsp; res@pmLegendHeightF &nbsp; &nbsp; &nbsp; &nbsp;= 0.15 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;; height of legend.</span></div><div><span style="font-size: 21px;">&nbsp; res@pmLegendOrthogonalPosF = -0.10 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;; move up slightly&nbsp;</span></div><div><span style="font-size: 21px;">&nbsp; res@lgLabelFontHeightF &nbsp; &nbsp; = .011 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;; change font height</span></div><div><span style="font-size: 21px;">&nbsp; res@lgPerimOn &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;= False &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ; no box around</span></div><div><span style="font-size: 21px;">&nbsp;</span></div><div><span style="font-size: 21px;">;---Turn off some tickmarks</span></div><div><span style="font-size: 21px;">&nbsp; res@tmXTOn &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = False &nbsp; &nbsp;; bottom off</span></div><div><span style="font-size: 21px;">&nbsp; res@tmYROn &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = False &nbsp; &nbsp;; right off</span></div><div><span style="font-size: 21px;"><br></span></div><div><span style="font-size: 21px;">&nbsp;&nbsp;</span></div><div><span style="font-size: 21px;">;---Create the four XY plots</span></div><div><span style="font-size: 21px;"><br></span></div><div><span style="font-size: 21px;">&nbsp; &nbsp;res@xyExplicitLegendLabels &nbsp;= (/"BCC-CSM1.1","CanCM4","CCSM4","CFSv2-2011","CMCC-CM","FGOALS-G2.0","CFSR"/)</span></div><div><span style="font-size: 21px;">&nbsp; &nbsp;res@pmLegendParallelPosF &nbsp; &nbsp;= 0.15</span></div><div><span style="font-size: 21px;">&nbsp; &nbsp;res@xyMonoDashPattern &nbsp; &nbsp; &nbsp; = True &nbsp; &nbsp; ; force all solid lines</span></div><div><span style="font-size: 21px;">&nbsp; &nbsp;res@xyLineColors &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;= (/"blue","red","brown","purple","green","orange","black"/)</span></div><div><span style="font-size: 21px;">&nbsp; &nbsp;res@xyLineThicknesses &nbsp; &nbsp; &nbsp; = (/5.0,5.0,5.0,5.,5.,5.,9./) &nbsp;</span></div><div><span style="font-size: 21px;">&nbsp; &nbsp; &nbsp;</span></div><div><span style="font-size: 21px;">&nbsp; &nbsp;plot1 = gsn_csm_xy(wks,zave&amp;lat,zave1,res)</span></div><div style="font-size: 21px;"><br></div></font><br><br><div><hr id="stopSpelling">Subject: Re: [ncl-talk] problems with legends side-by-side.<br>From:<span class="Apple-converted-space">&nbsp;</span><a href="mailto:meier-fleischer@dkrz.de">meier-fleischer@dkrz.de</a><br>Date: Mon, 30 Mar 2015 17:25:33 +0200<br>CC:<span class="Apple-converted-space">&nbsp;</span><a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>To:<span class="Apple-converted-space">&nbsp;</span><a href="mailto:vanucia-schumacher@hotmail.com">vanucia-schumacher@hotmail.com</a><br><br>Hi Vanucia,<div><br></div><div>without any further information it is not possible to help. As you mentioned the example xy_32.ncl does what you want.</div><div>Send your script and the error message.</div><div><br></div><div>Bye,</div><div>Karin</div><div><br><div><div>Am 30.03.2015 um 17:19 schrieb Vanúcia Schumacher &lt;<a href="mailto:vanucia-schumacher@hotmail.com">vanucia-schumacher@hotmail.com</a>&gt;:</div><br class="ecxApple-interchange-newline"><blockquote><div class="ecxhmmessage" style="font-size: 12pt; font-family: Calibri; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px;"><div dir="ltr"><div style="font-size: 21.3333339691162px;">Hi users,</div><div style="font-size: 21.3333339691162px;"><br></div><div><span style="font-size: 21.3333339691162px;">I would like to put subtitles side -by-side&nbsp;</span><font size="3"><span style="font-family: verdana, sans-serif; line-height: 16px; background-color: rgb(255, 231, 198);">,</span></font><span style="font-size: 21.3333339691162px;">&nbsp;3 on top</span></div><span style="font-size: 21.3333339691162px;"><div>and 4 below (attached )</div><div><br></div><div>Anyone know how can I do? already tried the example xy_32.ncl but failed.</div></span></div><span>&lt;ts.zonal.labels1.png&gt;</span>_______________________________________________<br>ncl-talk mailing list<br>List instructions, subscriber options, unsubscribe:<br><a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a></div></blockquote></div><br><div><div style="letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; word-wrap: break-word;"><div style="font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; word-wrap: break-word;"><div style="font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; word-wrap: break-word;"><div style="font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; word-wrap: break-word;"><div style="font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; word-wrap: break-word;"><span class="ecxApple-style-span" style="border-collapse: separate; font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; border-spacing: 0px;"><div style="word-wrap: break-word;"><span class="ecxApple-style-span" style="border-collapse: separate; font-family: Helvetica; font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; border-spacing: 0px;"><div style="word-wrap: break-word;"><span class="ecxApple-style-span" style="border-collapse: separate; font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; border-spacing: 0px;"><div style="word-wrap: break-word;"><br></div></span></div></span></div></span></div></div></div></div></div></div></div></div></div></div>_______________________________________________<br>ncl-talk mailing list<br>List instructions, subscriber options, unsubscribe:<br><a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a></div></blockquote></div><div apple-content-edited="true"><br class="Apple-interchange-newline">
</div>
<br></div></body></html>