Graph drawing is the process of embedding a graph (network) within a space of some kind, most typically a plane.

learn more… | top users | synonyms

2
votes
0answers
20 views

Drawing clustered graphs in Python

I already have a way of clustering my graph, so the process of clustering isn't the issue here. What I want to do is, once we have all the nodes clustered - to draw the clustered graph in Python, ...
0
votes
1answer
37 views

Software for drawing flow networks

I need to draw some flow networks like the following: Does anyone know a program that can do that?
0
votes
2answers
43 views

Issue with graphviz never completing

Can someone help me figure out why the following graph never generates in dot? I think the problem has something to do with the headport and tailport. It works if I take those out, but ideally I want ...
0
votes
1answer
193 views

Graph nodes coordinates evaluation

Which of these (Graph drawing C++ library?) libraries can be used to evaluate nodes coordinates? I mean I want to draw and manipulate graph by clicking on it to add some nodes or delete, and then ...
2
votes
1answer
176 views

Non-convex polygon - preprocess to use convex hull algorithm

I used the convexHull algorithm to find the contour for some... irregular shape. It is not good enough though... Quite possibly because I can't guarantee that the shape I have is convex... I have a ...
2
votes
1answer
124 views

Force-directed graph drawing: Edit the force between specific nodes (R)

I want to analyse a social network using the R packages statnet and/or igraph in reference to force-directed graph drawing (kamada.kawai/fruchterman.reingold). I wounder, if it is possible to adjust ...
0
votes
0answers
131 views

Drawing large graphs in C#

I have a huge graph (500-2000 vertices and branches) as input, and I need to draw it somehow in WinForms. I don't want to use Tools like Graphviz or GLEE for that. It is very dificult for me to draw ...
2
votes
0answers
178 views

How to increase node spacing for networkx.spring_layout

Drawing a clique graph with import networkx as nx .... nx.draw(G, layout=nx.spring_layout(G)) produces the following picture: Obviously, the spacing between the nodes (e.g., the edge length) ...
2
votes
1answer
88 views

Is it possible to move subgraphs further apart in graphviz

I'm drawing a bipartite graph in graphviz and I want it to have two columns of nodes connected by straight lines (to match a style used elsewhere). I can mostly get what I want (see image) but the ...
3
votes
2answers
287 views

Best Graph Drawing Algorithm For Hierarchical Data?

I have a collection of directed acyclic graphs that are nearly trees, in the following sense: each graph has a root, and the vertices are organized into levels such that if v1 and v2 are vertices, ...
0
votes
0answers
136 views

Graph Dracula library with Raphael

I'm trying to draw a graph using Dracula but for some reason my edges don't display unless I drag my node. Any reason that this may be happening?
1
vote
1answer
172 views

Longest Path Algorithm for Layer Assignment

I'm working on a program to generate an organizational chart of a company. I have been reading about the longest path algorithm to layer the vertices, and one thing has been bugging me. The reading ...
0
votes
1answer
212 views

Is there a javascript graph drawing library that does balloon tree layouts?

Wikipedia's entry says balloon tree layouts are one of the common types, but I can't find any javascript drawing library that seems to support it out of the box. Am I missing one? A cheap or open ...
0
votes
1answer
383 views

Force Directed graph visualization: Is it possible to ensure certain nodes are closer to each other than others?

I'm working on this project where I'm analysing the "closeness" of a person with his Twitter friends and followers. The closeness is measured on the basis of how many times the subject mentions others ...
1
vote
1answer
199 views

GraphDracula: How to detect onclick and onmouseover events?

