Getting Started with the KendoReact Tooltips
This guide provides essential information about using the KendoReact Tooltips package—you will learn how to install the package and add a free Tooltip to your project, style the components, and activate your license. The steps demonstrated in this guide are applicable to all KendoReact Tooltips.
These are Free React TooltipsThe KendoReact Tooltips are free to use, including in production—no sign-up or license required. Check out all 120+ free and premium UI components in the enterprise-grade KendoReact library.After completing this guide, you will be able to reproduce the following example.
Before You Begin
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
npm i @progress/kendo-react-tooltip @progress/kendo-theme-default
Run these commands in the root of your React project to install the KendoReact Tooltip package and its dependencies, and the Kendo UI Default theme.
Import the Component
After installing the Tooltips npm package, import the desired components in the React App. This guide shows how to add the Tooltip.
In the App component file of your React project (for example, src/App.tsx
), add the following code:
// ES2015 module syntax
import { Tooltip } from '@progress/kendo-react-tooltip';
// CommonJS format
const { Tooltip } = require('@progress/kendo-react-tooltip');
Use the Component
-
After installing the Tooltips package and importing the components, add a Button and the Tooltip tags to the App component file of your React project (for example,
src/App.js
).tsx<Tooltip anchorElement="target" position="bottom"> <Button title="Saves the current document">Save</Button> </Tooltip>
-
Build and run the application by typing the following command in the root folder of your project:
shnpm start
-
Navigate to http://localhost:3000 to see the KendoReact Tooltip component on the page.
Style the Components
Are you looking for guidance around how to create visually appealing and consistent user interfaces with Telerik UI components? Check out the Progress Design System.
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.
Next Steps
Now try to add another component from the Tooltips package yourself. The procedures for installing, importing, and using the tooltip components are identical for all components in the package.
The Tooltips package provides the following free React components:
KendoReact Tooltip APIs
KendoReact Tooltip Dependencies
The Tooltips package requires you to install the following peer dependencies in your application:
Package Name | Description |
---|---|
react 16.8.2* | Contains the functionality necessary to define React components. |
react-dom | Contains the React renderer for the web. |
@progress/kendo-react-popup | Contains positioning logic for the Popover component |
@progress/kendo-licensing | Contains the internal infrastructure related to licensing. |
@progress/kendo-svg-icons | Contains the KendoReact SVG icons. |
@progress/kendo-react-common | Contains common utilities that enhance the performance and functionalities of the KendoReact UI components. |