未找到 eye.candy.sixties?

发布于 2024-11-18 05:40:38 字数 243 浏览 3 评论 0原文

当我尝试运行报告时,出现以下异常:

未找到图表主题“eye.candy.sixties”。 net.sf.jasperreports.engine.JRRuntimeException:图表主题“eye.candy.sixties”未找到。

果然,我找不到jasper-4.0.2.jar<中任何地方定义的主题/代码>。我需要什么库才能获取默认的 ireport 图表主题?

When I try to run my report, I'm getting this exception:

Chart theme 'eye.candy.sixties' not found.
net.sf.jasperreports.engine.JRRuntimeException: Chart theme 'eye.candy.sixties' not found.

Sure enough, I couldn't find the theme defined anywhere in jasper-4.0.2.jar. What library do I need to get the default ireport chart themes?

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

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

发布评论

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

评论(3

尘曦 2024-11-25 05:40:38

我在 Web 应用程序中使用“爱琴海”主题的图表时遇到了这个问题。
我复制了 jasperreports-chart-themes-4.xxjar 例如
jasperreports-server-cp-4.0.0/ireport/ireport/modules/ext/jasperreports-chart-themes-4.0.0.jar
进入我的 WEB-INF/lib ,图表工作了。

I had this problem with charts using the 'aegean' theme in a web application.
I copied the jasperreports-chart-themes-4.x.x.jar eg
jasperreports-server-cp-4.0.0/ireport/ireport/modules/ext/jasperreports-chart-themes-4.0.0.jar
into my WEB-INF/lib and the charts worked.

深者入戏 2024-11-25 05:40:38
<dependency>
    <groupId>net.sf.jasperreports</groupId>
    <artifactId>jasperreports-chart-themes</artifactId>
    <version>${jasperReport.version}</version>
</dependency>

<dependency>
    <groupId>net.sf.jasperreports</groupId>
    <artifactId>jasperreports-fonts</artifactId>
    <version>${jasperReport.version}</version>
</dependency>
<dependency>
    <groupId>net.sf.jasperreports</groupId>
    <artifactId>jasperreports-chart-themes</artifactId>
    <version>${jasperReport.version}</version>
</dependency>

<dependency>
    <groupId>net.sf.jasperreports</groupId>
    <artifactId>jasperreports-fonts</artifactId>
    <version>${jasperReport.version}</version>
</dependency>
心凉怎暖 2024-11-25 05:40:38

您必须手动构建一个项目和一个包含主题的 jar。似乎没有一个简单的库可以包含在内。

You would have to build a project and a jar with the themes manually. There doesn't seem to be an easy library you could just include.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文