vote up 1 vote down star

Dendrogram is not a regular diagram. Should I use any component from javax.swing.* library, or just draw it with java.awt.Graphics?

flag

50% accept rate

5 Answers

vote up 0 vote down

hi how to draw dendogram in asp.net???? any specific tool??

link|flag
vote up 0 vote down

Netbeans Graphing API

By far the easiest and most intuitive API of the lot.

link|flag
vote up 0 vote down

I don't think there is a standard component for this. Unless some component vendor has done one, you should go the Java 2D way...

If you don't want to do the hard work, perhaps one of the above mentioned libraries might help you. Otherwise, GraphViz is good at making this kind of diagram, and has a Java API (untested...).

Another possible way is to use some physics to let the nodes arrange themselves in an harmonious way. That's how Aharef's HTML graph works...

link|flag
vote up 2 vote down

Might also be worth checking: yWorks and JGraph

link|flag
vote up 0 vote down

Probably a JTree would be the nearest Java GUI component. You could extend JTree if your users need to interact with the diagram (open and close nodes), or just display a graphic if they don't.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.