在 MOSS 中打印甘特图

发布于 2024-08-08 18:31:36 字数 113 浏览 9 评论 0原文

有谁有提示、第三方组件或其他任何可以帮助我打印在 MOSS 2007 中创建的甘特图的东西。当我尝试打印它时,IE 只打印网页的一部分,而不是全部甘特图。

感谢您的帮助 !

拉斐尔

Does anyone have a tip, a third-party component or anything else that would help me print a gantt chart created in MOSS 2007. When I try to print it, IE only prints part of the web page, but not all the Gantt chart.

Thanks for your help !

Raphaël

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

因为看清所以看轻 2024-08-15 18:31:36

不确定这是否有效,因为此修复是为了允许使用页面查看器 Web 部件进行打印,但请尝试将以下内容添加到自定义 css 文件或包含在内容编辑器 Web 部件上。

@media print
{
.ms-leftareacell{
display:block;
}
.ms-rightareacell, .ms-titleareaframe{
display:none;
}
.ms-nav{
display:none;
width:0px;
}
.ms-bodyareacell{
left:0px;
margin-left:0px;
float:none;
width:100%;
}
}

Not sure if this will work as this fix is for allowing printing with Page Viewer Web Part, but try adding the following to a custom css file or include on a Content Editor Web Part.

@media print
{
.ms-leftareacell{
display:block;
}
.ms-rightareacell, .ms-titleareaframe{
display:none;
}
.ms-nav{
display:none;
width:0px;
}
.ms-bodyareacell{
left:0px;
margin-left:0px;
float:none;
width:100%;
}
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文