Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个图表,它是根据一些数据构建的。
有些数据是空的,null,但它仍然显示在图表中。我只想显示那些数据,它有一些东西。
我会更好地告诉你:
因此,如您所见,有很多标签显示 0%。我想,他们不会表现出来。
我该如何管理它?
JasperReport 服务器图表显示您通过 SQL 查询从数据库中获取的任何数据。
所以你需要在 SQL 查询中添加 where 条件来获取你想在饼图中看到的数据。
情况将是这样的:-
Select * from Table_name Where value_column > 0
如果您使用 ireport,则应在图表中使用过滤器表达式。