<div dir="ltr">Hi All,<div>I am doing a multi-line plot with 5 different sets of data. All my data has annual mean values.</div><div>4 sets of data extends for the period 850-2005, where as the 1 sets of data extends for the period 862-2005. </div><div>In the line plot, the first 4 sets of data should start at year 850, where the 5th line should start at year 862. I am doing following things but all line starts from year 850.</div><div>Could you please suggest how to start first 4 lines from 850 and the 5th line from year 862.</div><div><br></div><div>  temp1           =  f1->tos(:,0,0)<br>  printVarSummary (temp1)<br>  temp2           =  f2->tos(:,0,0)<br>  temp3           =  f3->tos(:,0,0)<br>  temp4           =  f4->tos(:,0,0)<br>  temp5           =  f5->tos(:,0,0)<br></div><div><br></div><div>  time = ispan(850,2005,1)<br>  time@long_name = "Time"<br></div><div><br></div><div>  data            = new((/5,1156/),float)<br></div><div>  data(0,0:1155)  = temp1<br>  data(1,0:1155)  = temp2<br>  data(2,0:1155)  = temp3<br>  data(3,0:1155)  = temp4<br>  data(4,0:1138)  = temp5<br></div><div><br></div><div>wks =  gsn_open_wks("X11", "Multiline_NCL")<br></div><div><br></div><div>res = True<br>  res@xyXStyle               = "Time"<br></div><div><br></div><div>;-- create plot<br>  plot = gsn_csm_xy(wks,time,data,res)<br></div><div><br></div><div>Thank you.</div></div>