Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

170
votes
23answers
62k views

Graph visualization code in javascript? [closed]

Hi. I have a data structure that represents a directed graph, and I want to render that dynamically on an HTML page. Does anyone know of any javascript code that can do a reasonable job with graph ...
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 ...
15
votes
4answers
4k views

Family tree layout with Dot/GraphViz

I am trying to draw a family tree with Dot and GraphViz. This is what I currently have: # just graph set-up digraph simpsons { ratio = "auto" mincross = 2.0 # draw some nodes "Abraham" ...
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
2answers
3k views

Improving graphviz layout

I have perfection paralysis when it comes to producing something graphic. If symmetries of the visual have not been fully explored, I have a harder time comprehending what is going on. I am a very ...
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
2answers
3k views

Graph layout optimization in C#

I've got a list of objects that I need to organize as an aesthetic graph. My current approach involves IronPython and a genetic algorithm, but this takes way too long. I've been reading up on ...
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 ...
6
votes
11answers
3k views

Visualize Friend of a Friend (foaf) graph

I wrote a script to export twitter friends as foaf rdf description. Now I'm looking for a tool to visualize the friend networks. I tried http://foafscape.berlios.de/ but for 300+ Nodes it is really ...
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 ...
4
votes
1answer
178 views

Techniques for visualising change over time in graphs

I'm looking to display a graph (network diagram, not a chart) and show its changes over time. Is there a standard or best way to do this, or any kind of 'network diff' tool? I'm looking for an ...
4
votes
1answer
101 views

What is an algorithm for minimizing some D distances between N items?

A classmate printed out a diagram of a database for class, the kind with lines representing relationships between tables. However, his lines crossed all over the place and it looked ugly. So I got to ...
4
votes
2answers
1k views

Open Source Graph Layout Library

I'm looking for an open source (GPL, LGPL etc) graph layout library for .net framework, preferably fully managed code. Im not worried about the visualisation aspect of things. I can find lots of them ...
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 ...
3
votes
3answers
749 views

Winforms / GDI+ Draw curve for a chart

In my Winforms application I have a small chart. Nothing fancy just a bunch of x/y points I connect with lines. It would be nice to draw a curve instead of a lines to connect these points. But since ...
2
votes
1answer
159 views

Block diagram layout with dot/graphviz

I'd like to implement the following mockup with dot: So far I've got this much: digraph G { graph [rankdir = LR, splines=ortho] unit [shape=box, width = 2, height = 10]; more_different_unit ...
2
votes
0answers
84 views

Grappa Graphviz dot-Visualization Problem and Questions

i am using this dot-Code for my Test: digraph G { edge [dir=none]; p1 [shape=circle,style=filled,label="",height="0.01",width="0.01"]; q1 ...
2
votes
1answer
382 views

Transfer layout from networkx to cytoscape

I want to use networkx to generate a layout for a graph. Is it possible to transfer this layout to cytoscape and draw it there? I tried to simply write a graph as import networkx as nx G = nx.Graph() ...
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 ...
2
votes
1answer
934 views

How to use Boost 1.41.0 graph layout algorithmes

Hi I have problem using boost graph layout algorithmes. boost verision 1_41_0 mingw g++ 4.4.0. So there are issues I have encountered Can you suggest me with them? The function ...
2
votes
7answers
2k views

What algorithms are good for interactive/realtime graph-drawing?

What algorithms are good for interactive/realtime graph-drawing for live data and direct-manipulation? Failing that - what libraries do you use to draw graphs? Suggestions; Prefuse ...
1
vote
1answer
85 views

Python simplepyged graphical representation of family trees

Does anyone know a way to use the python package simplepyged (for parsing gedcom files) for graphical representation of family trees? XY-Pic? Matlibplot? pictex? I appreciate any help! Thanks!
1
vote
0answers
106 views

Cytoscape equivalent of graphviz URL/href node attribute when exporting SVG?

In the past I've using graphviz's node "label", "URL" (or "href") and "tooltip" attributes to generate SVG graphics where the nodes have the text label, mouse-over displays the tooltip, and clicking ...
1
vote
1answer
133 views

Open Source library for on-the-fly animation of directed acyclic graphs

I'm interested in finding out about open source libraries for on-the-fly animation of directed acyclic graphs. There are many similar questions on rendering graphs, but I was unable to find one ...
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
1answer
697 views

GraphViz, fixed layout when clustering

I have dot (graphviz) file with given graph which consist several nodes and edges. I would like to create a copy of that graph and cluster cluster (group) few nodes together. However whenever I am ...
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 ...
1
vote
2answers
698 views

Java implementation of planarity testing/planar embedding

Is there a free Java implementation of any of the major planarity testing algorithms? Boyer-Myrvold, de Fraysseix-Rosenstiehl, heck, even Hopcroft-Tarjan. I've been reading the papers and they all ...
0
votes
1answer
82 views

Better layout of nodes for block diagrams in dot

After a previous question (Block diagram layout with dot/Graphviz) I have further questions. The following is compiled like so: dot -Gsplines=none test.gv | neato -n -Gsplines=ortho -Tpng ...
0
votes
1answer
144 views

Graphviz grid alignment

I'm trying to generate layout information for a graph where all of the elements must be laid out in a grid. I would like all coordinates to be integer multiples of the grid-box size. For example, if ...
0
votes
0answers
46 views

How to Compile Jung Source?

Recently I'd downloaded Jung API from their Website with all library that must be included. But when I'm trying to compile that,It fails. Can any boy help me,please? (I'm using Netbeans IDE) ...
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 ...
0
votes
1answer
137 views

Automatically rotate a graph

I'm drawing graphs with force-directed layout, and the problem is that the created graphs are oriented randomly and unpredictably, which makes looking at them somewhat confusing. For example, suppose ...