Frozen Rows
You can now easily freeze a set number of rows on top of the FlexyGantt with an API like this:
public MainPage()
{
InitializeComponent();
.......
this.fxgantt.FlexyTableCreated += fxgantt_FlexyTableCreated;
}
void fxgantt_FlexyTableCreated(object sender, EventArgs e)
{
this.fxgantt.FlexyTable.FrozenRowCount = 2;
}
The corresponding rows in the grid and the chart will stay frozen on top as the user scrolls vertically.
� RadiantQ 2009 - 2019. All Rights Reserved.