ASPxDiagram.DefaultItemProperties Property
Provide access to default item properties.
Namespace: DevExpress.Web.ASPxDiagram
Assembly: DevExpress.Web.ASPxDiagram.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Description |
---|---|
DiagramDefaultItemProperties | An object that contains item properties. |
Remarks
Default property values are applied to newly created items if no other values are provided.
<dx:ASPxDiagram ID="Diagram" runat="server"
NodeDataSourceID="DepartmentDemoDataSource" OnNodeInserted="Diagram_NodeInserted">
<Mappings>
<Node Key="ID" Text="DepartmentName" ParentKey="ParentID" />
</Mappings>
<DefaultItemProperties
ConnectorLineEnd="None"
ConnectorLineStart="FilledTriangle"
ConnectorLineType="Straight"
Style="fill: #C0C0C0; stroke-width: 3"
TextStyle="fill: #ff0000;" />
</dx:ASPxDiagram>
See Also