RadiantQ WPF Gantt
How to freeze rows on top?
Previous Topic  Next Topic 

How to freeze rows on top?


In some projects, you could have Milestones, a Grand Summary task or some other important tasks that are of import and need to stay frozen on top as the user scrolls the tasks vertically. This is easily done by freezing a set number of rows as shown below.



        public MainPage()

        {

            ....

            this.fxgantt.FlexyTableCreated += fxgantt_FlexyTableCreated;

        }


        void fxgantt_FlexyTableCreated(object sender, EventArgs e)

        {

            this.fxgantt.FlexyTable.FrozenRowCount = 2;

        }


This will then keep the rows frozen both in the grid and in the chart as the user scrolls vertically.



� RadiantQ 2009 - 2019. All Rights Reserved.