agentsclimarketplace

Syncfusion aspnetcore diagram

Skill syncfusion/aspnetcore-ui-components-skills/skills/syncfusion-aspnetcore-diagram

This repository contains AI Skills of ASPNET Core UI Components

Install
npx -y skills add syncfusion/aspnetcore-ui-components-skills --skill syncfusion-aspnetcore-diagram

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Implement Syncfusion ASP.NET Core Diagram component (EJ2 Tag Helper `ejs-diagram`) for building interactive diagrams in Razor Pages or MVC applications. Use this skill when working with org charts, flowcharts, BPMN process diagrams, UML diagrams, or swimlane charts. This skill covers node and connector configuration, layout options, shape styling, data binding, drawing tools, export/print functionality, and other diagram features.

SKILL.md

8.4 KB, as published. Nobody here has run it

⚠️ STRICT USAGE RULES — MANDATORY FOR ALL CODE GENERATION

These rules are non-negotiable and must be followed for every code generation request.

Rule A — Use Only Provided Reference Files

  1. Always read references/getting-started.md for every request
  2. Read additional reference files only if they match the user's query (see Navigation Guide below)
  3. No external knowledge allowed:
    • ❌ Do NOT use internet documentation
    • ❌ Do NOT use training-data assumptions about Syncfusion APIs
    • ❌ Do NOT reference older EJ1 APIs or non-Tag Helper syntax
    • ✅ If a feature cannot be confirmed from reference files, apply Rule B

Rule B — No Guessing, No Inference

If a feature, property, API, or behavior is not explicitly documented in the reference files:

You must NOT:

  • Invent class properties, subclasses, or constructor overloads
  • Infer JavaScript callback signatures or method names
  • Assume module injections exist beyond those documented
  • Generalize from other Syncfusion components
  • Use deprecated or undocumented shape types

Instead, respond with:

⚠️ NOT DOCUMENTED: [feature name] is not covered in the reference files.
Skipping this feature to avoid generating incorrect code.

Rule C — Enforce Required Module Injections

Before generating code for these features, always include the corresponding injection:

FeatureRequired Injection
BPMN diagramsej.diagrams.Diagram.Inject(ej.diagrams.BpmnDiagrams)
Export / Printej.diagrams.Diagram.Inject(ej.diagrams.PrintAndExport)
Mind Map layoutej.diagrams.Diagram.Inject(ej.diagrams.MindMap)
Complex Hierarchical layoutej.diagrams.Diagram.Inject(ej.diagrams.ComplexHierarchicalTree)

Do NOT assume any other injections exist unless confirmed in reference files.


Navigation Guide

Use this table to identify which reference file to read (Rule A).
Always read references/getting-started.md first, then read only files relevant to the request.

Reference FileRead When the Query Involves
📄 getting-started.mdEvery request — NuGet setup, tag helper registration, CDN, first diagram
📄 nodes.mdCreating/styling nodes, offsetX/Y, width/height, gradients, shadow, expand/collapse, getNodeDefaults
📄 connectors.mdLines (Straight/Orthogonal/Bezier), arrows, routing, sourceID/targetID, segments, getConnectorDefaults
📄 labels-and-annotations.mdText labels, font, alignment, hyperlinks
📄 ports.mdConnection points, port positioning, constraints
📄 shapes-and-styles.mdFlow/Basic/Path/Image/HTML/Native shapes, fill, stroke, gradient, opacity
📄 bpmn-diagrams.mdBPMN events, gateways, activities, data objects
📄 uml-diagrams.mdUML class/sequence/activity diagrams, classifiers, relationships
📄 layouts.mdHierarchical, org chart, mind map, radial, symmetric layouts, getLayoutInfo
📄 swimlanes.mdSwimlane structure, lanes, phases, palette integration
📄 groups-and-containers.mdGrouping nodes, Canvas/Stack containers
📄 symbol-palette.mdejs-symbolpalette, palettes, drag-and-drop, tooltips
📄 data-binding.mdDataManager, dataSourceSettings, id/parentId mapping, setNodeTemplate, CRUD
📄 interaction-and-tools.mdSelection, drag/resize/rotate, drawing tools, constraints, undo/redo
📄 serialization-and-export.mdsaveDiagram/loadDiagram, export, print
📄 diagram-settings.mdLayers, virtualization, grid, ruler, scroll, page settings, tooltip

