Closed eromoe closed 4 years ago
For the button click part: (see: https://ipyvuetify.readthedocs.io/en/latest/usage.html#events)
def click_handler(*args):
...
button = v.Btn(children=['view'])
button.on_event('click', click_handler)
For the result you will need to keep using the Output widget unless you use a plot library that has support for widgets like bqplot or ploty's FigureWidget.
Thank you. Now I understand the figure object must support some interact function, only in that way I can put different figure object to v.Container . If insist using matplotlib and seaborn , must need output widget, right ?
Hello,
It is struggling for me to figure it out . Now I have wrote a basic ugly working code by ipywidgets . It is like
I didn't found a example for my case. Could you give me a guide ?