I want to add GroupHeaderBand in existing report beneath "HeaderTransactions" and above "DataTransactions", from code behind .
I am using below code to add new groupheaderband to existing report but it adds groupheaderband at last so report do not populate correct data.
Code: Select all
StiGroupHeaderBand h = = new StiGroupHeaderBand();
h.Name = "GroupHeaderBand1";
h.KeepGroupTogether = true;
page.Components.Add(h);
Regards,
Vatsal Desai