Is there a way to remove the light gray line next to the darker gray line? I've been trying to figure it out myself but no luck so far. After exploring various options in the rechart library, I decided to attempt hiding it with a CSS file.
This is the code I used:
.recharts-layer.recharts-cartesian-axis-tick line{
display: hidden;
}
I've also experimented with this code:
.recharts-cartesian-axis-tick-line{
display:hidden !important;
}
Unfortunately, neither of these solutions seem to be working. It's worth mentioning that the CSS file is properly linked and any other styling attempts have been successful.
Upon inspecting and selecting the element in the dev tools, this is what I see: https://i.sstatic.net/C2m81.png
If anyone has any ideas or suggestions, they would be greatly appreciated!