Viewport shift on offset recalc - #812
Closed
hannesa2 wants to merge 2 commits into
Closed
Conversation
The pan is stored in the touch matrix as a pixel translation, while the value-to-pixel scale is derived from the content rect. Resizing the content rect therefore makes the same pixel translation denote a different value, sliding the visible range. This is most visible after a zoom gesture: BarLineChartTouchListener defers chart.calculateOffsets() to ACTION_UP, so a y-zoom that widens the y-axis labels resizes the content rect only once the gesture ends, and the chart jumps sideways. The same happens when a fling settles, via computeScroll(). Scale the translation by the same ratio as the content rect so the visible range survives the resize. The visible extent is unaffected: it is (axis range / touch scale), which does not depend on the content width.
Adds two instrumented tests covering the viewport preservation fix in ViewPortHandler.restrainViewPort (PR #811). These must run on a device because the library's JVM unit tests stub android.graphics and cannot exercise the real Matrix math the fix depends on. The first test reproduces a real-world scenario: deeply zoomed/panned viewport, then content rect resize (from y-axis label growth). It verifies the visible x-range is preserved and reconstructs the pre-fix behavior to show it would shift ~83 x-units on a 3600-unit range. The second test asserts the pan ratios (transX/contentWidth, transY/contentHeight) are preserved across the resize. Also updates chartLib/build.gradle.kts to add androidTest dependencies.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
It's just a copy of #812 to see if CI is working properly