GraphDracula is a nice simple small graph visualization library based on RaphaelJS. However two very important things I would want it to detect are onmouseover (over a node) and onclick (over a node ...
0
votes
0answers
108 views

Gannt charts library [closed]

I am looking for a library to draw Gantt charts. The answer to this question should be a recommendation as to which library to pick: (i.e. use libraryX for Java at URL http://..., it allows creation ...
5
votes
6answers
666 views

Positioning of classes in UML diagram

I'm creating a tool for displaying Python project as an UML diagram (+ displaying some code error detection using GUI) I scan some project using Pyreverse and I have all data I need for drawing UML ...
1
vote
2answers
40 views

Is This Graph Embedding Possible & Does It Have A Name?

I want to project an undirected graph into the 2d plane such that: the euclidean distance preserves the stepwise distance (i.e. if the shortest path between A and B is shorter than the shortest path ...
0
votes
2answers
394 views

Graph drawing algorithm

I have an undirected graph on matris by vertex adjacency relations like that; /* a b c d * a -1 0 1 1 * b 0 -1 1 1 * c 1 1 -1 1 * d 1 1 1 -1 * */ ...
1
vote
1answer
128 views

Electrically charging edges in a force-based graph drawing algorithm?

I'm attempting to write a short mini-program in Python that plays around with force-based algorithms for graph drawing. I'm trying to minimize the number of times lines intersect. Wikipedia suggests ...
0
votes
1answer
69 views

Live graphing multiple channels of data, platform / framework selection

What framework / library / platform would you suggest for creating a Linux, preferably multiplatform, application displaying eight oscilloscope like graphs, updating in realtime? I'm imagining a view ...
1
vote
1answer
369 views

How to render indent trees with QuickGraph in C#?

Is it possible to create and render simple indent trees in C# using QuickGraph library?
2
votes
1answer
313 views

Which is the best way to plot graph in iphone?

I saw some Core-plot sample. Is there anything equivalent that will do my task easily? I also want to know feasibility with Core-plot in iPhone. (any issues with core-plot) I want to have ...
0
votes
2answers
2k views

Graph drawing libraries using Raphael

I'm looking for javascript libraries that draw graphs using the Raphael library. Until now I've found these ones: Graph Dracula http://www.graphdracula.net/ Joint http://www.jointjs.com/ Is ...
1
vote
1answer
145 views

Drawing Charts in .NET

I have some input data (string-double) (server application). I need to draw a chart and save it as a picture. What tools can I use? PS. I have some server side code that should generate this chart ...
6
votes
4answers
2k views

circuit/block-diagram drawing

I'm looking for either algorithms or visualization tool for (nice) circuit/block-diagram drawing. I am also interested in a general formulation of the problem. By "circuit drawing", I mean the ...
10
votes
5answers
2k views

Free C++ library for drawing flow diagrams or Directed graph?

I want to embed a flow diagram drawing canvas in my program. Users would possible to: draw "nodes" (rectangle nodes is enough) and "edges" (preferable to be orthogonal) to connect "nodes"; use mouse ...
1
vote
0answers
26 views

JGraph5 Strange Behaviour

I'm using JGraph5 to get a simple graph going and it seems that it's not working... the edges connecting my two vertices are not drawing correctly (I move a vertex and the edge does not follow and ...
13
votes
3answers
1k views

tips for creating Graph diagrams

I'd like to programmatically create diagrams like this I imagine I should use GraphPlot with VertexCoordinateRules, VertexRenderingFunction and EdgeRenderingFunction for the graphs. What should I ...
2
votes
1answer
739 views

Graph-Drawing / TSP-Route-Drawing in C++ with “known” coordinates: How? Which Library/Tool?

i'm developing some kind of heuristics for a variation of the vehicle-routing-problem in C++. After generating a solution, i want to plot this solution. The solution is a composite of various tours, ...
1
vote
2answers
206 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 ...
1
vote
0answers
106 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
10
votes
2answers
4k views

Drawing Directed Acyclic Graphs: Minimizing edge crossing?

Laying out the verticies in a DAG in a tree form (i.e. verticies with no in-edges on top, verticies dependent only on those on the next level, etc.) is rather simple without graph drawing algorithms ...
3
votes
1answer
630 views

Graphviz or Dynagraph for Graph-manipulation Program?

I'm looking into writing a program that will show a graph to the user. The graph will change over time (the user should be able to right-click on a graph item and ask for more detail, which will pop ...
14
votes
3answers
7k 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 ...
3
votes
2answers
261 views

Python: Simulate search algorithms in network models

I am using networkx package to draw power law graphs. I want to simulate a search algorithm on this graph and want to visually see the algorithm move from one node to another on the graph. How do I do ...
5
votes
4answers
2k 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 ...
1
vote
3answers
1k 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
710 views

NSBezierPath / Line Intersection / flatten

I'm currently porting my jruby/java2d Graph Drawing/Layouting application to macruby/cocoa. Therefore I need to get the intersection point of an open NSBezierPath with an closed NSBezierPath. In ...
4
votes
2answers
976 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
3answers
1k 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 ...
6
votes
9answers
23k views

How to draw a graph in PHP?

Hey I want to draw a graph(Stdent mark distribution) in my site based on PHP. How can I do this?
3
votes
7answers
3k 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 ...