Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

hide headers in Devexpress gridcontrol

Can anyone tell me how to hide the header in DevExpress gridcontrol..?? I'm using C#.. All I want is a matrix of cells with NO header row with captions.

like image 990
Vignesh Avatar asked Dec 06 '22 17:12

Vignesh


1 Answers

According to their support forum, the proper solution is to toggle the OptionsView.ShowColumnHeaders property.

If you set the property to false, the control will no longer display column headers.

like image 69
Cody Gray Avatar answered Dec 27 '22 11:12

Cody Gray