You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm trying to use Bonito.record_states to plot the evolution of some algorithm, and I cannot get the plot title to change with an Observable (on Firefox, if that matters). I'd appreciate if someone could let me know if I'm doing something wrong or if there indeed is some bug etc.
As a simplified example, consider
using WGLMakie, Bonito
App() do session::Session
n=10
slider =Slider(1:n)
lab =@lift(string("t=", $(slider.value)))
fig, ax, splot =scatter(1:n, 1:n, axis=(title=lab, ))
return Bonito.record_states(session, DOM.div(slider, slider.value, fig))
end
When I ran the above, the plot title is stuck at t=1, even though I can add the rest of my code and change the content of the plot as expected. I imagine this may be more WGLMakie related rather than Bonito, but in trying to do a similar thing to create a gif, I had no problems.
The text was updated successfully, but these errors were encountered:
Hi, I'm trying to use
Bonito.record_states
to plot the evolution of some algorithm, and I cannot get the plot title to change with an Observable (on Firefox, if that matters). I'd appreciate if someone could let me know if I'm doing something wrong or if there indeed is some bug etc.As a simplified example, consider
When I ran the above, the plot title is stuck at
t=1
, even though I can add the rest of my code and change the content of the plot as expected. I imagine this may be more WGLMakie related rather than Bonito, but in trying to do a similar thing to create a gif, I had no problems.The text was updated successfully, but these errors were encountered: