dhtmlxTabbar - tabs be "taller"?

dhtmlxTabbar - can tabs be taller? Look like only 1 row of text in the tab text/title can be supported, our of box. Ideally, I’d like the tabs to grow taller dynamically, based on the text in the tab. But, if there’s a way to hard-code to get 2 rows of text, that would be better than nothing.

There is no way to change height of tabs dynamically, but you can define initial heigh through parameters of constructor

var tabbar = new dhtmlXTabBar(some,“top”,35); //<=height of row

Also you will need to add next style to the page, to allow text wrapping inside tabs
.dhx_tab_element{
whitespace:normal !important;
}