2008-09-05 39 views

回答

1

當然。最終圖像來自某種網址。在網頁上查看查看源並查看該網址的外觀。通過一定量的反向工程,使用System.Web.UI.HtmlTextWriter,也許是一個HttpHandler等,你應該能夠得到你想要的。

0

使用ChartControl對象的ExportToImage方法。這是WinForm的代碼,但相同的概念應WebChartControl成立:

Dim chart As ChartControl = ChartControl1.Clone() 
    chart.Size = New Size(800, 600) 
    chart.ExportToImage("file.png", System.Drawing.Imaging.ImageFormat.Png) 
1

從一個開發者快速圖表控件輸出圖像的最佳解決方案( web)是:

((IChartContainer)[Your web chart control]).Chart.ExportToImage([Your file name], ImageFormat.Png); 
相關問題