Well, I'm not aware of any special way, but again, I'm no guru.
Given these lists : left, height you could simply do something like :
>>> bar(left, height, width)
>>> for l,h in zip(left,height):
>>> text(l+width/2., h + dh, str(h), horizontalalignment =3D 'center')
where dh is the distance wanted between the top of the bar and the text.
David
2006/3/13, Francis Penney <fp...@gm...>:
> Just a simple bar chart question. How do I display the values above each
> bar?
>
|