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 have a databound grid that has 6 columns and the very last column is not displaying the headertext. All others display fine, plus the data in the column displays fine. When I check the value of the cell it is set correctly, any ideas why this would happen or how to force it to display?
//
// gbcData
//
this.gbcData.HeaderText = "Raw Data";
this.gbcData.MappingName = "data";
this.gbcData.StyleInfo.CellType = "Static";
ADAdministrator Syncfusion Team January 20, 2004 01:48 PM UTC
Where are you setting this headertext? Is it in the same place as the other headers are set?
Are you adjusting the grid''s Bound or Location or something that may make teh grid think its cleintarea is smaller?
If you drag the grid off and on the screen, does the headertext show up then? If so, this is likely a refresh problem. Maybe explicitly calling grid.Refresh or Grid.RefreshRange will make things show up.
ADAdministrator Syncfusion Team January 20, 2004 01:48 PM UTC
Where are you setting this headertext? Is it in the same place as the other headers are set?
Are you adjusting the grid''s Bound or Location or something that may make teh grid think its cleintarea is smaller?
If you drag the grid off and on the screen, does the headertext show up then? If so, this is likely a refresh problem. Maybe explicitly calling grid.Refresh or Grid.RefreshRange will make things show up.
ADAdministrator Syncfusion Team January 20, 2004 05:24 PM UTC
The header is centered which when combined with auto size seems to dissappear. I would guess this is related to the data in the column being so large. Is there anyway to tell the header column to be left justified and not centered?
ADAdministrator Syncfusion Team January 20, 2004 06:17 PM UTC