彩票走势图

【Stimulsoft Reports.Net教程】自定义查看器

翻译|使用教程|编辑:王香|2018-09-29 10:14:44.000|阅读 341 次

概述:本文主要介绍了Stimulsoft报表中如何使用组件属性自定义Web查看器,可以更改查看器元素的颜色,隐藏隐藏不必要的按钮或菜单项,设置控件的默认状态,更改Web查看器的某些行为。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

【下载Stimulsoft Reports.Net最新版本】

此示例项目演示了如何使用组件属性自定义Web查看器。您可以更改查看器元素的颜色,隐藏隐藏不必要的按钮或菜单项,设置控件的默认状态,更改Web查看器的某些行为。例如,设置Web查看器控件的默认宽度和heihgt,将默认工具栏颜色更改为LightGray,将默认报表缩放设置为150%并隐藏一些报表导出。

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Customize_the_Viewer.Default" %>
<%@ Register assembly="Stimulsoft.Report.Web" namespace="Stimulsoft.Report.Web" tagprefix="cc1" %>
 
<!DOCTYPE html>
 
<html xmlns="//www.w3.org/1999/xhtml">
<head runat="server">
    <title>Customize the Viewer</title>
</head>
<body>
    <form id="form1" runat="server">
        <cc1:StiWebViewer ID="StiWebViewer1" runat="server"
            Width="1000px" Height="800px"
            Theme="Office2013LightGrayPurple"
            ScrollBarsMode="true" ZoomPercent="150" ToolbarDisplayMode="Separated"
            ShowExportToBmp="false" ShowExportToPcx="false" ShowExportToSvg="false" ShowExportToSvgz="false"
            ShowExportToPng="false" ShowExportToGif="false" ShowExportToSylk="false" ShowExportToMetafile="false" 
            ShowExportToJpeg="false" ShowExportToTiff="false" ShowExportToDif="false" ShowExportToDbf="false" 
            ShowExportToCsv="false" ShowExportToXml="false" ShowPrintButton="false"
            OnGetReport="StiWebViewer1_GetReport" />
    </form>
</body>
</html>

要显示报表,您应添加OnGetReport事件,您需要在该事件中加载报表模板文件,并在需要时注册数据。

protected void Page_Load(object sender, EventArgs e)
{
 
}
 
protected void StiWebViewer1_GetReport(object sender, Stimulsoft.Report.Web.StiReportDataEventArgs e)
{
    string reportPath = Server.MapPath("Reports/SimpleList.mrt");
    StiReport report = new StiReport();
    report.Load(reportPath);
 
    string dataPath = Server.MapPath("Data/Demo.xml");
    DataSet data = new DataSet();
    data.ReadXml(dataPath);
    report.RegData(data);
 
    e.Report = report;
}

示例代码的结果如下图所示:

Stimulsoft

购买Stimulsoft正版授权,请点击“”哟!

FastReport2018.4


标签:报表解决方案报表.NET报表控件报表设计stimulsoft report .netStimulsoft

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP