Though not an ideal solution, css positioning could be used to make labels appear on top of items:
First add style:'padding-top:25px;position:relative;' to the toolbar.
then use position:absolute for the labels.
toolbar: {
style:'padding-top:25px;position:relative;',
items: [
{
type:'<span style="position:absolute;top:0;left:0;">Label</span>'
},
......