发布时间 : 2019-11-01 11:10:33.073|阅读 236 次
概述:本示例说明如何加载仪表板模板并在设计器中对其进行编辑。
相关链接:
Stimulsoft Dashboards.JS是一个功能齐全的工具,用于为JavaScript平台创建仪表板。要生成和查看仪表板,您需要任何支持HTML5和JavaScript的Web浏览器。当不需要服务器端时,它可以作为客户端工作,也可以在服务器端使用服务器端。该软件与Node.js完美兼容。
立即点击下载Stimulsoft Dashboards.JS最新版
本示例说明如何加载仪表板模板并在设计器中对其进行编辑。
<script type="text/javascript"> // Set full screen mode for the designer 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); // Create a new dashboard instance var report = Stimulsoft.Report.StiReport.createNewDashboard(); // Load dashboard from url report.loadFile("../dashboard/DashboardChristmas.mrt"); // Edit dashboard template in the designer designer.report = report; </script>
在下面的屏幕截图中,您可以看到示例代码的结果。