Your search did not match any results.

Overview

DevExtreme ASP.NET MVC Diagram is a control that provides a visual interface to be used when you design new diagrams or modify existing ones. It includes more than 35 resizable shapes, which you can drag-and-drop onto a page. Shapes and connectors are highly customizable.

Backend API
@(Html.DevExtreme().Diagram().ID("diagram")) <script type="text/javascript"> $(function () { $.ajax({ url: "@Url.Content("~/Content/SampleData/diagram-flow.json")", dataType: "text", success: function(data) { $("#diagram").dxDiagram("instance").import(data); } }); }); </script>
using System.Web.Mvc; using DevExtreme.MVC.Demos.Models.SampleData; namespace DevExtreme.MVC.Demos.Controllers { public class DiagramController : Controller { public ActionResult Overview() { return View(); } } }
#diagram { height: 900px; }