she hates me
she hates me

Reputation: 1272

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

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?

Upvotes: 9

Views: 6207

Answers (1)

Surendra
Surendra

Reputation: 51

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

Upvotes: 3

Related Questions