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

deepa197

Members
  • Posts

    4
  • Joined

  • Last visited

deepa197's Achievements

Rookie

Rookie (2/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Conversation Starter Rare

Recent Badges

0

Reputation

  1. Hi, I have created the below JFreeChart customizer class to create a break apart 3D Pie chart (Exploded 3D Pie Chart). This is not breaking apart the slices in Pie Chart :-( import java.awt.Color;import net.sf.jasperreports.engine.JRChart;import net.sf.jasperreports.engine.JRChartCustomizer;import org.jfree.chart.JFreeChart;import org.jfree.chart.plot.PiePlot3D; public class PieChartCustomizer implements JRChartCustomizer{ public void customize(JFreeChart chart, JRChart jasperChart) { PiePlot3D plot = (PiePlot3D) chart.getPlot();PieDataset pieDataSet = plot.getDataset();Comparable key = null;Iterator iterator = pieDataSet.getKeys().iterator(); while (iterator.hasNext()) { key = (Comparable) iterator.next(); } plot.setExplodePercent(key, 0.25); }} Does this mean that this method is not working for PiePlot3D ? Please have a look into it.
  2. Hi, I am a newbie to Jaspersoft using Jaspersoft Studio 5.5.0 community edition to generate jrxml file. Can any one please help me to find a solution to the below problem ? Suppose the query result set is as below : region state state_pct region_pct New England CT 1.12 4.48 New England ME 0.75 4.48 New England MA 1.87 4.48 New England NH 0.37 4.48 New England VT 0.37 4.48 Mid Atlantic NJ 2.24 10.45 Mid Atlantic NY 3.36 10.45 Mid Atlantic PA 4.85 10.45 East North Central IL 4.48 17.54 East North Central IN 3.73 17.54 East North Central MI 2.24 17.54 East North Central OH 5.97 17.54 East North Central WI 1.12 17.54 Require the above region % and State % to be overlayed on an image which is nothing but a Map by region. How to achieve this in Jaspersoft Studio 5.5.0 ? Please... Its really urgent !! Thanks in advance !
  3. Hi, I am new to Jasper Reports. We are using jasper server ad hoc editor to create reports. We are in urgent need of creating a dynamic report as follows: For e.g., our table in database contains fields as follows: Company_idSales_amtEmp_countYear_estC345550052002C122315632001C778960062005C4890800121999 I would like to create a report as below: Sales RangeNo. of Companies100-1500100-3001200-5501200+3600+1 Sales ranges will be given as input at the time of report execution.Sales ranges will be as per end-user's wish.Maximum no.of input ranges can't be predicted.Can we create such reports in Jasper Server Ad Hoc editor? If yes, please guide me on how to create such reports? Please note that I am not using iReport Designer to create the reports. Please help. It’s urgent.
  4. Hi, I am new to Jasper Reports. We are using jasper server ad hoc editor to create reports. We are in urgent need of creating a dynamic report as follows: For e.g., our table in database contains fields as follows: companyid salesamt empcount yearest C3455 500 5 2002 C1223 156 3 2001 C7789 600 6 2005 C4890 800 12 1999 I would like to create a report as below: SalesRange No.ofCompanies 100-150 0 100-300 1 200-550 1 100-600 2 600-➕ 1 Sales ranges will be given as input at the time of report execution. Sales ranges will be as per end-user's wish. Maximum no.of input ranges can't be predicted. Can we create such reports in Jasper Server Ad Hoc editor? If yes, please guide me on how to create such reports? Please note that I am not using iReport Designer to create the reports. Please help. Its urgent.
×
×
  • Create New...