<div dir="ltr">To Whom it May Concern-<div><br></div><div>I have a bar chart where I'm trying to compare monthly averages for 2 different data sets (5 months). I have set the resources for label bar to the right location and have the right font size, but I'm not sure why my data seems to be overlapping on top of itself. I have an offset set up where one plot is set to be at .675 of each plot point and the other is set at .925, which is more than the thickness of the bars.</div><div><br></div><div>I have attached the plot and code, and will list the resource section of my code below Thanks in advance for any help you can provide.</div><div>    wks2 = gsn_open_wks("pdf", "Trial_Lake_Monthly_Avgs")<br>    sres = True<br>    sres@gsnDraw = True<br>    sres@gsnFrame = False<br>    sres@gsnXYBarChart = True<br>    sres@gsnXYBarChartBarWidth = 0.15<br>    sres@tmXBMode          = "Explicit"<br>    sres@tmXBLabelFontHeightF = 0.0205<br>    sres@tmXTLabelFontHeightF = 0.0205<br>    sres@tmYLLabelFontHeightF = 0.0225<br>    sres@tiMainFontHeightF = 0.025<br>    sres@tiMainFont = "helvetica"<br>    sres@tiMainString = "Trial Lake 40.68 N 110.95W elev 9945 ft"<br>    sres@tmXBValues = (/11,12,1,2,3/)<br>    sres@tmXBLabels = (/"Nov","Dec","Jan","Feb","Mar"/)<br>    sres@gsnXYBarChartColors = (/"red"/)<br>    plot2 = gsn_csm_xy(wks2,fspan(.675,4.675,5),WRF_avgs,sres)<br>    sres@gsnXYBarChartColors = (/"blue"/)<br>    plot3 = gsn_csm_xy(wks2,fspan(.925,4.925,5),SN_avgs,sres)<br><br>    lbres                    = True          ; labelbar only resources<br>    lbres@vpWidthF           = 0.1           ; labelbar width<br>    lbres@vpHeightF          = 0.1           ; labelbar height<br>    lbres@lbBoxMajorExtentF  = 0.36          ; puts space between color boxes<br>    lbres@lbFillColors       = (/"red","blue"/)<br>    lbres@lbMonoFillPattern  = True          ; Solid fill pattern<br>    lbres@lbLabelFontHeightF = 0.015         ; font height. default is small<br>    lbres@lbLabelJust        = "CenterLeft"  ; left justify labels<br>    lbres@lbPerimOn          = False<br>    lbres@lgPerimColor   = "white"</div><div>    labels = (/"WRF","SNOTEL"/)<br>    gsn_labelbar_ndc(wks2,2,labels,0.52,0.1,lbres)<br><br>Respectfully,</div><div><br><div><div><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr">-Zach Rieck<div><a href="mailto:zrr817@gmail.com" target="_blank">zrr817@gmail.com</a></div><div>(513)-502-5652</div></div></div></div></div></div></div>