Skip to content
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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Boost with two yAxis - point flickers #21176

Open
Basts opened this issue May 16, 2024 · 2 comments
Open

Boost with two yAxis - point flickers #21176

Basts opened this issue May 16, 2024 · 2 comments

Comments

@Basts
Copy link
Contributor

Basts commented May 16, 2024

Expected behaviour

No ghost point 馃懟

image (5)

Actual behaviour

Boost with two yAxis - point flickers when hovering between series assigned to the different axes

Live demo with steps to reproduce

https://jsfiddle.net/BlackLabel/tvb3501m/

@bm64
Copy link
Member

bm64 commented May 16, 2024

Internal note:
Used to work correctly in v7.2.1: https://jsfiddle.net/BlackLabel/hdur97zq/
Unable to bisect

@hubertkozik
Copy link
Member

The bug is related to the fact, that there is only one markerGroup across multiple series with possible multiple axes, which position is set based only on first x-axis and first y-axis.

Related issue: #10464

A related part of code:

// See #6518 + #6739
if (
chart.boost.markerGroup &&
chart.xAxis &&
chart.xAxis.length > 0 &&
chart.yAxis &&
chart.yAxis.length > 0
) {
chart.boost.markerGroup.translate(
chart.xAxis[0].pos,
chart.yAxis[0].pos
);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants