Hi,
I'm facing the following error message when I try to generate reports in the docx format: "DOCX rendering format is not available"
I've added the Telerik.Reporting.OpenXmlRendering nuget package and added the following section in the appsettings.json file of the application using the library:
"telerikReporting": {
"extensions": [
{
"name": "DOCX",
"type": "Telerik.Reporting.OpenXmlRendering.Wordprocessing.WordprocessingReport, Telerik.Reporting.OpenXmlRendering, Version=2.7.2, Culture=neutral, PublicKeyToken=neutral"
}
]
Finally, here's the code used:
...
renderResult = reportProcessor.RenderReport("DOCX", reportSource, deviceInfo);
What am I missing ?
Thank you for the assistance