Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
<script setup lang="ts">
import { Designer, Stimulsoft } from 'stimulsoft-reports-js-vuejs/designer'
var report = new Stimulsoft.Report.StiReport();
report.loadFile("Reports/CusomFontSimpleList.mrt");
// Adding Custom Font
Stimulsoft.Base.StiFontCollection.addFontFile('Fonts/LongCang-Regular.ttf');
var designerOptions = new Stimulsoft.Designer.StiDesignerOptions();
designerOptions.appearance.fullScreenMode = true;
</script>
<template>
<Designer :report="report" :options="designerOptions" />
</template>StiFontCollection.addFontFile makes the font available for rendering and export across all reports, without embedding it into a specific template.