Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
3answers
709 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 ...
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 ...
7
votes
5answers
414 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 ...
7
votes
2answers
2k 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 ...
5
votes
3answers
561 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 ...
4
votes
9answers
10k 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
2answers
177 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 ...
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
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
355 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 ...
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
113 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 ...
1
vote
0answers
21 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 ...
1
vote
1answer
421 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
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
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
0answers
14 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 ...
0
votes
1answer
103 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?
0
votes
3answers
170 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 ...
0
votes
0answers
34 views

Incremental and partial drawing of the large graphs

I have the following problem: I'm developing a software for data visualization where I get a graph structure and represent it in 3D space. So far, I've been using force-based algorithms to draw graphs ...
0
votes
1answer
42 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 ...
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 ...
0
votes
1answer
539 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 ...