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
using chart.update() with similar, but not Exactly the same, values, the changed value (bar) is updated in it's correct place.
More detail and a workaround at https://stackoverflow.com/questions/72736226/chart-update-moving-bar-incorrectly, but the jsfiddle demonstrates the issue.
Value (bar) is re-ordered and layered on top of the first identical value in the series.
https://jsfiddle.net/wxpe6v2r/28/
9.3.3, but reproduced in 10.0
Chrome
The text was updated successfully, but these errors were encountered:
Hi @joelsherriff, thank you for reporting the issue.
Simplified demo: https://jsfiddle.net/BlackLabel/zqv96n5w/
Internal note: Looks like a regression after 8919d73 It will be hard to find the cause because the above commit is huge.
Internal note:
Worked fine in 8.0.0, broken since 8.0.1.
Workaround: update your series' data values without updating xAxis.type: 'category' (the xAxis is already category type): https://jsfiddle.net/BlackLabel/245wjme3/
xAxis.type: 'category'
category
Sorry, something went wrong.
The 8919d73 introduced to Point object:
public name: string = void 0 as any;
and now the fist condition in the if statement is allways giving true while not allways it should do that.
if ( 'name' in point && typeof x === 'undefined' && series.xAxis && series.xAxis.hasNames ) { point.x = series.xAxis.nameToX(point); }
Fixed #17438, updating points with the category axis gave wrong x.
49988a9
06e5109
karolkolodziej
Successfully merging a pull request may close this issue.
Expected behaviour
using chart.update() with similar, but not Exactly the same, values, the changed value (bar) is updated in it's correct place.
More detail and a workaround at https://stackoverflow.com/questions/72736226/chart-update-moving-bar-incorrectly, but the jsfiddle demonstrates the issue.
Actual behaviour
Value (bar) is re-ordered and layered on top of the first identical value in the series.
Live demo with steps to reproduce
https://jsfiddle.net/wxpe6v2r/28/
Product version
9.3.3, but reproduced in 10.0
Affected browser(s)
Chrome
The text was updated successfully, but these errors were encountered: