如何通过Java中的PREFUSE可视化工具包显示带标签的矩形节点?
我可以借助以下任一工具渲染节点:
- LabelRenderer (显示节点的文本内容)
或
- ShapeRenderer (显示节点的形状)
我想要两者的混合,意味着形状应该用 tthe 显示其上的文字(标签)。
我该怎么办呢。我尝试将两个渲染器(标签和形状渲染器)添加到可视化中,但它不起作用。
非常感谢提前
I can render a node with the help of either:
- LabelRenderer (that shows the text content of the node)
or
- ShapeRenderer (that shows the shape of the node)
I want a mix-up of both, means the shape should be displayed with tthe text (label) on it.
How can I do this. I tried to add both renderers (label and shape renderers) to the visualization but it didn't work.
A lot of thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,您需要装饰器。
You need Decorators for this purpose.