Jump to content
We've recently updated our Privacy Statement, available here ×

iamwoodyjones

Members
  • Posts

    107
  • Joined

  • Last visited

 Content Type 

Profiles

Forum

Events

Featured Visualizations

Knowledge Base

Documentation (PDF Downloads)

Blog

Documentation (Test Area)

Documentation

Dr. Jaspersoft Webinar Series

Downloads

Everything posted by iamwoodyjones

  1. I typically use conditional styles to do everything from alternating row coloring as such: <conditionalStyle> <conditionExpression><![CDATA[$V{REPORT_COUNT}%2 == 0]]></conditionExpression> <style mode="Transparent" backcolor="#EEEEEE"/> </conditionalStyle> As well as to highlight the rows of numbers that fall within a particular range. My problem, though, is that whenever I use the alternating row coloring I have to set things as opaque. ... <frame> <reportElement style="AlternatingRowColor" mode="Opaque" x="0" y="0" width="270" height="12"/> ... When all of my rows are set to opaque to use alternating colors and I set the background picture for a watermark the watermark will not show up because of the opaque. Is it possible to use background colors such as alternating styles with opaque and still get a watermark to show up? I also have the same issue with creating rectangles of background colors to highlight parts of my report. Again, I have to set the rectangle to opaque, otherwise the background color will not show and once I do that it obscures my watermark.
  2. To narrow down the problem I would try the following: * Switch your font and then see if it shows up in PDF * If it still doesn't then export to a different format and see if your font shows up then As for using a cusomizer class you just have to put the customizer as an attribute called cusomizerClass such as: <chart evaluationTime="Report" customizerClass="com.my.package.ChartCustomizer"> And then just ensure that the class is on your classpath
  3. Have you tried upgrading to POI 3.6 or 3.7 yet and seeing if you get the same error?
  4. Using 3.7.5 I set my JExcelApiExporter to use a set of sensible defaults such as: exporter.setParameter(JExcelApiExporterParameter.IS_ONE_PAGE_PER_SHEET, Boolean.FALSE); However, when I try to override my choice of sensible defaults in my reports like so: <property name="net.sf.jasperreports.export.xls.one.page.per.sheet" value="true"/> I cannot. I really would like to define what the sensible set of defaults per exporter is within my code but then selectivley override those defaults within my report when I want to. Is this possible? Post Edited by frankhassanabad at 10/29/2010 19:55 Post Edited by frankhassanabad at 10/29/2010 19:55
×
×
  • Create New...