When you plot a boxfill and use the color_1 and color_2 attributes (but leave level_1 and level_2 alone), the legend doubles up for the last level color. Also, the labeling on the legend is excessive (we probably don't need 10+ labels when there are only 4 levels).
import vcs, cdms2
f = cdms2.open(vcs.sample_data + "/clt.nc")
s = f("clt")
x = vcs.init()
box = vcs.createboxfill()
# Set them to the obnoxious end of the colormap so we can see the steps between each color
box.color_1 = 242
box.color_2 = 246
x.plot(s, box)
results in:

I've got a PR incoming to fix this.
When you plot a boxfill and use the
color_1andcolor_2attributes (but leavelevel_1andlevel_2alone), the legend doubles up for the last level color. Also, the labeling on the legend is excessive (we probably don't need 10+ labels when there are only 4 levels).results in:
I've got a PR incoming to fix this.