Zooming and Panning in WPF Charts (SfChart)

5 Dec 202216 minutes to read

SfChart allows you to zoom the chart area with the help of the zoom feature. This behavior is mostly used to view the data point in the specific area, when there are a number of data points inside the chart.

Zooming and panning provides you to take a close-up look of the data point plotted in the series

Enable Zooming and Panning

You can create an instance ChartZoomPanBehavior and add it to the Behaviors collection.

<syncfusion:SfChart.Behaviors>

<syncfusion:ChartZoomPanBehavior >                                             

</syncfusion:ChartZoomPanBehavior>

</syncfusion:SfChart.Behaviors>
ChartZoomPanBehavior zooming = new ChartZoomPanBehavior();

chart.Behaviors.Add(zooming);

Zooming the ChartArea

Zooming by setting ZoomFactor and ZoomPosition

ZoomFactor defines the percentage of visible range from the total range of axis values. ZoomPosition defines the ranges of values that need to be displayed as a result of ZoomFactor.

The following code example demonstrates the zooming the chart axis by setting zoom position and zoom factor.

<syncfusion:SfChart.PrimaryAxis>

<syncfusion:CategoryAxis 

ShowGridLines="False"

ZoomFactor="0.3" ZoomPosition="0.1" />

</syncfusion:SfChart.PrimaryAxis>
chart.PrimaryAxis = new CategoryAxis()
{

    ShowGridLines = false,

    ZoomFactor = 0.1,

    ZoomPosition = 0.3

};

Zooming support in WPF Chart

Mouse Wheel Zooming

Zooming can be performed by mouse wheel action by setting EnableMouseWheelZooming property to true.

<syncfusion:SfChart.Behaviors>

<syncfusion:ChartZoomPanBehavior EnableMouseWheelZooming="True" >                                              

</syncfusion:ChartZoomPanBehavior>

</syncfusion:SfChart.Behaviors>
ChartZoomPanBehavior zooming = new ChartZoomPanBehavior()
{

    EnableMouseWheelZooming = true

};

chart.Behaviors.Add(zooming);

Pinch Zooming

If you want to zoom using fingers by touch, then you have to set EnablePinchZooming property to true as shown in the below code snippet.

<syncfusion:SfChart.Behaviors>

<syncfusion:ChartZoomPanBehavior EnablePinchZooming="True" >                                              

</syncfusion:ChartZoomPanBehavior>

</syncfusion:SfChart.Behaviors>
ChartZoomPanBehavior zooming = new ChartZoomPanBehavior()
{

    EnablePinchZooming = true

};

chart.Behaviors.Add(zooming);

Zooming Relative to Cursor

To enable the zooming relative to cursor position you can set ZoomRelativeToCursor property to true. This support is applicable only for mouse wheel zooming.

<syncfusion:SfChart.Behaviors>

<syncfusion:ChartZoomPanBehavior ZoomRelativeToCursor="True" >                                              

</syncfusion:ChartZoomPanBehavior>

</syncfusion:SfChart.Behaviors>
ChartZoomPanBehavior zooming = new ChartZoomPanBehavior()
{

    ZoomRelativeToCursor = true

};

chart.Behaviors.Add(zooming);

SelectionZooming

SelectionZooming helps us to zoom a particular area by selecting the region using rectangle.To enable the selection ,you have to set EnableSelectionZooming property to true.

The following code snippet demonstrated selection zooming.

<syncfusion:SfChart.Behaviors>

<syncfusion:ChartZoomPanBehavior EnableSelectionZooming="True" >                                              

</syncfusion:ChartZoomPanBehavior>

</syncfusion:SfChart.Behaviors>
ChartZoomPanBehavior zooming = new ChartZoomPanBehavior()
{

    EnableSelectionZooming = true

};

chart.Behaviors.Add(zooming);

Selection zooming support in WPF Chart

Customization of Selection Rectangle

Selection Rectangle can be customized by setting the following properties

  • Fill-Represents the brush filled in selection rectangle.
  • Stroke- Represents the outer line color of selection rectangle.
  • StrokeThickness- Represents the selection rectangle outer line thickness.

The following code example demonstrates the customization of selection rectangle

<syncfusion:SfChart.Behaviors>

<syncfusion:ChartZoomPanBehavior EnableSelectionZooming="True" 

Fill="LightBlue" Stroke="Blue" StrokeThickness="2" >                                              

</syncfusion:ChartZoomPanBehavior>

</syncfusion:SfChart.Behaviors>
ChartZoomPanBehavior zooming = new ChartZoomPanBehavior()
{

    EnableSelectionZooming = true,

    Fill = new SolidColorBrush(Colors.LightBlue),

    Stroke = new SolidColorBrush(Colors.Blue),

    StrokeThickness = 2

};

