Hi, how can I remove the vertical and horizontal lines of the grid?
Thank you !

You'd have to modify the source code of this lib. If you do that, and make it configurable, make sure to open a Pull Request.
@Ivanrs297 did you achieve it, Did you modified code?
If yes, please let me know how to remove background lines
I know this is old but I was trying to figure out how to do this and it might be useful to someone. I was able to do this with the following:
propsForBackgroundLines: {
strokeWidth: 0
}
You can also use withInnerLines={false}
@Em01 and @jBaczuk can you pls tell me exactly how to remove the grid. in which block should I put the above code solu.
@SSOURABH58
For example:
<LineChart
{...otherProps}
withInnerLines={false}
/>
Most helpful comment
I know this is old but I was trying to figure out how to do this and it might be useful to someone. I was able to do this with the following: