Answered
Multi-line cells getting cut off in Vizlib table
Is there an option that I'm missing to allow the Vizlib table to support multi-line text? Row height is set to auto.
Is there an option that I'm missing to allow the Vizlib table to support multi-line text? Row height is set to auto.
As far as I know from my own experience, there's not a ton you can do about this. Row height isn't handled perfectly in these cases, which might be a support ticket to open with Vizlib. If your data actually includes line breaks (rather than just a long string of text), you can trick the object by replacing the line breaks - typically chr(10) or chr(13) - with <br> and treating the text as HTML, which does allow Vizlib to break it into lines and extend the row height automatically in most cases.