OrgChart icon indicating copy to clipboard operation
OrgChart copied to clipboard

Text length on the nodes?

Open cyberfly opened this issue 7 years ago • 2 comments

Hi I notice the text can only show several characters. How do we cater for longer text? Can we add tooltips for the nodes?

Thanks

cyberfly avatar Sep 22 '17 13:09 cyberfly

This will make the text break line when it is reaching the end of the box :

    .orgchart .node .content {
        text-align:center;
        height:auto;
        word-wrap: break-word;
        word-break: normal;
        white-space: normal;
        display: block;
    }

CharlesV7international avatar Sep 25 '17 14:09 CharlesV7international

This lead to overlapping nodes

wonderiuy avatar Nov 23 '22 15:11 wonderiuy