Visualizing set hierarchies as color coded graphs

后端 未结 4 1039
情深已故
情深已故 2021-02-02 12:21

I have been reading quite a bit on graphing libraries for Java and Javascript lately but I haven\'t found a good way to do what I want to do.

Essentially I have a hiera

4条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-02 13:05

    There are many approaches to this problem but personally, I'd draw sort of a Venn chart using dynamically generated SVG with a tool like Raphael JS and color it the way I want. Also, Raphael has api like Set that can enable you to give full detailed information about the elements and their relations. There SVG to Code converter will also likely help out in understanding how you can generate the SVG elements.

    Alternatively you could, use tools like Venn charts:

    Venn chart sample

    which seems to be easily adaptable to this scenario. There's also Flotr2 which can create bubble charts:

    Bubble chart flotr

    or even Canvas Express.

    Canvas Xpress Diagrams

    A little more tweaking with any of the later tools will enable you to get it properly done...

提交回复
热议问题