I see in the patch notes a breaking change was made to show the top/left borders by default:
https://help.syncfusion.com/flutter/release-notes/v20.3.0.47?type=all#datagrid
I want to turn off the left border. I see that if I set GridLinesVisibility.none it turns off the left border, but of course it also turns off all the borders separating my rows. I would have thought that GridLinesVisibility.horizontal would hide the left border, but that's not the case. I can wrap each of my cell widgets with a Container and set a bottom border on them, but if it's possible to handle this with some setting in SfDataGrid I would prefer to do that.
Is there any way to turn off the left border without using GridLinesVisibility.none? It would be nice if the top/left borders could be opted out of.