Posted 16 July 2019, 1:16 pm EST
I am exporting a large PDF of a flexsheet workbook that comes to about 70+ pages on average.
I want to display a progress bar in angular 8.0 of the current progress of a PDF document being created. I have a component to do this using a 0 to 1 scale. I thought I was on track with the “progress” property of wijmoGridPDF.FlexGridPdfConverter.draw but the UI thread is locked so I am unable to update my visual component. All i am able to do is view the progress via console:
progress: function(value) {
console.log('PDF conversion progress:', value);
}
Is there an example for reference to display a progress bar for the whole workbook (multiple sheets in a flexsheet)?