摆脱“_anonymous_0”使用 GraphViz 在 SVG 中显示工具提示
我使用 Graphviz 生成 SVG。当嵌入 HTML 中时,节点、边和箭头会显示“_anonymous_0”工具提示。我可以从 GraphViz 中删除这些吗?
I generate SVGs using Graphviz. When embedded in HTML, the nodes, edges and arrows show an "_anonymous_0" tooltip. Can I get rid of these from within GraphViz?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通过反复试验发现:-)
禁用工具提示的自动生成。
空字符串
不会(!)禁用生成。
Found by trial and error :-)
disables the automatic generation of tooltips.
an empty string
does not(!) disable the generation.
如果您的点源开始这样的操作:
使用以下内容可能会有所帮助:
看起来图形的名称(
digraph mygraph {
)被转换为标题元素(;mygraph
)。如果省略名称,则使用 *anonymous_0* 代替。但如果使用 "",则不会创建标题元素。不过,可能有更好的解决方案......
If your dot source start something like this:
it may help to use the following:
It looks like the name of the graph (
digraph mygraph {
) is transformed to a title element (<title>mygraph</title>
). If you omit the name, *anonymous_0* is used instead. But if "" is used, no title element is being created.There may be a better solution to this though...