소스 검색

Set Node tooltip to the Class name

pull/823/head
Bruno Meneguello 3 년 전
부모
커밋
8266f7d84c
1개의 변경된 파일7개의 추가작업 그리고 3개의 파일을 삭제
  1. +7
    -3
      diagrams/__init__.py

+ 7
- 3
diagrams/__init__.py 파일 보기

@@ -324,12 +324,14 @@ class Node(_Cluster):
# that label being spanned between icon image and white space.
# Increase the height by the number of new lines included in the label.
padding = 0.4 * (label.count('\n'))
icon = self._load_icon()
icon_path = self._load_icon()
self._attrs = {
"shape": "none",
"height": str(self._height + padding),
"image": icon,
} if icon else {}
"image": icon_path,
} if icon_path else {}

self._attrs['tooltip'] = (icon if icon else self).__class__.__name__

# fmt: on
self._attrs.update(attrs)
@@ -343,6 +345,7 @@ class Node(_Cluster):
# Set attributes.
for k, v in self._default_graph_attrs.items():
self.dot.graph_attr[k] = v
self.dot.graph_attr['tooltip'] = self._attrs['tooltip']

icon = self._load_icon()
if icon:
@@ -536,6 +539,7 @@ class Edge:
# Graphviz complaining about using label for edges, so replace it with xlabel.
# Update: xlabel option causes the misaligned label position: https://github.com/mingrammer/diagrams/issues/83
self._attrs["label"] = label
self._attrs["tooltip"] = label
if color:
self._attrs["color"] = color
if style:


불러오는 중...
취소
저장