Questions tagged [graphstream]

GraphStream is a Java library for the modeling and analysis of dynamic graphs. You can generate, import, export, measure, layout and visualize them.

The goal of the library is to provide a way to represent graphs and work on it. To this end, GraphStream proposes several graph classes that allow to model directed and undirected graphs, 1-graphs or p-graphs (a.k.a. multigraphs, that are graphs that can have several edges between two nodes).

GraphStream allows to store any kind of data attribute on the graph elements: numbers, strings, or any object.

Moreover, in addition, GraphStream provides a way to handle the graph evolution in time. This means handling the way nodes and edges are added and removed, and the way data attributes may appear, disappear and evolve.

Additional links:

113 questions
0
votes
1 answer

GraphStream Edit node attributes and display them in GUI

I al using GraphStream to import a file after parsing it and creating nodes with attributes. What I want after I create the nodes is to edit theirs attribute in the GUI. Like I have in the right side the Graph and in the left side to appear the…
Amrida D
  • 329
  • 1
  • 5
  • 17
0
votes
1 answer

setAttribute in GraphStream

I have a project in GraphStream in which I need to alter a graph's nodes coordinates. These coordinates are stored in a variable called "xy" The functions that do this job are supposed to be either setAttribute() or addAttribute(), but when I use…
user1885868
  • 1,063
  • 3
  • 17
  • 31
0
votes
2 answers

GraphStream have an image as a background

I am working in my Java project and I am using GraphStream library to visually represent graphs. My question is how to put an image behind a graph? I want an image as a background to my graph.
user132226
  • 11
  • 1
  • 1
0
votes
1 answer

auto-layout in GraphStream, node position

I am using GraphStream, to generate some graphs. I have following questions: When I use auto-layout in the library, is it possible for me to obtain the position information of each node? Can I change the type of edge? e.g. the default edge type is…
Bing
  • 25
  • 5
0
votes
1 answer

GraphStream Thread synchronization

I'am trying to create a tool for demonstrating graphs and algorithms. For that purpose I've found GraphStream library. I have read all of its documentation and tutorials but I cant make this one thing work. I am trying to put graph into my custom…
user2740217
  • 155
  • 1
  • 1
  • 8
-1
votes
1 answer

I am not able to load a graph via JFileChooser and actually display it

So, I have a class that inherits from JFrame with two JSplitPanes and a menu bar. One JSplitPane has a JSplitPane on top and a textarea on the bottom and the other one two JPanels left and right. I want to parse a pnml-file (or more, but I'm just…
clatadia
  • 53
  • 7
-1
votes
1 answer

java.lang.RuntimeException: Cannot launch viewer. API GraphStream-Android

Hello i'm new in android developing and am doing a work for university, to create a app that can create graphs (of graph theory) and execute algorithms, I chose to use graphstream, because it is a graph library but i'm having some issues, I can't…
-2
votes
1 answer

My load file method doesn't read a whole text file

Right now I'm doing a graph using the library of GraphStream. I know the basics and all, but now I want to do a graph from a .txt. This is my…
RMorazan
  • 3
  • 2
1 2 3 4 5 6 7
8