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.
我需要在我的框架中添加图例以显示不同颜色链接和节点的含义。Jung 是否有一些内置的传奇功能?或者我是否需要通过在右侧添加一个额外的面板来制作自己的面板。
我以一种简单的方式添加了图例。首先制作图例的图像,然后通过 JLabel 将其粘贴到面板上。
JLabel label = new JLabel(); label.setOpaque(true); label.setBackground(Color.WHITE); ImageIcon icon = new ImageIcon("Legend/SyncLegend.png"); label.setIcon(icon); vv.add(label);