Setting the report viewers zoom
Setting the report viewers zoom
How do you set the report viewers starting zoom through flex?
Setting the report viewers zoom
Hello,
You can use the following option:
If the StiZoomMode class is not found automatically, please add manually the following import line:
Thank you.
You can use the following option:
Code: Select all
StiOptions.viewer.toolbar.zoomMode = StiZoomMode.PageWidth;
If the StiZoomMode class is not found automatically, please add manually the following import line:
Code: Select all
import stimulsoft.report.enums.StiZoomMode;
Setting the report viewers zoom
I added both those lines of code and it did nothing.
This is the code I have to show the report:
This is the code I have to show the report:
Code: Select all
var report:StiReport = new StiReport();
StiOptions.viewer.toolbar.zoomMode = StiZoomMode.Zoom100;
report.loadReportFromString(reportString);
report.regDataXML("report_data", "report_data", xmlData);
report.showDialog(null, reportTitle, true, true);
Setting the report viewers zoom
Hello,
Please tell us, what version of the product are you using?
Thank you.
Please tell us, what version of the product are you using?
Thank you.
Setting the report viewers zoom
Hello,
We have fixed this error, the specified zoom is not used if the previously is set zoom by page height or page width. The update will be available in the next prerelease build on January 18.
Thank you.
We have fixed this error, the specified zoom is not used if the previously is set zoom by page height or page width. The update will be available in the next prerelease build on January 18.
Thank you.
Setting the report viewers zoom
Thank you!
I'll wait for the update.
I'll wait for the update.
Setting the report viewers zoom
Hello,
The update will appear today.
Thank you.
The update will appear today.
Thank you.
Setting the report viewers zoom
I was able to use StiZoomMode.Zoom100 but not anymore. Was it removed?
Setting the report viewers zoom
Hello,
Yes, the designer and viewer option has been expanded. Now you can set any page zoom:
Thank you.
Yes, the designer and viewer option has been expanded. Now you can set any page zoom:
Code: Select all
StiOptions.viewer.toolbar.zoom = 100;
StiOptions.viewer.toolbar.zoom = StiZoomMode.OnePage;