New to Telerik UI for WPF? Start a free 30-day trial
How to Resize Shape Below 15 Pixels
Updated on Sep 15, 2025
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.
C#
public MainWindow()
{
DiagramConstants.MinimumAdornerSize = 3;
DiagramConstants.MinimumShapeSize = 3;
InitializeComponent();
}