New to Telerik UI for WPFStart a free 30-day trial

Zoom In or Out a Worksheet

Updated on Sep 15, 2025

This article describes how you can change the zoom level of the Worksheet, which helps to take a close-up view of your Worksheet or to zoom out to see more of the page at a reduced size.

In order to do so there are two different approaches available: Using UI or Programmatically.

Using UI

On the status bar of the RadSpreadsheet app, move the zoom scale slider or click the '-' (minus) or '+' (plus) button to zoom in gradual increments.

Zoom scale slider

The particular zoom setting is preserved when save/export the Worksheet.

Programmatically

By using the RadWorksheetEditor`s ScaleFactor property. The default value for the width and the height of the ScaleFactor is 1.

C# Example 1: Zoom in

C#

    this.radSpreadsheet.ActiveWorksheetEditor.ScaleFactor = new Size(2, 2);

C# Example 1: Zoom out

C#

    this.radSpreadsheet.ActiveWorksheetEditor.ScaleFactor = new Size(0.5, 0.5);
In this article
Using UIProgrammatically
Not finding the help you need?
Contact Support