<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none;"><!-- P {margin-top:0;margin-bottom:0;} --></style>
</head>
<body dir="ltr">
<div id="divtagdefaultwrapper" style="font-size:12pt;color:#000000;background-color:#FFFFFF;font-family:Calibri,Arial,Helvetica,sans-serif;">
<p>Hello all,</p>
<p><br>
</p>
<p>Few weeks back I posted to ncl-talk that I wasn't able to get&nbsp;<font size="3">right side</font><font size="3"> Yaxis&nbsp;labels&nbsp;</font><font size="3">in some of the&nbsp;</font><font size="3">plots that I am trying to do.&nbsp;</font></p>
<p><span style="font-size: medium;"><br>
</span></p>
<p><span style="font-size: medium;">So I tested right&nbsp;</span><span style="font-size: 12pt;">Yaxis labels function (</span><span style="font-size: 12pt;">tmYRLabels)</span><span style="font-size: 12pt;">&nbsp;</span><font size="3">with a simple sample script. &nbsp;I
 am attaching my sample script, figure and log file here</font><font size="3">.</font></p>
<p><br>
</p>
<p>When I printed the&nbsp;YRLabels variable summary it&nbsp;shows the explicit&nbsp;labels that I provided&nbsp;(look at the&nbsp;log file) but for some reason they are not plotted in the figure. Can someone please&nbsp;let me know if I am missing anything in my sample script.&nbsp;Appreciate
 any kind of help.&nbsp;</p>
<p><br>
</p>
<p>I am&nbsp;also pasting my code below for a quick glance.</p>
<p><br>
</p>
<p>Thanks,</p>
<p>Pradeepa.&nbsp;</p>
<p><br>
</p>
<p><b><u>Code:</u></b></p>
<p><br>
</p>
<p>load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl&quot;</p>
<p>load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl&quot;</p>
<p><br>
</p>
<p>begin</p>
<p><br>
</p>
<p>&nbsp;wks = gsn_open_wks(&quot;pdf&quot;,&quot;test9yRlabel&quot;)</p>
<p>&nbsp;gsn_define_colormap(wks,&quot;gui_default&quot;) &nbsp; &nbsp; &nbsp; &nbsp;; choose colormap</p>
<p>&nbsp;plot1 = new(1, graphic)</p>
<p><br>
</p>
<p>&nbsp;YL = (/280,300,320,340,360,380,400,420,440/)</p>
<p>&nbsp;X = (/10,15,20,25,30,35,40,45,50/)</p>
<p><br>
</p>
<p>&nbsp;res = True&nbsp;</p>
<p>&nbsp;res@tmYROn &nbsp; &nbsp; = True &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;; turn on the YR tickmarks</p>
<p>&nbsp;res@tmYRLabelsOn = True &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;; turn the YR labels on</p>
<p>&nbsp;res@tmYUseLeft = False</p>
<p>&nbsp;res@tmYRMode = &quot;Explicit&quot; &nbsp;; explicitly set Y-axis labels</p>
<p>&nbsp;res@tmYRValues = (/640.00,2200.00,4200.00,6700.00,8000.00,12500.00,14100.00/)</p>
<p>&nbsp;res@tmYRLabels = (/&quot;640&quot;,&quot;2200&quot;, &quot;4200&quot;, &quot;6700&quot;, &quot;8000&quot;, &quot;12500&quot;, &quot;14100&quot;/)&nbsp;</p>
<p><br>
</p>
<p>&nbsp;plot1 = gsn_csm_xy(wks,X,YL,res)</p>
<p><br>
</p>
<p>&nbsp; getvalues plot1 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ; retrieve some of the plot resources</p>
<p>&nbsp; &nbsp; &nbsp;&quot;tmYLLabels&quot; &nbsp;: tmYLLabels &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;; values used by NCL at major tick marks</p>
<p>&nbsp; end getvalues</p>
<p>&nbsp; &nbsp;getvalues plot1 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ; retrieve some of the plot resources</p>
<p>&nbsp; &nbsp; &nbsp;&quot;tmYRLabels&quot; &nbsp;: tmYRLabels &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;; values used by NCL at major tick marks</p>
<p>&nbsp; end getvalues&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;printVarSummary(tmYLLabels)</p>
<p>&nbsp;print(tmYLLabels)</p>
<p>&nbsp;printVarSummary(tmYRLabels)</p>
<p>&nbsp;print(tmYRLabels)</p>
<p><br>
</p>
<p>frame(wks)</p>
<p>delete(res)</p>
<p><br>
</p>
<p>end</p>
</div>
</body>
</html>