Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2515
Is there a way to have the Node text wrap in an igTree
posted

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.

Parents
  • 21795
    Offline posted

    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.

Reply Children
No Data