[]
        
(Showing Draft Content)

Licensing Wijmo Applications

Use your license key to remove Wijmo's evaluation watermark. This can be done in three simple steps:

  1. Purchase a copy of Wijmo and register your serial number on our site.

  2. Go to your account page and create a distribution licenseKey.

  3. Apply the distribution licenseKey to your application using Wijmo's setLicenseKey method as shown in the examples below.

If you are importing Wijmo using a module loader, call setLicenseKey on the core Wijmo module:

import * as wjcCore from '@mescius/wijmo';
wjcCore.setLicenseKey('your license key goes here...');

If you are loading Wijmo using script tags, call setLicenseKey as follows:

<!-- Wijmo references (required) -->
<script src="https://cdn.mescius.com/wijmo/5.20231.904/controls/wijmo.min.js"></script>
<link href="https://cdn.mescius.com/wijmo/5.20231.904/styles/wijmo.min.css" rel="stylesheet"/>

<!-- apply your Wijmo licenseKey -->
<script>
    wijmo.setLicenseKey(**'your license key goes here...'**);
</script>

That's all there is to it! Now you can deploy the application to any of the domains that you specified when creating the licenseKey.