是否有任何方法可以增加GraphStream的边缘宽度?
我尝试了什么:
edge.addAttribute("ui.style", "stroke-width: 30px; fill-color: red;");
我想您正在寻找size
属性。
edge.addAttribute("ui.style", "size: 5px; fill-color: red;");
使用以下:
graph.setAttribute("ui.stylesheet", "edge{size:30px;}");