Rather than having a horizontal scrollbar in an igTree where the text is long, I would like for the text to wrap. Is there a way to do this? Thank you. Using IgniteUI 2019.1.
By default igTree's white-space is set to nowrap. This forces tree nodes to show the text in one line. To overcome this you may set white-space to initial for the tree like this:
.ui-igtree { white-space: initial; }
Please let me know if this solves your issue, or if you need any further assistance on this matter.
It didn't fix my problem, but the following did. Had to include the anchor tag. But what you did put me in the right direction. Thanks.
.ui-igtree a { white-space: initial; }