Skip to content

HOW TO: Save Diagram in Scalable Vector Graphics (SVG) format

CS Goh edited this page Aug 13, 2023 · 1 revision

To save diagram in SVG instead of the default PNG format, specify painter_type when creating ProcessMap.

with ProcessMap(
        "My Process", painter_type="SVG"
    ) as my_process_map:
   ...
   my_process_map.save("my_process.svg")