DiagramCustomShape.ImageWidth Property
In This Article
Specifies the width of the image in the shape.
Namespace: DevExpress.Web.ASPxDiagram
Assembly: DevExpress.Web.ASPxDiagram.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
#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 Image
<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:
See Also