-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support for events? #8
Comments
Hi, it's possible to add these events to the extension. I can add the same APIs as in the JS side to python. For example from ipecharts import EChartsWidget
...
my_chart = EChartsWidget(option=option)
def my_callback(params):
print(params)
my_chart.on('mouseover', { "seriesIndex": 1, "name": "xx" }, my_callback) I can work on this feature in a few weeks. |
Merged
Wow, awesome! Thanks I will test it. |
I will add action dispatching later then release 1.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I would like to trigger some events from the user's interaction with the graphs as echarts describes in https://echarts.apache.org/handbook/en/concepts/event, is there any way to do it with this extension?
The text was updated successfully, but these errors were encountered: