i try to apply sorting at runtime on crosstab report and it dosen't work so i need snap shot code that describe how can i do that.
Thank you.
How to apply sorting on cross tab at runtime?
Re: How to apply sorting on cross tab at runtime?
Hello,
The easy way for create a necessary report in c# code - is a create report in our designer then open Code tab and use the similar code in your project.
for example:
this.CrossTab1_Row1.SortDirection = Stimulsoft.Report.CrossTab.Core.StiSortDirection.Desc;
Thank you.
The easy way for create a necessary report in c# code - is a create report in our designer then open Code tab and use the similar code in your project.
for example:
this.CrossTab1_Row1.SortDirection = Stimulsoft.Report.CrossTab.Core.StiSortDirection.Desc;
Thank you.