FormidableLabs / victory

A collection of composable React components for building interactive data visualizations
http://commerce.nearform.com/open-source/victory/
Other
11.02k stars 524 forks source link

I'm experiencing an issue with scrolling my graph when I use VictoryLegend with VictoryZoomContainer. The version of victory-native I'm using is "^37.0.3-next.0". #2906

Closed Shhreyas closed 2 weeks ago

Shhreyas commented 3 months ago

Issue :- My graph view won't scroll horizontally.

import React from 'react'; import { View } from 'react-native'; import { VictoryBar, VictoryChart, VictoryClipContainer, VictoryLegend, VictoryZoomContainer, } from 'victory-native';

const DemoView = () => { return (

} /> }>

); };

export default DemoView;

output:-

Screenshot 2024-08-28 at 12 30 37 PM

carbonrobot commented 1 month ago

If you remove the invalid clipContainerComponent property on VictoryChart, it should work for you.

zoom_container