Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
Problem with XamDataGrid print functionality
posted

Hi,

I'm trying to print a XamDataGrid with its content using the code sample in xamDataGrid Reporting sample (xamFeatureBrowser), however i can't print the content of my XamDataGrid, only a screenshot of this grid.

Here is my code:

Report reportObj = new Report();

EmbeddedVisualReportSection section = new EmbeddedVisualReportSection(myXamDataGrid);

reportObj.Sections.Add(section);

reportObj.Print(fase);

Can someone explain me why this code can't print the content of my myXamDataGrid object?

Thanks

Aurélien