Search code examples
pythonjupyterbqplot

Change size of Fig in bqplot?


I'm new to bqplot. Trying to figure out how to resize a figure. I tried both of the following, lightly modifying example code:

fig = Figure(marks=[line], axes=[ax_x, ax_y], title='Security 1')
fig.height = 100

and

fig = Figure(marks=[line], axes=[ax_x, ax_y], title='Security 1', height = 100)

Neither of these is showing any effect. Is there a way to change the size of a bqplot?


Solution

  • Have you tried the parameters min_width and min_height?