打印图表(工具包)

时间:2014-10-02 06:20:53

标签: c# silverlight printing charts silverlight-toolkit

我希望能够使用silverlight-toolkit打印我制作的图表 该应用程序是用Silverlight 4编写的。
但是我不知道如何完成这件事 有人知道这是如何工作的或在某处有教程吗? 我一直在谷歌搜索我是否能找到一些东西,但我找不到任何对我有用的东西。

提前致谢。

编辑:
点击打印按钮后,我正在使用以下代码,但没有任何结果:

Chart chartToPrint; // The element to be printed
PrintDocument doc = new PrintDocument(); // Create the PrintDocument  object that will do the printing
doc.PrintPage += (s, args) =>
{
  // Set the chart that needs to be printed.
  // As soon as this is set, printing starts
  args.PageVisual = chartToPrint;
}

编辑:
我尝试过的事情:
http://gergelyorosz.com/2010/05/printing-in-silverlight-printing-charts-and-auto-scaling/
http://kb.yworks.com/article507.html
http://www.visiblox.com/blog/2010/05/advanced-printing-in-silverlight-printing-charts-and-auto-scaling
http://msdn.microsoft.com/en-us/library/system.drawing.printing.pagesettings.landscape(v=vs.110).aspx
printing an image in landscape orientation?
http://msdn.microsoft.com/en-us/magazine/hh148152.aspx

1 个答案:

答案 0 :(得分:1)

查看此网站:http://kb.yworks.com/article507.html。希望这对你有所帮助!