Jasper reports to increase space between characters in pdf building -


can 1 please me increase space between characters while building pdf using jasper reports.

i tried build jasper reports using open office(third party library available @ https://code.google.com/p/indic-jasper/). every thing working fine except characters overlapping. can 1 please me solve characters overlapping increasing space between characters .

jrxml file ----------------------  <?xml version="1.0" encoding="utf-8"?> <jasperreport xmlns="http://jasperreports.sourceforge.net/jasperreports"     xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="report3" language="groovy" pagewidth="595" pageheight="842" columnwidth="555" leftmargin="20" rightmargin="20" topmargin="20" bottommargin="20"> <property name="ireport.zoom" value="1.0"/> <property name="ireport.x" value="0"/> <property name="ireport.y" value="0"/> <field name="file_id" class="java.lang.string"/> <field name="file_title" class="java.lang.string"/> <background>     <band splittype="stretch"/> </background> <title>     <band height="79" splittype="stretch"/> </title> <pageheader>     <band height="35" splittype="stretch"/> </pageheader> <columnheader>     <band height="61" splittype="stretch"/> </columnheader> <detail>     <band height="125" splittype="stretch">         <textfield>             <reportelement positiontype="float" x="0" y="1" width="555" height="54"/>             <textelement>                 <font fontname="gautami"/>             </textelement>             <textfieldexpression class="java.lang.string"><![cdata[$f{file_id}]]>    </textfieldexpression>         </textfield>         <textfield>             <reportelement x="0" y="74" width="555" height="51"/>             <textelement>                 <font fontname="eenadu"/>             </textelement>             <textfieldexpression class="java.lang.string"><![cdata[$f{file_title}]]></textfieldexpression>         </textfield>     </band> </detail> <columnfooter>     <band height="45" splittype="stretch"/> </columnfooter> <pagefooter>     <band height="54" splittype="stretch"/> </pagefooter> <summary>     <band height="42" splittype="stretch"/> </summary> </jasperreport> 


Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -