The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
I''ve created a virtual grid but I dont want scrollbars visible at all in my grid. In designer I set HScrollBehavior and VScrollBehavior to GridScrollbarMode.Disabled.
However, when the application comes up, I have a horizontal and a vertical scrollbar. The horizontal scrollbar doesnt work but the vertical scrollbar does. I''d prefer to have neither of these visible, what am I missing?
ADAdministrator Syncfusion Team March 25, 2004 04:10 PM UTC
In addition to setting HScrollBehavior and VScrollBehavior to GridScrollbarMode.Disabled, try setting
this.gridDataBoundGrid1.HScroll = false;
this.gridDataBoundGrid1.VScroll = false;
Depending upon exactly how you have your grid parented, and when you set the values in the grid, these properties may need to be reset as well.