Search code examples
javagraphstream

Increase Graphstream Edge width


Is there any way to increase a Graphstream's Edge width?

What I've tried:

edge.addAttribute("ui.style", "stroke-width: 30px; fill-color: red;");

Solution

  • I guess you are looking for the size property.

    edge.addAttribute("ui.style", "size: 5px; fill-color: red;");