Hi Telerik,
After going through Step by Step guide, I figured out ObjectDataSource is the best fit for my case.
Let me give a brief description
-> I have a wpf window (window1) with DataTable populated which needs to be displayed in the report
-> I created report with just the group header. I tried adding ObjectDataSource from the toolbar and Visual Studio got hanged. So I decided adding it in the code like below.
After going through Step by Step guide, I figured out ObjectDataSource is the best fit for my case.
Let me give a brief description
-> I have a wpf window (window1) with DataTable populated which needs to be displayed in the report
-> I created report with just the group header. I tried adding ObjectDataSource from the toolbar and Visual Studio got hanged. So I decided adding it in the code like below.
Telerik.Reporting.ObjectDataSource ods = new Telerik.Reporting.ObjectDataSource();
Telerik.Reporting.Report r1 = new Telerik.Reporting.Report();
-> All the columns in the DataTable will be created and populated based on the value selected in wpf Window (window1). I would like to add this DataTable as a source to my report.
-> How to declare the fields and association between my datatable and the display fields.
Is it something like since we know the columnnames in the DataTable we need to specify it as [=Fields.MovieName], and so on. assume MovieName is the columnName in DataTable.
Please let me know.
Thanks,
Mohan