我正在尝试使用crystal reports
中的vs2010
来显示图表,但chart
未显示在浏览器中。它看起来像下面的截图。
ReportDocument rptDoc = new ReportDocument();
dsSample ds = new dsSample();
DataTable dt = new DataTable();
dt.TableName = "Crystal Report Example";
dt = getAllOrders();
ds.Tables[0].Merge(dt);
rptDoc.Load(Server.MapPath("graphReport.rpt"));
谢谢!
答案 0 :(得分:0)
在这里,您需要配置web.config文件,以使Crystal报表处理您的图表和图像。在web.config文件中添加以下设置
-----在<system.web>
部分添加
<httpHandlers>
<add verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
</httpHandlers>
这将处理水晶报告中的图像和图表
祝您好运......