chart.Behaviors.Add(zooming);

Customizing selection rectangle support in WPF Chart

Zooming Mode

The zooming can be done both horizontally and vertically. The zooming direction is defined using ZoomMode property.

Zooming along X axis

<syncfusion:SfChart.Behaviors>

<syncfusion:ChartZoomPanBehavior EnableSelectionZooming="True" ZoomMode="X">                                              

</syncfusion:ChartZoomPanBehavior>

</syncfusion:SfChart.Behaviors>
ChartZoomPanBehavior zooming = new ChartZoomPanBehavior()
{

    EnableSelectionZooming = true,

    ZoomMode = ZoomMode.X

};

chart.Behaviors.Add(zooming);

Zoom mode support in WPF Chart

Zooming along Y axis

<syncfusion:SfChart.Behaviors>

<syncfusion:ChartZoomPanBehavior EnableSelectionZooming="True" ZoomMode="Y">                                              

</syncfusion:ChartZoomPanBehavior>

</syncfusion:SfChart.Behaviors>
ChartZoomPanBehavior zooming = new ChartZoomPanBehavior()
{

    EnableSelectionZooming = true,

    ZoomMode = ZoomMode.Y

};

chart.Behaviors.Add(zooming);

Zoom mode support in WPF Chart

Maximum Zoom Level

You can also limit the zooming by setting MaximumZoomLevel property as shown in the following code snippet.

<syncfusion:SfChart.Behaviors>

<syncfusion:ChartZoomPanBehavior EnableSelectionZooming="True" MaximumZoomLevel="100">                                              

</syncfusion:ChartZoomPanBehavior>

</syncfusion:SfChart.Behaviors>
ChartZoomPanBehavior zooming = new ChartZoomPanBehavior()
{

    EnableSelectionZooming = true,

    MaximumZoomLevel = 100

};

chart.Behaviors.Add(zooming);

Zooming Toolbar

Zooming Toolbar encompassed with buttons for performing actions like Zoom In/Out, Reset, Pan, etc. You can add the zooming toolbar to the chart area by setting EnableZoomingToolBar property to True.

<syncfusion:SfChart.Behaviors>

<syncfusion:ChartZoomPanBehavior EnableZoomingToolBar="True">                                              

</syncfusion:ChartZoomPanBehavior>

</syncfusion:SfChart.Behaviors>
ChartZoomPanBehavior zooming = new ChartZoomPanBehavior()
{

    EnableZoomingToolBar = true

};

chart.Behaviors.Add(zooming);

The following image depicts the default view of the zooming toolbar.

Zooming toolbar in WPF Chart

Positioning the zooming toolbar

Zooming Toolbar can be positioned using the HorizontalPosition and VerticalPosition properties.The following code demonstrates the positioning of the toolbar.

<syncfusion:SfChart.Behaviors>

<syncfusion:ChartZoomPanBehavior EnableZoomingToolBar="True" HorizontalPosition="Left" VerticalPosition="Bottom">                                              

</syncfusion:ChartZoomPanBehavior>

</syncfusion:SfChart.Behaviors>
ChartZoomPanBehavior zooming = new ChartZoomPanBehavior()
{

    EnableZoomingToolBar = true,

    HorizontalPosition = HorizontalAlignment.Left,

    VerticalPosition = VerticalAlignment.Bottom

};

chart.Behaviors.Add(zooming);

Positioning the zooming toolbar in WPF Chart

Customization of Zooming Toolbar

Zooming Toolbar can be customized using the following APIs:

<syncfusion:SfChart.Behaviors>

<syncfusion:ChartZoomPanBehavior EnableZoomingToolBar="True" ToolBarItemHeight="20" 

ToolBarItemWidth="20" ToolBarBackground="AliceBlue" 

ToolBarItems="All" ToolBarItemMargin="2">                                              

</syncfusion:ChartZoomPanBehavior>

</syncfusion:SfChart.Behaviors>
ChartZoomPanBehavior zooming = new ChartZoomPanBehavior()
{

    EnableZoomingToolBar = true,

    ToolBarBackground = new SolidColorBrush(Colors.AliceBlue),

    ToolBarItemHeight = 20,

    ToolBarItemWidth = 20,

    ToolBarItemMargin = new Thickness(2),

    ToolBarItems = ZoomToolBarItems.All

};

chart.Behaviors.Add(zooming);

Customization of zooming toolbar in WPF Chart

Orientation of Zooming Toolbar

Zooming toolbar orientation is horizontal by default.You can change the orientation to vertical by setting

ToolBarOrientation property to Vertical.

<syncfusion:SfChart.Behaviors>

<syncfusion:ChartZoomPanBehavior EnableZoomingToolBar="True" 

ToolBarOrientation="Vertical">                                              

