Skip to main content
All docs
V25.1
  • ASPxClientDiagram Class

    A client-side equivalent of the ASPxDiagram control.

    Declaration

    declare class ASPxClientDiagram extends ASPxClientControl

    Remarks

    The ASPxClientDiagram object is the client-side equivalent of the ASPxDiagram control.

    Diagram

    Use the ClientInstanceName property to programmatically access the client ASPxClientDiagram object.

    Example

    <script>
        var diagramData;
        function SaveDiagramData(s, e) {
            diagramData = diagram.Export();
        };
        function LoadDiagramData(s, e) {
            diagram.Import(diagramData);
        };
    </script>
    
    <dx:ASPxDiagram ID="ASPxDiagram1" runat="server" ClientInstanceName="diagram" />
    
    <dx:ASPxButton ID="btnSave" runat="server" Text="Save" AutoPostBack="False" ClientSideEvents-Click="SaveDiagramData" />
    <dx:ASPxButton ID="btnLoad" runat="server" Text="Load" AutoPostBack="False" ClientSideEvents-Click="LoadDiagramData" />
    

    Inheritance

    See Also