Skip to main content
All docs
V25.1
  • DiagramCustomShape.ImageWidth Property

    Specifies the width of the image in the shape.

    Namespace: DevExpress.Web.ASPxDiagram

    Assembly: DevExpress.Web.ASPxDiagram.v25.1.dll

    NuGet Package: DevExpress.Web

    Declaration

    [DefaultValue(typeof(decimal), "1")]
    public decimal ImageWidth { get; set; }

    Property Value

    Type Default Description
    Decimal "1"

    A decimal number from 0 to 1.

    Remarks

    The DefaultImageUrl property specifies the URL of an image displayed inside the shape. Use the ImageWidth property to specify the ratio of the image’s width to the shape’s width. If the ImageWidth option is set to 1, the image width is then equal to the shape width.

    Note

    The ImageWidth property is not in effect if the BaseType property is specified.

    <dx:DiagramCustomShape Type="Rounded Rectangle" BackgroundImageUrl="../Content/images/shapes/roundedRect.svg" 
      DefaultWidth="2" DefaultHeight="1" 
      DefaultImageUrl="../Content/images/photo.png" 
      ImageHeight="0.8" ImageWidth="0.3" ImageTop="0.1" ImageLeft="0.1"
      DefaultText ="Employee" TextLeft="0.4" TextWidth="0.6" />
    

    The image below shows the result:

    Custom Shape Text

    See Also