WEB页面打开Excel文件,
1、this.FpSpread1.OpenExcel(this.Server.MapPath("ExcelChartImport.xlsx"));
2、for (int c = 0; c < FpSpread1.ActiveSheetView.Charts.Count; c++)
{ FpSpread1.ActiveSheetView.Charts[c].PageIndex = 0; }3、在 webconfig 文件中,添加图表配置节点。 <httpHandlers> <add path="FpChart.axd" verb="*" type="FarPoint.Web.Chart.ChartImageHttpHandler" validate="true" > </httpHandlers>
Excel中的图表显示在第二行,第二列,在WEB页面如下图显示在最上面了,求解决方法!
|