New to Telerik Reporting? Download free 30-day trial

The scale(scale) method of the HTML5 Report Viewer

Sets the scale factor and scale mode. For more information please see jQuery.fn.telerik_ReportViewer’s scale and scaleMode options in Report Viewer Initialization.

Parameters:

Parameter Description
scale object with properties:
  • scale
  • scaleMode

Returns: the current ReportViewer object.

var reportViewer = $("#reportViewer1").data("telerik_ReportViewer");
reportViewer.scale({
    scaleMode: “SPECIFIC”,
    scale: 0.75
});
In this article