Graphing Library for Java [closed] - java

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I am working on a program which gathers data and stores it in a file. I need to be able to write a program which reads from the created file and plots a scatter/bar/pie graph from it. Does anyone know any Graphing Libraries which I can use to do this? I've seen suggestions for libraries which can graph nodes, vertices etc. but none for common graphs. Help would be appreciated. Thanks

For charts you can use JFreeChart. It is an open sorce java library with a good API.
If you want to draw graphs (trees for example) you can use JGraphX which is also an open source library.

Related

Plotting 3d connections in Java or C++ [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm developing a visualization software and my current aim is to visualize some sort of networks in 3d. It doesn't really matter how the nodes and edges are represented, as long as one can see the network in 3d. I'm a newcomer in the field of 3d objects, so any libraries, tutorials or websites are welcome.
Thank you very much.
If you just want a way to display these, you may want to try an existing visualization program like ParaView. It is built on an extensive visualization library called VTK. Both are open source and cross platform. VTK can be programmed using Java, C++, and other languages.

Generating thumbnails (Preview [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am looking desperately for a Java library that would be able to generate thumbnails for a large number of file types. Like Office Suite documents, Open Office Documents, PDF, Images etc... The thumbnails has to be readable.
From my understanding .net has hooks to call windows for doing exactly this but the code has to be platform independent (hence java)
I have found some libraries for image thumbnail generation some for word document but nothing that seems very good.
I am looking a one does it all library for generating the thumbnails does it exist?

Java Opensource API to create flow charts [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Is there any Java opensource to create flow charts not within the IDE itself, but in a web based application so they can be viewed on a browser? This is like a Cost Control Flowchart, but basically a flow chart.
To avoid any confusion, the business requirement is to allow users to create flow charts and save them to databases. I am not looking to create UMLs of source code or vice versa.
This stackoverflow question points to the right directions but I need to be able to have users draw and then save the drawing/information to the database. Flowchart is the only UML required.
If it does not need to be "web-based" then yEd Graph Editor could be a good choice.
yEd is a free desktop application that can generate high-quality diagrams, either manually, or by importing external data.

Implementing graphs in java [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
What would you recommend to create a graph using Java language . Should it be self coded or which library set do you suggest for it to be implemented ?
If you're looking for graphs as in data plots or pie charts or something like that, check out charts4j or the Google chart API.
If you're meaning something like graph theory, check out JGraphT.
No need to reinvent the wheel.
Some other interesting options, and as already mentioned no need to reinvent the wheel :)
http://jung.sourceforge.net/
http://zvtm.sourceforge.net/zgrviewer.html
gFloat also has a nice GWT implementation and is free

Looking for a plug in for eclipse to draw state charts [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I am using Java in eclipse, It would be wonderful if I could find a plug in which can draw state chart from a XML format.
I don't know about plug-ins for Eclipse, but I'd recommend AT&T's graphviz as a terrific tool for easily rendering states and transitions. The input format is not XML; however, it'd be trivial to read an XML file, generate the required format, and render it using graphviz. Laszlo Szathmary has a nice Java class that lets you do it right inside a Java class - very nice.
Check out Eclipse's Graphical Editing Framework(GEF). It should have everything you need. http://www.eclipse.org/gef/overview.html

Categories

Resources