Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法增加 Graphstream 的边缘宽度?
我试过的:
edge.addAttribute("ui.style", "stroke-width: 30px; fill-color: red;");
我猜你正在寻找size房产。
size
edge.addAttribute("ui.style", "size: 5px; fill-color: red;");
用这个:
graph.setAttribute("ui.stylesheet", "edge{size:30px;}");