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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix / Tick Format w/ Domain #1852

Merged
merged 6 commits into from May 17, 2021
Merged

Fix / Tick Format w/ Domain #1852

merged 6 commits into from May 17, 2021

Conversation

jhumbug
Copy link
Contributor

@jhumbug jhumbug commented May 13, 2021

A bug occurs when using tickFormat as an array while also restricting data points via domain (through props or through VictoryZoomContainer)
The ticks in VictoryAxis are altered by domain to determine which tick to display at which point on the axis. But when you also use a tickFormat array, the now shortened list of tickArray elements no longer corresponds with that unaltered tickFormat array.

This PR instead keeps track of the original indices of the filtered tickArray so that you can use it to also filter tickFormat in the same way.

When tickFormat is an array it must match the data array index for index to work correctly.

@jhumbug jhumbug requested a review from boygirl May 13, 2021 21:33
@jhumbug
Copy link
Contributor Author

jhumbug commented May 13, 2021

@boygirl This solution seems to work, afaik. Please let me know how you feel about it though. It's a little funky, can maybe be prettied up a bit.

@jhumbug jhumbug changed the title Fix / Tick Format w/ VictoryZoomContainer Fix / Tick Format w/ Domain May 13, 2021
@jhumbug jhumbug linked an issue May 14, 2021 that may be closed by this pull request
@jhumbug jhumbug marked this pull request as ready for review May 14, 2021 13:50
@boygirl
Copy link
Contributor

boygirl commented May 17, 2021

@jhumbug this is looking good, and works well. Approved!

@jhumbug jhumbug merged commit abe8ab5 into main May 17, 2021
@jhumbug
Copy link
Contributor Author

jhumbug commented May 17, 2021

@boygirl thank you! merged

@boygirl boygirl deleted the fix/tick-format-zoom branch May 28, 2021 18:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

VictoryZoomContainer breaks when VictoryAxis.tickFormat is an array
2 participants