Hi,
Review the following link how to manage the scrollbar visibility: https://docs.telerik.com/devtools/maui/controls/collectionview/scrolling#scrollbars
Regards, Didi Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.
Hello,
In the meantime, you can use the following workaround - access the inner ScrollView from the CollectionView's Children collection and set the needed properties, here is an example:
this.collectionView.Loaded += CollectionView_Loaded;
and add the event handler:
private void CollectionView_Loaded(object sender, System.EventArgs e) { foreach(var child in (sender as RadCollectionView).Children) { if(child is ScrollView) { ScrollView sv = child as ScrollView; sv.VerticalScrollBarVisibility = Microsoft.Maui.ScrollBarVisibility.Never; return; } } }