First of all, excellent project! Thanks for all the time dedicated to share it with us. I decided to move my team to start using diagrams as our default tool by I cannot solve this issue. I don't get how to solve de missalignement in labels. All of them are visualized overlapping with nodes, turning it complicated to read:
I'm using latest versions of diagrams and graphviz (I also tried downgrading with different combinations of versions with the same result):
diagrams==0.19.1
graphviz==0.16
Do you know if there is any problem associated with these versions? Thanks in advance!
I tried with this example code and the problem persists:
`from diagrams import Cluster, Diagram
from diagrams.aws.compute import ECS
from diagrams.aws.database import ElastiCache, RDS
from diagrams.aws.network import ELB
from diagrams.aws.network import Route53
with Diagram("Clustered Web Services", show=False):
dns = Route53("dns")
lb = ELB("lb")
First of all, excellent project! Thanks for all the time dedicated to share it with us. I decided to move my team to start using diagrams as our default tool by I cannot solve this issue. I don't get how to solve de missalignement in labels. All of them are visualized overlapping with nodes, turning it complicated to read:
I'm using latest versions of diagrams and graphviz (I also tried downgrading with different combinations of versions with the same result):
Do you know if there is any problem associated with these versions? Thanks in advance!
I tried with this example code and the problem persists:
`from diagrams import Cluster, Diagram from diagrams.aws.compute import ECS from diagrams.aws.database import ElastiCache, RDS from diagrams.aws.network import ELB from diagrams.aws.network import Route53
with Diagram("Clustered Web Services", show=False): dns = Route53("dns") lb = ELB("lb")