FastReport.OpenSource has gained a lot of interest among many developers. This is a great report generator with a long history. The open source version is FastReport.Core, which appeared at the beginning of 2018, but with some restrictions. Namely - curtailed exports. Thus, only the following formats are available to us:
HTML, BMP, PNG, JPEG, GIF, TIFF, EMF.
Of course, this is very little. The WebReport object displays the report in html format, so it was left.
It is noteworthy that in the WebReport object, we can only save the report to the fpx preview format.
Therefore, you will have to export the report from the application code. Let's have a look at how it will look like by example.
I will describe in details the whole process of creating a demo application so that you can repeat if you wish.
Create an ASP .Net Core 2.0 project. N ...