Draw binary tree with php

I am looking for a good library / API for drawing a binary tree using PHP. I tried using Image_GraphViz, but it does not work. I also looked at phpsyntaxtree, but it has not been documented.

Alternatively, I am also looking for a jQuery plugin that does this. (just this one because it has no documentation).

thanks

+4
source share
2 answers

My suggestion is to go with js, because vector graphics are better, and you can add interactivity at any time.

Try raphael, a good (and well-documented) js graph library

homepage | tree demonstration

+2
source

I still believe GraphViz is what you need. If you have a problem using it, just ask a question about the problem. This will be better than finding an alternative tool.

+2
source

Source: https://habr.com/ru/post/1302225/


All Articles