Tagged Questions
25
votes
15answers
6k views
Visualizing Undirected Graph That's Too Large for GraphViz?
I was wondering if anyone has any advice for rendering an undirected graph with 178,000 nodes and 500,000 edges. I've tried Neato, Tulip, and Cytoscape. Neato doesn't even come remotely close, and ...
23
votes
13answers
3k views
What options are available for the layout of directed or undirected graphs in .NET?
By graph here I mean something resembling these images:
The ideal solution would:
use only managed code
allow output to a bitmap image
allow output to WPF elements
include some kind of ...
12
votes
4answers
8k views
Looking for a graph layout framework for iOS
For an iOS application I'm making I need to show groups of elements grouped together according to their type, and different groups of types separated from each other in a nicely done layout.
I ...
11
votes
7answers
2k views
Visualization Tools for Huge Graphs
I would like to create a graph (set of vertices connected with edges) and I'm looking for tools or libraries that can help me.
The graph is composed of at least 1000 nodes. Although it may be a ...
7
votes
14answers
5k views
Optimized graph drawing for the web
Having seen some suggestions for graphs, I wonder what's the optimum for my problem.
I want to render a directed graph to a servlet/picture that is displayed in the browser. There should be some ...
6
votes
2answers
916 views
Planar Graph Layouts
What are some edge overlap minimization techniques when laying out a graph? (Preferably related to GraphViz) Also are there any existing software that can layout a graph in a planar fashion?
Current ...
4
votes
2answers
452 views
Large scale graph visualization (50K nodes, 100M weighted edges)
I've looked at a number of packages for graph layout (Graphviz, Gephi, Cytoscape, NetworkX to name a few of the more prevalent) and none of them seem to scale to this sort of size. What techniques ...
3
votes
4answers
928 views
Best Planar graph program [closed]
In graph theory, a planar graph is a graph that can be embedded in the plane, i.e., it can be drawn on the plane in such a way that its edges intersect only at their endpoints.
What is the best open ...
3
votes
1answer
2k views
Controlling Layout of Graphviz Graphs
I have a number of relatively simple (auto-generated) graphs in graphviz dot format. These show the path through a state machine, but dot has a slightly confusing habit of deciding that two nodes ...
2
votes
1answer
308 views
Strange edge placement in Graphviz Dot
I have a module that automatically outputs (in dot format) functions written in some kind of assembly language (the IR of my compiler). The nodes are the basic blocks printed using the 'record' shape. ...
2
votes
0answers
427 views
Extending Sugiyama's Layout Algorithm for block with more than one input
I'm messing around with using Sugiyama's directed graph layout algorithm to generate nice plots of verilog circuits. The problem I'm having is that the layout algorithm assumes that each block (or ...
1
vote
0answers
70 views
.NET implementation of planarity testing
Is there any .NET implementation of any planarity testing algorithm like Boyer-Myrvold's or anyone else? I looked through the web but I didn't manage to find
1
vote
1answer
247 views
How can I get node coordinates from a graph, using Perl?
Ok, I have a flowchart definition (basically, array of nodes and edges for each node).
Now I want to calculate coordinates for every task in the flow,
preferably hierarchycal style.
I need something ...
1
vote
3answers
851 views
Drawing a dynamic graph
I have a web application written with JavaServer Faces technology.
The application takes n inputs and provides an output.
I want the following functionality in my application.
I want to have ...
0
votes
1answer
122 views
large graph data visualization with JDBC/ODBC
I have looked at Gephi and tried to play around with it, however it only supports MySQL, SQLServer, and postgreSQL. My database connectivity is JDBC/ODBC. What other graph visualization software would ...