Quick Start

1. Install NuGet Package

Install-Package Syncfusion.EJ2.AspNet.Core

2. Register Tag Helper (~/Pages/_ViewImports.cshtml)

@addTagHelper *, Syncfusion.EJ2

3. Add CDN Resources (~/Pages/Shared/_Layout.cshtml)

<head>
    <link rel="stylesheet" href="https://cdn.syncfusion.com/ej2/{{ site.ej2version }}/fluent.css" />
    <script src="https://cdn.syncfusion.com/ej2/{{ site.ej2version }}/dist/ej2.min.js"></script>
</head>
<body>
    ...
    <ejs-scripts></ejs-scripts>
</body>

4. Add Diagram to Razor Page (~/Pages/Index.cshtml)

<ejs-diagram id="diagram" width="100%" height="550px"
    nodes="@ViewBag.nodes"
    connectors="@ViewBag.connectors"
    getNodeDefaults="@ViewBag.getNodeDefaults"
    getConnectorDefaults="@ViewBag.getConnectorDefaults">
</ejs-diagram>

5. PageModel / Controller

public IActionResult OnGet()
{
    List<DiagramNode> nodes = new List<DiagramNode>
    {
        new DiagramNode { Id = "node1", OffsetX = 100, OffsetY = 100, Width = 100, Height = 60,
            Annotations = new List<DiagramNodeAnnotation> {
                new DiagramNodeAnnotation { Content = "Start" }
            },
            Shape = new { type = "Flow", shape = "Terminator" }
        },
        new DiagramNode { Id = "node2", OffsetX = 300, OffsetY = 100, Width = 100, Height = 60,
            Annotations = new List<DiagramNodeAnnotation> {
                new DiagramNodeAnnotation { Content = "Process" }
            },
            Shape = new { type = "Flow", shape = "Process" }
        }
    };
    
    List<DiagramConnector> connectors = new List<DiagramConnector>
    {
        new DiagramConnector { Id = "conn1", SourceID = "node1", TargetID = "node2" }
    };
    
    ViewBag.nodes = nodes;
    ViewBag.connectors = connectors;
    ViewBag.getNodeDefaults = "getNodeDefaults";
    ViewBag.getConnectorDefaults = "getConnectorDefaults";
    return Page();
}
function getNodeDefaults(node) {
    node.height = 60;
    node.width = 120;
    return node;
}

function getConnectorDefaults(connector) {
    connector.type = 'Orthogonal';
    return connector;
}

Key C# Classes

ClassPurpose
DiagramNodeNode/shape element
DiagramConnectorConnection line between nodes
DiagramNodeAnnotationText label on a node
DiagramConnectorAnnotationText label on a connector
DiagramPortConnection point on a node
DiagramLayerLayer for organizing elements
DiagramPageSettingsPage size, orientation, background
BpmnShapesBPMN shape configuration
UmlClassifierShapeModelUML class diagram shape

Common Shape Types

Flow Shapes

Terminator, Process, Decision, Document, DirectData, MultiDocument, PreDefinedProcess, Delay, Annotation, ManualOperation, ManualInput, Card, Or, SummingJunction, Extract, Merge, Sort, OffPageReference

Usage:

Shape = new { type = "Flow", shape = "Process" }

Basic Shapes

Rectangle, Ellipse, Triangle, Pentagon, Hexagon, Heptagon, Octagon, Star, Cross, Diamond, CylindricalShape, Trapezoid, Parallelogram, Rhombus

Usage:

Shape = new { type = "Basic", shape = "Rectangle" }

When to Use This Skill

✅ Creating any diagram in ASP.NET Core (Razor Pages / MVC)
✅ Building flowcharts, org charts, network diagrams
✅ Implementing BPMN or UML diagrams
✅ Configuring node/connector shapes, styles, annotations
✅ Setting up automatic layouts
✅ Adding symbol palette for drag-and-drop
✅ Binding diagram data from database
✅ Exporting diagrams or printing
✅ Enabling drawing tools, undo/redo, layers

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.