If I use the Python package pm4py
, I get a nice graph visualization. However, the size is quite small in terms of height, and I want to change it. The code so far:
from pm4py.visualization.bpmn import visualizer as bpmn_visualizer
parameters = bpmn_visualizer.Variants.CLASSIC.value.Parameters
gviz = bpmn_visualizer.apply(bpmn_model, parameters={ "bgcolor": 'green' })
bpmn_visualizer.view(gviz)
Is there a parameter to affect the height and width of the chart?