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
does not have a method error. And also using redraw! doesn't update the plot.
The following is the code I used for the test:
using PlotlyJS
x = [1, 2, 3]
y = [1, 4, 7]
tr =scatter(x=x, y=y,)
fig =plot(tr)
# change data
fig.plot.data[1][:y][3] =0# == y[3] = 0react!(fig.plot, fig.plot.data, fig.plot.layout) # not correct, but no error text in the terminalredraw!(fig) # also does not update the plotdisplay(fig)
The text was updated successfully, but these errors were encountered:
The correct method of using react! is
but I found that using
does not have a method error. And also using redraw! doesn't update the plot.
The following is the code I used for the test:
The text was updated successfully, but these errors were encountered: