What's the best way to get rid of row_labels? My program should work with CSV files, and I need only col_labels.

enter image description here

I'm going to make this column's width 0px. But is it the best possible solution?

link|improve this question

75% accept rate
1  
+1 for illustration – steenslag May 18 '11 at 21:05
feedback

2 Answers

If you look in the wxWidgets grid sample, specifically the Tabular Table Test, it hides the row labels with this code

void OnToggleShowRowLabels(wxCommandEvent&)
{
    m_grid->SetRowLabelSize(m_chkShowRowLabels->IsChecked()
                            ? wxGRID_AUTOSIZE
                            : 0);
}

So setting the column width to 0 seems to be the best way to do it.

link|improve this answer
feedback

HideRowLabels() method should do the thing. If you are using the latest SVN HEAD at least.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.