This example shows how to add JSON data as resource to dashboard template. First, use getFile() method to load file. After that, use StiResource() method to add it to resource:
<script type="text/javascript">
	// Set full screen mode for the viewer
	var options = new Stimulsoft.Designer.StiDesignerOptions();
	options.appearance.fullScreenMode = true;

	// Create the dashboard designer with specified options
	var designer = new Stimulsoft.Designer.StiDesigner(options, "StiDesigner", false);

	var report = Stimulsoft.Report.StiReport.createNewDashboard();
	// Load json file
	var content = Stimulsoft.System.IO.File.getFile("../dashboard/Demo.json");

	// Add json data
	var resource = new Stimulsoft.Report.Dictionary.StiResource("DemoName", "DemoAlias", false, Stimulsoft.Report.Dictionary.StiResourceType.Json, content);
	report.dictionary.resources.add(resource);

	// Show dashboard in the Viewer
	designer.report = report;
</script>

На скриншоте ниже Вы можете увидеть результат выполнения данного кода:

Registering a JSON Data for the Dashboard Template

Используя этот сайт, вы соглашаетесь на использование файлов Cookie для аналитики и персонализированного контента. Файлы Cookie хранят полезную информацию на вашем компьютере, чтобы помочь нам повысить эффективность и удобство использования. Для получения дополнительной информации, пожалуйста, прочтите Конфиденциальность и Использование Cookie.