For some reason, the row header is being automatically set to the same value that appears in the adjacent cell in the first column.
I can set and get HeaderCell.Value, but it has no effect on what is displayed.
If I (manually or programmatically) enter:
Length Radius
Obj 1 53 79
Obj 2 N/A 102
I end up with:
Length Radius
53 53 79
N/A N/A 102
I thought that this might be a side effect of attaching it to a DataTable ( dataGridView1.DataSource = table; ), but I removed this line of code and the issue remained.
Any ideas?