VB 中的服务器报告渲染字体大小错误?
我正在使用服务器报告,其中 我正在 VB.net 中使用 reportviewer.serverreport.render 渲染成 PDF 文档。
奇怪的是,当我这样做时,与设计器中或在网络浏览器中查看报告时相比,图表中的文本非常小。
有谁知道为什么会这样?
I am using a server report, which
I am rendering in VB.net using reportviewer.serverreport.render into a PDF document.
Strangely, when i do this the text in my graphs is really small compared to in the designer or when I view the report in a web browser.
Does anyone know why this could be?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我设法解决了这个问题。
对于遇到此问题的其他人,我所做的就是将 DeviceInfo 字符串设置为 Nothing ("")。
我需要它设置,因为我也渲染为 emf (TIFF),所以现在我只是在两个渲染之间设置 DeviceInfo。
I managed to sort this out.
For anyone else with this problem, all I did to fix it was set the DeviceInfo string to Nothing ("").
I needed it set as I was also rendering to emf (TIFF) as well, so now I am just setting the DeviceInfo between the two renders.