Is there way to print the full data grid without adjusting the panes? I am html printing the data grid but I only get half of the grid when I print.
I am using the blazor version of the data grid.
Hello Luis,
I have been investigating into the sample project with my colleagues, and it appears that your sample is currently trying to get the <div> that contains the FinancialChart and print it. This will not work, as it is not straightforward to render existing HTML to an image, let alone a complex component like our chart, and this is extended to canvas elements, which the FinancialChart uses. There is no way that we can reconstruct the canvas from the root element, and so it will not be possible to print the chart this way.
What you can do instead is dig into the DOM of the FinancialChart, get the canvases, draw them to an image, and push the image into a new window that you can print. I am attaching a modified version of the sample project you sent to demonstrate.
Please let me know if you have any other questions or concerns on this matter.
BlazorDockManagerWC.zip
BlazorDockManagerWC-main - Copy.zip
I just uploaded it, here is a sample project. The issue is html printing the financials chart from the dock manager.
I am able to html print the datagrid but not the financials chart.
You can upload the sample project to this forum, but please remember to delete the bin and obj files of your Blazor application before compressing it into a .zip file or the file will be too large to attach.
Alternatively, you can send your sample to support@infragistics.com and I will be able to download it from there.
How can I send you sample project? Is there a place I can upload it?
I believe the CanvasRenderingContext2D is an object that is used internal to the FinancialChart component. It is not something that would be able to be modified or replaced.
Would it be possible for you to provide some information on how exactly you are receiving this error? If you could please provide an isolated sample project that reproduces this, that would be most helpful.