title | page_title | description | type | slug | position | tags | ticketid | res_type |
---|---|---|---|---|---|---|---|---|
How to Resize Shape Below 15 Pixels |
Change RadDiagramShape Minimum Size |
Use the DiagramConstants class to lower the minimum width and height of the RadDiagram shapes. |
how-to |
kb-diagram-change-shape-minimum-size |
0 |
minimum,size,15,diagram |
1428358 |
kb |
Product Version | 2019.2.618 |
Product | RadDiagram for WPF |
How to resize RadDiagramShape below the minimum size of 15px.
Set the DiagramConstants.MinimumShapeSize and DiagramConstants.MinimumAdornerSize properties.
{{region kb-diagram-change-shape-minimum-size-0}} public MainWindow() { DiagramConstants.MinimumAdornerSize = 3; DiagramConstants.MinimumShapeSize = 3;
InitializeComponent();
}
{{endregion}}