react-native-chart-kit
react-native-chart-kit copied to clipboard
remove innerLines from stackedbarchart?
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} />
I just remove the horizontal line