New to Telerik UI for WPF? Download free 30-day trial

How to Resize Shape Below 15 Pixels

Environment

Product Version 2019.2.618
Product RadDiagram for WPF

Description

How to resize RadDiagramShape below the minimum size of 15px.

Solution

Set the DiagramConstants.MinimumShapeSize and DiagramConstants.MinimumAdornerSize properties.

public MainWindow() 
{ 
    DiagramConstants.MinimumAdornerSize = 3; 
    DiagramConstants.MinimumShapeSize = 3; 
 
    InitializeComponent(); 
} 
In this article