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.
Start Free TrialInstalling the Package
To add the Kendo UI Drawing package, run the following command:
sh
npm install --save @progress/kendo-drawing
Using the Package
-
After successfully installing the Drawing, import the necessary types from the package, for example:
shimport { Text, geometry } from '@progress/drawing';
-
You can use them in your code:
jsconst { Point } = geometry;
Dependencies
The Kendo UI Drawing package has no external dependencies.