dstl / Stone-Soup

A software project to provide the target tracking community with a framework for the development and testing of tracking algorithms.
https://stonesoup.rtfd.io
MIT License
384 stars 126 forks source link

Plotterly, how to pass in kwargs to change plot size? #910

Closed apiszcz closed 6 months ago

apiszcz commented 6 months ago

Interested in changing the size of the plot.

# The following produces an error
plotter = Plotterly(dimension=Dimension.TWO, figsize=(10,10))
apiszcz commented 6 months ago

Disregard, approach located, use fig parameters.

fig.update_layout(
    autosize=False,
    width=800,
    height=800,
)