How to Activate the Product
Our sample projects and report templates can help you learn the basics of working with our products.By default Dashboards.JS runs in trial mode with a watermark; registering your license key removes it.
In Vue.
How it works. The license is registered before any component is created, so every dashboard renders without the trial watermark.
In Vue.
<script setup lang="ts">
import { Viewer, Stimulsoft } from 'stimulsoft-dashboards-js-vuejs/viewer'
// Register your license from JavaScript code
// Stimulsoft.Base.StiLicense.key = "6vJhGtLLLz2GNviWmUTrhSqnO...";
// Stimulsoft.Base.StiLicense.loadFromFile("stimulsoft.key");
var report = new Stimulsoft.Report.StiReport();
report.loadFile("Dashboards/Dashboard.mrt");
</script>
<template>
<Viewer :report="report" />
</template>StiLicense.key = "..."— set the key string directly.StiLicense.loadFromFile("stimulsoft.key")— or load it from a key file; either removes the trial banner.
How it works. The license is registered before any component is created, so every dashboard renders without the trial watermark.