Jump to content
Software FX Community

Is there a way to set the number of visible rows in the data grid?


vbdev11

Recommended Posts

I see two possible interpretations to your question:

1) How to change the size of the data grid so that a certain number of rows are visible?

There is no api to specifically set the number of rows, you can set the Size of the DataGrid by doing:

chart.DataGrid.Height = <value>;

2) How do I hide some rows from the DataGrid?

You can hide series from both the chart and the DataGrid, you can not only hide them from the DataGrid. To hide a series:

chart.Series.Visible = false;

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...