Getting Started with the Kendo UI Drawing

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.


Installing the Package

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

npm install --save @progress/kendo-drawing

Using the Package

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

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

    const { Point } = geometry;

Dependencies

The Kendo UI Drawing package has no external dependencies.

Next Steps