tree.xml:
<tree> <tree text="1.1"/> <tree text="1.2"> <tree text="1.2.1"/> </tree></tree>
demo.html:
var tree = new WebFXLoadTree("root","tree.xml");document.write(tree);
it should show like this.
root├─1.1└─1.2 └─1.2.1
but now it show like this.root├─1.1├─1.2│ └─1.2.1
what is the problem?