or
Hello Telerik Team,
I am converting the Crystal reports to telerik reports. In previous crystal reports we had "Supress(No drill down)" option
if we want to hide some sections based on some conditions. Do we have that kind of option in telerik reports.If so can you quote me an example on how to achieve it.
My requirement is hiding and showing some sections in the telerik report.
Thank you for the support.
Thank you
Smith
private
void
groupFooterSection2_ItemDataBinding(
object
sender, EventArgs e)
{
Telerik.Reporting.Processing.GroupSection procGroup = sender
as
Telerik.Reporting.Processing.GroupSection;
DataRowView row = procGroup.DataObject.RawData
as
DataRowView;
if
(row[
"group1"
].ToString() ==
""
)
{
procGroup.Visible =
false
;
}
}
MyReport
WeekNumber
NumberOfSells
NumberOfBuys
TransactionVolume
Week
1
Week
2
Week
3
Week n
NumberOfSells
55
50
48
98
NumberOfBuys
44
78
59
25
TransactionVolume
5890
6580
6987
15879