我可以获得 Developer Express WebChartControl 的图像输出吗?
我的网页上有一个 WebChartControl。 生成图表时,会生成图像并将其显示在页面上。
有没有办法在运行时获取此图表并将其保存为图像输出?
I have a WebChartControl on my web page. When the chart was generated, an image is being produced and it was shown on the page.
Is there a way to get and save this chart as an image output on runtime?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
当然。 最终图像来自某种 URL。 在网页上查看源代码并查看该 URL 的外观。 通过一定量的逆向工程、使用 System.Web.UI.HtmlTextWriter、也许是 HttpHandler 等,您应该能够得到您想要的东西。
Sure. Ultimately the image comes from a URL of some sort. Do a view-source on the web page and see what that URL looks like. With a certain amount of reverse-engineering, usage of System.Web.UI.HtmlTextWriter, perhaps an HttpHandler, etc. you should be able to get what you want.
从 Developer Express 图表控件 (Web) 导出图像的最佳解决方案是:
The best solution for exporting an image from a Developer Express chart control (web) is:
使用 ChartControl 对象的 ExportToImage 方法。这是 WinForm 代码,但同样的概念也适用于 WebChartControl:
Use the ExportToImage method of the ChartControl object .. This is WinForm code, but the same concept should hold true for WebChartControl: