Getting Started with the Kendo UI Drawing
Premium

This guide provides the information you need to start using the Kendo UI Drawing—it includes instructions about the installation approach, how to import the required types, and links to additional resources.

ninja-iconThe Drawing 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

Installing the Package

To add the Kendo UI Drawing package, run the following command:

sh
npm install --save @progress/kendo-drawing

Using the Package

  1. After successfully installing the Drawing, import the necessary types from the package, for example:

    sh
    import { Text, geometry } from '@progress/drawing';
  2. You can use them in your code:

    js
    const { Point } = geometry;

Dependencies

The Kendo UI Drawing package has no external dependencies.

Next Steps