Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
<script setup lang="ts">
import { Stimulsoft } from "stimulsoft-dashboards-js-vuejs";
var report = new Stimulsoft.Report.StiReport();
report.loadFile("Dashboards/Dashboard.mrt");
function printPdf_Click() { report.printToPdf(); }
function printHtml_Click() { report.print(); }
</script>
<template>
<button @click="printPdf_Click">Print PDF</button>
<button @click="printHtml_Click">Print HTML</button>
</template>report.printToPdf() — render and print the dashboard through the PDF print path.report.print() — print via the HTML path; both open the browser print dialog.