自定义 Jasper 报告甘特图上的日期

发布于 2024-12-10 02:11:52 字数 157 浏览 0 评论 0原文

在我的报告的甘特图中,我有 1 年的数据。我只对查看甘特图顶部打印的月份感兴趣。 [一月至十二月]。但是,该图表当前显示月份和年份。我如何自定义图表以仅输出月份?

在此处输入图像描述

In the gantt chart on my reports I have 1 year's worth of data. I'm only interested in seeing the month printed at the top of the gantt chart. [Jan-Dec]. However, the graph currently displays the Month and the year. How would I customize the chart to just output the month?

enter image description here

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

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

发布评论

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

评论(1

萌化 2024-12-17 02:11:52

我不确定JasperReports,但是createGanttChart() 使用 DateAxis 作为范围轴。像这样的东西应该有效:

DateAxis axis = (DateAxis) plot.getRangeAxis();
axis.setTickUnit(new DateTickUnit(
    DateTickUnit.MONTH, 1, new SimpleDateFormat("MMM-yyyy")));

I'm not sure about JasperReports, but createGanttChart() uses a DateAxis as the range axis. Something like this should work:

DateAxis axis = (DateAxis) plot.getRangeAxis();
axis.setTickUnit(new DateTickUnit(
    DateTickUnit.MONTH, 1, new SimpleDateFormat("MMM-yyyy")));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文