<div dir="ltr"><div><div><div>Dear NCL users<br><br></div>I have two datasets , one has PrintMinMax(min=0,max=47) and second has PrintMinMax(min=0,max=3400). When  i plot using common label bar, only values between 0 to 100 are displayed in contours. When i incerease contours upto 3500 I dont get small values. Below is part of my script for contouring and colour. <br><br></div>When now I plot seasonal anomiales only 1 colour is displayed.<br><br></div><b>This is what I want;  </b>anomalies to be plotted with different colors showing areas of low(-ve) and high(+ve) values.<br><div><div><div><div><br><br><br><br>;************************************************<br>; create colors<br>;*************************************************<br>  wks = gsn_open_wks(&quot;x11&quot;, &quot;seasons&quot;)          ; open  a work station<br>                                          <br>   <br> colors = (/ (/255,255,255/),(/255,255,255/), (/244,255,244/), \<br>  (/217,255,217/), (/163,255,163/), (/106,255,106/), \<br>  (/43,255,106/), (/0,224,0/), (/0,134,0/),(/255,255,0/),\<br>  (/255,127,0/) /) * 1.0 ; we multiply by 1 to make colors float<br>  <br> colors = colors/255.               ; normalize (required by NCL)<br><br> ;************************************************<br>; create panel plots<br>;*************************************************<br> plot   = new ( 6, graphic)                    ; create graphical array<br> <br>  res                      = True               ; plot options desired<br>    <br>  ;res@cnFillDrawOrder      = &quot;Predraw&quot;    <br>  res@cnFillOn             = True               ; turn on color fill<br>  res@cnInfoLabelOn        = False              ; turn off contour info label<br>  res@cnLinesOn            = False              ; turn off contour lines<br>  res@cnLineLabelsOn       = False              ; turn off line labels<br>  res@cnFillPalette        =colors<br>  res@cnLevelSelectionMode = &quot;ExplicitLevels&quot;   ; set explicit contour levels<br>  res@cnLevels        =(/0.1,0.2,0.4,0.8,1.6,3.2,6.4,12.8,25,30,40,45,60,75,83,100/)<br><br><br><br><br><br></div><div>thanks<br></div><div>  <br></div></div></div></div></div>