OrgChart
OrgChart copied to clipboard
Text length on the nodes?
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
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;
}
This lead to overlapping nodes