aspnet-devexpress-dot-web-dot-aspxdiagram-dot-diagramnodemappinginfo-6086347c.md
Specifies the name of a data source field that provides the URL of a shape’s image.
Namespace : DevExpress.Web.ASPxDiagram
Assembly : DevExpress.Web.ASPxDiagram.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue("")]
public string ImageUrl { get; set; }
<DefaultValue("")>
Public Property ImageUrl As String
| Type | Default | Description |
|---|---|---|
| String | String.Empty |
The field name.
|
This property is in effect for nodes of the “CardWithImageOnLeft”, “CardWithImageOnTop”, or “CardWithImageOnRight” type.
Tip
Use the ImageUrl property to customize the image of a node after it is bound to a data source (in the NodeDataBound event).
<dx:ASPxDiagram ID="Diagram" runat="server" Width="100%" Height="700px"
NodeDataSourceID="OrgItemDemoDataSource" EdgeDataSourceID="OrgLinkDemoDataSource">
<Mappings>
<Node Key="ID" Text="Text" Type="Type" ImageUrl="Picture" />
<Edge Key="ID" FromKey="FromID" ToKey="ToID" />
</Mappings>
</dx:ASPxDiagram>
See Also