<LineChart
style={styles.lineChartGraph}
curve={shape.curveNatural}
data={props.xAxisData}
svg={{
stroke: props.color,
strokeWidth: 3,
}}
contentInset={{top: 20, bottom: 20}}>
<Grid color={'lightgrey'} direction={Grid.Direction.VERTICAL} />
</LineChart>
I am trying to show vertical grids under the line

Vertical grid 'react-native-svg-charts' in LineChart in react native showing properly.