我想隐藏excel报告中的一些列以供将来参考。 请建议我隐藏专栏。
答案 0 :(得分:2)
Alex K的评论是正确的。以下是如何应用它:
for location in self.locations {
let pointAnnotation = AMKPointAnnotation(location: location)
self.MapView.addAnnotation(pointAnnotation)
}
,如下所示:reportElement
<reportElement x="0" y="0" width="100" height="15">
<property name="net.sf.jasperreports.export.xls.cell.hidden" value="true"/>
</reportElement>
属性值在您创建的报告中会有所不同。