Label auto-height

When dynamically setting the value for my label, it’s not auto-expanding. By this I mean that if the label content has 1 line of text or 30 lines of text, the label field does not change height and it cuts off the text.

I’ve tried setting autoheight and adjust and neither work.

Hi, try using view template instead. It can be autosized to content.

{
  view:"template", //optional line
  template:"Some Long text",
  autoheight:true
}

Sample: http://docs.webix.com/samples/04_template/02_autoheight.html

Docs: http://docs.webix.com/desktop__template.html

Thank you, that’s exactly what I needed.