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.
pydot を使用して生成しているグラフのノードに複数行のツールチップを追加したいと思います。これが私がやっていることです:
node = pydot.Node('abc', style='filled', fillcolor='#CCFF00', fontsize=12) txt = 'foo' + '\n' + 'test' node.set_tooltip(txt)
表示されるツール ヒントは「foo\ntest」と表示されます
どんな助けにも感謝します。
ありがとうアビジット