Reputation: 1272
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
Reputation: 51
<ScrollView horizontal={true}> <BarChart style={graphStyle} chartConfig={chartConfig} verticalLabelRotation={30} /> `enter code here` </ScrollView>
Upvotes: 3