Updating version to 37.1.1 - viewBox issue
Is there an existing issue for this?
- [X] I have searched the existing issues
Code of Conduct
- [X] I agree to follow this project's Code of Conduct
Victory version
37.1.1
Code Sandbox link
No response
Bug report
After updating the version from 37.0.2 to 37.1.1 none of the charts are displayed and I'm getting the warning:
Invalid `viewBox` prop:0 0 undefined undefined
Steps to reproduce
No response
Expected behavior
No response
Actual behavior
No response
Environment
- Device: iPhone SE / Samsung Galaxy A51
- OS: iOS version 17.5.1 / Android version 13
- Node: 18.17.0
- npm:
I am facing the same issue. I thought of adding width and height to the container component props, but it did not work.
Hi there! It looks like your issue requires a minimal reproducible example, but it is invalid or absent. Please prepare such an example and share it with us.
The best way to get attention to your issue is to provide a clean and easy way for a developer to reproduce the issue on their own machine. Please do not provide your entire project, or a project with more code than is necessary to reproduce the issue.
A side benefit of going through the process of narrowing down the minimal amount of code needed to reproduce the issue is that you may get lucky and discover that the bug is due to a mistake in your application code that you can quickly fix on your own.
Resources
Common concerns
"I didn't have time to create one"
That's understandable, it can take some time to prepare. We ask that you hold off on filing an issue until you are able to fully complete the required fields in the issue template.
"You can reproduce it by yourself by creating a project and following these steps"
This is useful knowledge, but it's still valuable to have the resulting project that is produced from running the steps, where you have verified you can reproduce the issue.
Experiencing the same issue. It seems to be coming from the container and, in my case, removing the containerComponent prop fixes the warning and layout issues. Can confirm that downgrading victory deps to 37.0.2 also fixes it.
Created a snack with the issue here
@adamhari Thanks! Yes, it works when you delete containerComponent (with VictoryVoronoiContainer), but I need that :D So, I will use 37.0.2 for now
Thanks for the reproduction, will add it to the queue
I checked and version 36.8.3 doesn't have this problem either.
Hey,
it seems like adding both initialProps and props to VictoryContainer in VictoryVoronoiContainer helps to solve this.
This is patch I use:
victory-native+37.3.6.patch
diff --git a/node_modules/victory-native/lib/components/victory-voronoi-container.js b/node_modules/victory-native/lib/components/victory-voronoi-container.js
index 0bce814..2a23061 100644
--- a/node_modules/victory-native/lib/components/victory-voronoi-container.js
+++ b/node_modules/victory-native/lib/components/victory-voronoi-container.js
@@ -18,7 +18,7 @@ const VictoryVoronoiContainer = initialProps => {
labelComponent: initialProps.labelComponent ?? /*#__PURE__*/_react.default.createElement(_victoryTooltip.VictoryTooltip, null),
voronoiPadding: initialProps.voronoiPadding ?? DEFAULT_VORONOI_PADDING
});
- return /*#__PURE__*/_react.default.createElement(_victoryContainer.VictoryContainer, props);
+ return /*#__PURE__*/_react.default.createElement(_victoryContainer.VictoryContainer, {...initialProps, ...props});
};
exports.VictoryVoronoiContainer = VictoryVoronoiContainer;
VictoryVoronoiContainer.role = "container";
You can use it with yarn patch or patch-package.
Hey, it seems like adding both
initialPropsandpropsto VictoryContainer in VictoryVoronoiContainer helps to solve this.This is patch I use:
victory-native+37.3.6.patchdiff --git a/node_modules/victory-native/lib/components/victory-voronoi-container.js b/node_modules/victory-native/lib/components/victory-voronoi-container.js index 0bce814..2a23061 100644 --- a/node_modules/victory-native/lib/components/victory-voronoi-container.js +++ b/node_modules/victory-native/lib/components/victory-voronoi-container.js @@ -18,7 +18,7 @@ const VictoryVoronoiContainer = initialProps => { labelComponent: initialProps.labelComponent ?? /*#__PURE__*/_react.default.createElement(_victoryTooltip.VictoryTooltip, null), voronoiPadding: initialProps.voronoiPadding ?? DEFAULT_VORONOI_PADDING }); - return /*#__PURE__*/_react.default.createElement(_victoryContainer.VictoryContainer, props); + return /*#__PURE__*/_react.default.createElement(_victoryContainer.VictoryContainer, {...initialProps, ...props}); }; exports.VictoryVoronoiContainer = VictoryVoronoiContainer; VictoryVoronoiContainer.role = "container";You can use it with
yarn patchorpatch-package.
This is a great lead, I'm working on a PR which should fix the root issue.