Use your license key to remove Wijmo's evaluation watermark. This can be done in three simple steps:
If you are importing Wijmo using a module loader, call setLicenseKey on the core Wijmo module:
import * as wjcCore from '@grapecity/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.