更改 Zest 中节点的颜色
我正在使用 Zest 绘制图表。但是,我想根据其标签将图形节点的默认颜色更改为另一种颜色。例如:标签:红色=>节点的颜色是红色。
I'm using Zest to draw a graph. However, I want to change the default color of the graphnode to another color based on its label. For example: Label: red => color of the node is red.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 Zest 的 GraphViewer API(类似于 JFace 查看器),请让您的 LabelProvider 扩展提供必要的 getBackgroundColor() 回调方法(以及其他方法)的 IEntityStyleProvider。
但是,如果您使用基本 Graph API,则必须使用 GraphNodes set*Color 方法手动设置所有节点的颜色。
If you are using the GraphViewer API of Zest (similar to JFace viewers), let your LabelProvider extend IEntityStyleProvider that provides the necessary getBackgroundColor() callback method (among others).
However, if you are using the base Graph API, then you have to set the color of all the nodes manually using the GraphNodes set*Color methods.