Getting Started with the KendoReact Diagram
Premium

Updated on Apr 2, 2026

This guide provides essential information about using the KendoReact Diagram package—you will learn how to install the package, add a Diagram to your project, style the component, and activate your license.

ninja-iconThe Diagram is part of KendoReact premium, an enterprise-grade UI library with 120+ free and premium components for building polished, performant apps. Test-drive all features with a free 30-day trial.Start Free Trial

After completing this guide, you will have a React Diagram with shapes, connections, and a layout up and running.

Change Theme
Theme
Loading ...

Before You Begin

sh
npm create vite@latest my-app -- --template react

This guide requires that you have basic knowledge of React and TypeScript, and that you have already created a blank React project.

You can speed up the development of your KendoReact application with the Kendo UI Template Wizard for Visual Studio Code.

Install the Component

sh
npm i @progress/kendo-react-diagram

Import the Component

After installing the Diagram package, import the component and the required types in your App component file (for example, src/App.tsx).

tsx
// ES2015 module syntax
import { Diagram } from '@progress/kendo-react-diagram';

Use the Component

  1. Add the Diagram component to the App component file of your React project (for example, src/App.tsx).

    tsx
    return <Diagram shapes={shapes} connections={connections} layout={{ type: 'tree' }} style={{ height: 500 }} />;
  2. Define the shapes to display in the diagram.

    tsx
    const shapes: ShapeOptions[] = [
        { id: 'shape1', content: { text: 'Start' } },
        { id: 'shape2', content: { text: 'Process' } },
        { id: 'shape3', content: { text: 'End' } }
    ];
  3. Define the connections between the shapes.

    tsx
    const connections: ConnectionOptions[] = [
        { from: 'shape1', to: 'shape2' },
        { from: 'shape2', to: 'shape3' }
    ];
  4. Navigate to http://localhost:5173 to see the KendoReact Diagram component on the page.

Style the Components

To use the built-in styling of the components, install a theme:

sh
npm i @progress/kendo-theme-default

With the import "@progress/kendo-theme-default/dist/all.css"; statement present in your code, you already have professionally designed styling applied to your app out-of-box. You can also try any of the other available Kendo UI Themes.

Activating Your License Key

Important: The KendoReact Diagram requires a license key file to be installed in your project. This applies to both trial and commercial usage:

Without a valid license key file, the component will display licensing warnings and watermarks.

Follow the instructions on the KendoReact My License page to download and install your license key file. You can skip this step if your application already contains a KendoReact license file.

KendoReact Diagram Dependencies

The Diagram package requires you to install the following peer dependencies in your application:

Package NameDescription
react 18.0.0*Contains the functionality necessary to define React components
react-domContains the React renderer for the web
@progress/kendo-licensingContains the internal infrastructure related to licensing
@progress/kendo-react-commonContains common utilities that enhance the performance and functionalities of the KendoReact UI components
@progress/kendo-diagram-commonContains the common Diagram logic shared across KendoReact frameworks