We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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:
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.
Sorry, something went wrong.
Wow, awesome! Thanks I will test it.
I will add action dispatching later then release 1.1
Successfully merging a pull request may close this issue.
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: