-
Notifications
You must be signed in to change notification settings - Fork 776
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
Line Series Trackball Tooltip Format Series Name #24
Comments
Hi @walsha2 , Sorry for the inconvenience. We are closing this issue. But you can reopen this if you face any concerns. Thanks, |
@JayavigneshwaranG confirmed - this is now fixed with the latest release. Thanks! |
Description:
In the following example for a line series chart (where x-axis is
DateTimeAxis
and y-axis isNumericAxis
) the following does not work as expected:The tooltip label correctly parses and replaces
point.y
but does not do the same forseries.name
it just keeps it as the string:'series.name'
in the tool tip and does not update.Issue Resolution:
Digging through the code, the following seems to be the culprit -
series.name
is completely missing:Changing to this to the following (adding
series.name
replacement), solved the issue:The text was updated successfully, but these errors were encountered: