Hi,
When adding items to the xamDiagramToolbox, some of the titles are too long. Is there a way to get the columns to resize to show the full title of the shapes?
Hello David,
By default the width of the DiagramToolBoxCategoryItem is set to 120. You can override this setting by applying the following style and either setting the width to NaN or the desired width that is enough to fit your item's label:
<Style TargetType="ig:DiagramToolBoxCategoryItem"> <Setter Property="Width" Value="NaN"/> <Setter Property="Height" Value="60"/> </Style>
Let me know if you need further assistance.
Philip