<div dir="ltr">Hi All,<br><div>I have generated the attached spectrum analysis with three series of data. I have used overlay to plot three lines for this figure. In this, the X-axis ranges from 0 to 100. However, I don't want to show one of the spectrum line (e.g. Var3) beyond year 40. The first two series should show the spectrum with the X-axis 0 to 100 year but third spectrum line should plot up to year 40 (not beyond that).</div><div><br></div><div>I have tried by limiting the X-axis as shown below but doesn't work.</div><div><br></div><div> res = True                                      ; no plot mods desired</div>   res@gsnDraw                =  False<br>   res@gsnFrame               =  False<br>   res@trYMinF              = 0                 ; manually set lower limit Y axis<br>   res@trYMaxF              = 15             ; manually set upper limit Y axis<br>   res@trXMinF              = 0                 ; manually set lower limit X axis<br>   res@trXMaxF              = 100             ; manually set upper <div><br><div>  res@xyLineColors        = (/"green4"/) ; Line colours (white-to invisible the markov line)<br>   plot(0) = gsn_csm_xy(wks, p1, spec1@spcx, res)<br>   delete(res@gsnCenterString)    ; no center string for the following plot<br>   delete(res@gsnLeftString)    ; no center string for the following plot<br>   res@xyLineColors        = (/"red"/) ; Line colours (white-to invisible the markov line)<br>   plot2 = gsn_csm_xy(wks, p2, spec2@spcx, res)</div><div><br>   delete(res@trXMinF)<br>   delete(res@trXMaxF)<br>   res@trXMinF              = 0                 ; manually set lower limit X axis<br>   res@trXMaxF              = 40             ; manually set upper limit X axis<br>   res@xyLineColors        = (/"blue"/) ; Line colours (white-to invisible the markov line)<br>   plot3 = gsn_csm_xy(wks, p3, spec3@spcx, res)<br><br>   overlay(plot(0),plot2)<br>   overlay(plot(0),plot3)<br><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div>Thank you.</div></div></div>