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
Hi. It would be nice to have custom tooltips passed in as a list. For example:
chart.add_serie(y=[1, 2, 3], x=[1, 2, 3], tooltips=['A', 'B', 'C'])
The text was updated successfully, but these errors were encountered:
That's a great idea, but it would be great if you can offer a PR for that. Ideally this should support what we currently have:
extra_serie = {"tooltip": {"y_start": "There is ", "y_end": " calls"}}
Maybe we could consider something like:
chart.add_serie(y=[1, 2, 3], x=[1, 2, 3], tooltips=['A: #xval', 'B: #xval', 'C: #xval'])
where #xval & #yval would replaced by their respective value.
#xval
#yval
Sorry, something went wrong.
No branches or pull requests
Hi. It would be nice to have custom tooltips passed in as a list.
For example:
The text was updated successfully, but these errors were encountered: