Can we remove background grid lines from stacked bar chart?
I'm just adding the library to my project, but searching through the code the same thing, I found that you can put this:
chartConfig={{
...,
propsForBackgroundLines: {
strokeDasharray: "4",
strokeWidth: 0, // If you put 0 in the value no line is displayed
stroke: `rgba(0, 0, 0, 0)`,
},
}}
<LineChart withInnerLines={false} />
Most helpful comment
I'm just adding the library to my project, but searching through the code the same thing, I found that you can put this: