This renderer uses viz.js to render the process map using the DOT layout.
renderer_graphviz(
svg_fit = TRUE,
svg_contain = FALSE,
svg_resize_fit = TRUE,
zoom_controls = TRUE,
zoom_initial = NULL
)
Whether to scale the process map to fully fit in its container. If set to `TRUE` the process map will be scaled to be fully visible and may appear very small.
Whether to scale the process map to use all available space (contain) from its container. If set to `FALSE`, if `svg_fit` is set this takes precedence.
Whether to (re)-fit the process map to its container upon resize.
Whether to show zoom controls.
The initial zoom level to use.
A rendering function to be used with animate_process
animate_process
data(example_log)
# Animate the process with the default GraphViz DOT renderer
animate_process(example_log, renderer = renderer_graphviz())