Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
80
xamDiagramToolbox shape title too long - how to resize?
posted

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?

  • 995
    Verified Answer
    posted

    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