</syncfusion:ChartZoomPanBehavior>

</syncfusion:SfChart.Behaviors>
ChartZoomPanBehavior zooming = new ChartZoomPanBehavior()
{

    EnableZoomingToolBar = true,

    ToolBarOrientation = Orientation.Vertical

};

chart.Behaviors.Add(zooming);

Orientation of zooming toolbar in WPF Chart

Panning the ChartArea

Panning feature allows moving the visible area of the chart when it is zoomed in. To enable panning, you have to set EnablePanning property to true.

<syncfusion:SfChart.Behaviors>

<syncfusion:ChartZoomPanBehavior EnableMouseWheelZooming="True" EnablePanning="True">                                              

</syncfusion:ChartZoomPanBehavior>

</syncfusion:SfChart.Behaviors>
ChartZoomPanBehavior zooming = new ChartZoomPanBehavior()
{

    EnableMouseWheelZooming = true,

    EnablePanning = true
     
};

chart.Behaviors.Add(zooming);

The following image demonstrates the cursor panning in the left direction.

Panning support in WPF Chart

Resetting the Zooming/Panning

SfChart provides support to reset to the default view when you double tap the chart area by setting ResetOnDoubleTap property to true.

<syncfusion:SfChart.Behaviors>

<syncfusion:ChartZoomPanBehavior  ResetOnDoubleTap="True">                                              

</syncfusion:ChartZoomPanBehavior>

</syncfusion:SfChart.Behaviors>
ChartZoomPanBehavior zooming = new ChartZoomPanBehavior()
{

    ResetOnDoubleTap = true
     
};

chart.Behaviors.Add(zooming);

Events

The following events are available in SfChart for ChartZoomPanBehavior:

ZoomChanging

The ZoomChanging event occurs when users start zooming the chart. This is a cancelable event. This argument contains the following information.

  • Axis - Gets an instance of the axis whose range is changed through zooming. This event is triggered for each axis in the chart.
  • Cancel - Gets or Sets a value that indicates whether the zooming should be canceled.
  • CurrentFactor - Gets the current zoom factor of the axis.
  • CurrentPosition - Gets the current zoom position of the axis.
  • OldRange - Gets the old visible range of the axis.
  • PreviousFactor - Gets the previous zoom factor of the axis.
  • PreviousPosition - Gets the previous zoom position of the axis.

ZoomChanged

The ZoomChanged event occurs after the zooming has been completed. This argument contains the following information.

  • Axis - Gets an instance of the axis whose range is changed through zooming. This event is triggered for each axis in the chart.
  • CurrentFactor - Gets the current zoom factor of the axis.
  • CurrentPosition - Gets the current zoom position of the axis.
  • OldRange - Gets the old visible range of the axis.
  • NewRange - Gets the new visible range of the axis.
  • PreviousFactor - Gets the previous zoom factor of the axis.
  • PreviousPosition - Gets the previous zoom position of the axis.

SelectionZoomingStart

The SelectionZoomingStart event occurs when users start selection zooming. This argument contains the following information.

  • ZoomRect - Gets the initial bounds of the selected region.

SelectionZoomingEnd

The SelectionZoomingEnd event occurs after selection zooming ends. This argument contains the following information.

  • ZoomRect - Gets the final bounds of the selected region.

SelectionZoomingDelta

The SelectionZoomingDelta event occurs when selecting a region to be zoomed. This is a cancelable event. This argument contains the following information.

  • ZoomRect - Gets the final bounds of the selected region.
  • Cancel - Gets or Sets a value that indicates whether the selection zooming should be canceled.

PanChanging

The PanChanging event occurs when users start panning the chart. This is a cancelable event. This argument contains the following information:

  • Axis - Gets an instance of the axis whose range is changed while panning. This event is triggered for each axis in the chart.
  • Cancel - Gets or Sets a value that indicates whether the panning should be canceled.
  • NewZoomPosition - Gets a new zoom position of the axis.
  • OldZoomPosition - Gets the old zoom position of the axis.

PanChanged

The PanChanged event occurs when panning is completed. This argument contains the following information.

  • Axis - Gets an instance of the axis whose range is changed while panning. This event is triggered for each axis in the chart.
  • NewZoomPosition - Gets a new zoom position of the axis.

ResetZooming

The ResetZooming event occurs when resetting the chart on double tap. This is a cancelable event. This argument contains the following information.

  • Axis - Gets an instance of the axis whose range is changed when panning. This event is triggered for each axis in the chart.
  • Cancel - Gets or Sets a value that indicates whether the panning should be canceled.
  • PreviousZoomRange - Gets the previous visible range of the axis.

See also

How to improve performance while zooming by using scrollbar

How to set default zoom/pan position for charts

How to display the visible range of labels while zooming

How to reset zooming