clayms
clayms
change your `graph_attr` to the following: ```python graph_attr = { "splines":"spline", "label": "Sample diagram diagrams", "labelloc": "t", "bgcolor": "lightpink", } ``` For record shapes see: https://github.com/mingrammer/diagrams/issues/290#issuecomment-720159611
Add the `graph_attr` to the `Cluster()` object. See https://github.com/mingrammer/diagrams/issues/486#issuecomment-799483271 Just add the `fontsize="30"` to the `graph_attr` directly, or in a referenced dictionary like the example above. e.g. ```python #... with...
If you only want to change the size, you don't need to set the `graph_attr`. See below. See more attributes here: https://graphviz.gitlab.io/doc/info/attrs.html ```python with Diagram('\ndemo', show=False) as diag: with Cluster(""):...
@AKC0 Please post an example of your code actual output, and describe how the desired output would be different.
@AKC0 Please post your code. Also have a look at the following: https://github.com/mingrammer/diagrams/issues/579#issuecomment-899830574 https://github.com/mingrammer/diagrams/issues/579#issuecomment-898628367 and https://github.com/mingrammer/diagrams/issues/358#issuecomment-716565948 https://github.com/mingrammer/diagrams/issues/358#issuecomment-723581944 https://github.com/mingrammer/diagrams/issues/358#issuecomment-723674931
@AKC0 You are not required to use "ortho", change it to "spline" . If you are using python to generate the code from the excel file, then you should be...
I'm sure there are better ways, but the following will display all of the nodes for each "resource" and each "group" in that "resource." This runs in a Jupyter notebook....
Ideally there should be a method to list all of the resource groups, e.g. `["alibabacloud", "aws", "azure", ... , "saas"]`. Then each resource group would have a method that would...
@ncamit See if this helps https://github.com/mingrammer/diagrams/issues/17#issuecomment-723361274 I would also help if you posted your code.
@ncamit Is the following similar to the problem you are having? https://github.com/mingrammer/diagrams/issues/552#issue-932956917