如何让 graphviz 记录的单元格对齐
我正在 graphviz 中使用记录节点来制作一个简单的表格,但它看起来错误:
digraph g {
node [shape = record,height=.08];
node1[label = "{DBAT|{ 0|1|2|3|4|5|6|7}|{8|9|10|11|12|13|14|15}|...|{248|249|250|251|252|253|254|255}}"];
}
有什么办法可以让子记录对齐吗?
I'm using a record node in graphviz to make a simple table, but it looks wrong:
digraph g {
node [shape = record,height=.08];
node1[label = "{DBAT|{ 0|1|2|3|4|5|6|7}|{8|9|10|11|12|13|14|15}|...|{248|249|250|251|252|253|254|255}}"];
}
Is there any way to get the subrecords to line up?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
HTML 格式的节点可能会让这变得更容易。请参阅http://www.graphviz.org/doc/info/shapes.html# html 了解详细信息。支持表格。
HTML-formatted nodes will probably make this easier. See http://www.graphviz.org/doc/info/shapes.html#html for details. Tables are supported.
就您而言,仅使用记录标签是不可能的,您应该尝试类似 HTML 的语法。
https://graphviz.org/doc/info/shapes.html#html
在线编辑器
In your case, it's impossible to do with only record labels, you should try HTML-like syntax.
https://graphviz.org/doc/info/shapes.html#html
Online Editor