How to add horizontal scrolling for react-native-chart-kit StackedBarChart?

Viewed 3200

I'm looking forward to create horizontally scrollable StackedBarChart with react-native-chart-kit. Is it possible to create such chart with this package and how?

1 Answers
<ScrollView horizontal={true}> <BarChart style={graphStyle} chartConfig={chartConfig} verticalLabelRotation={30} /> `enter code here` </ScrollView>
Related