소스 검색

fix(edge): misaligned label text position

tags/v0.15.0
mingrammer 4 년 전
부모
커밋
91a2910026
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. +3
    -2
      diagrams/__init__.py

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

@@ -171,7 +171,7 @@ class Diagram:
self.dot.subgraph(dot)

def render(self) -> None:
self.dot.render(format=self.outformat, view=self.show)
self.dot.render(format=self.outformat, view=self.show, quiet=True)


class Cluster:
@@ -445,7 +445,8 @@ class Edge:

if label:
# Graphviz complaining about using label for edges, so replace it with xlabel.
self._attrs["xlabel"] = label
# Update: xlabel option causes the misaliend label position: https://github.com/mingrammer/diagrams/issues/83
self._attrs["label"] = label
if color:
self._attrs["color"] = color
if style:


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