using the following code:
for subsm in subsl:
H9,ax2,subsm = perchg2(st, subsm)
ax2=H9.plot()
ax2.set_title('Percent change All Subdivisions (rolling 4q avg)')
# ax2.plot([],label=[subsm])
ax2.legend(bbox_to_anchor=(1.05, 1), loc=2, borderaxespad=0.)
# ax2.plot([1], label='test2')
print
Which generates: (I left my bad code in the comment lines)

How do I get the "subsm" The varible label in PER_CHG to display in the legend? instead of the PER_CHG (which is the field name???) Similarly I will want to Bold one of the specific lines?? (by name or index?)....
