Normal way to do this would be to redo the ControlTemplate for the DataGridControl and set the CardViewScrollViewer's HorizontalScrollBarVisibility t0 Hidden.
Here is a somewhat simpler way to do the same thing, which is not as efficient however: In the loaded handler of the Window/Page/DataGridControl
ScrollViewer scrollViewer = myDataGridControl.Template.FindName("PART_ScrollViewer", myDataGridControl) as ScrollViewer;
if( scrollViewer != null )
{
scrollViewer.HorizontalScrollBarVisibility = ScrollBarVisibility.Hidden;
}
Marc Laroche
Software Developer
Xceed Software Inc.I don’t suffer from insanity, I enjoy every minute of it. - Unknown