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.

The Drawing Component is part of Kendo UI for Vue, a professional grade UI library with 100+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.

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