If you’ve added KendoReact components to your React project and noticed a watermark, it means you’re using a paid component without activating a license. Don’t worry — Telerik provides a 30-day free trial license so you can explore all premium components with full functionality and a clean UI.
This post will guide you through the simple steps to activate the license and get rid of the watermark.
Why You Need to Activate the License
KendoReact has two tiers:
- Free tier – 50+ free components.
- Paid tier – 120+ premium components (requires a license).
If you use a paid component without activating a license, you’ll see a watermark. Activating the trial license gives you 30 days of full premium access.
Steps to Activate the 30-Day Trial License Key
1. Log in to Your Telerik Account
- Go to Telerik Account.
- If you don’t have one, create a free account.
2. Start Your Free Trial
- In your Telerik account, go to Your Licenses.
- There, you will see the License Keys section.
3. Download Your License Key
- Click on 'Download License Key' button.
- The downloaded file will be named
telerik-license.txt
. - Place it in your project’s root folder (where
package.json
is located).
Alternatively, you can copy the license key’s contents into an environment variable named TELERIK_LICENSE
.
4. Install the Licensing Package
In your project, install the licensing package:
npm install @progress/kendo-licensing
(or)
yarn add @progress/kendo-licensing
5. Activate the License
Run the activation command in your project root:
npx kendo-ui-license activate
(or)
yarn run kendo-ui-license activate
6. Verify Activation
- Restart your dev server.
- The watermark should now be gone.
- If issues persist, try cleaning your project by running:
rm -rf node_modules package-lock.json
npm install
Then re-run the activation command.
Final Thoughts
By following these steps, you’ll:
- Remove the trial watermark.
- Unlock all KendoReact premium components for 30 days.
- Give your project a more professional and polished UI.
👉 Official documentation: Activate KendoReact License
Happy coding! 🚀
Top comments (1)
An other way is to set it directly into vercel .env when the app has been deployed.