Application hanging when generating multiple charts using JasperReports2019 Community Moderator ElectionHow to create multiple charts of same type but with different dataseries using JRBeanCollectionDatasource in JasperreportsJava Generics Wildcarding With Multiple ClassesHow to place a JasperReport chart on JFrame?Problem with charting using JasperReportJasperReport Pie Chart ExampleJasperreports time series charthow to output different two chart in jasperreport?jasperreports bar charts calculationChart localization in JasperReports1. Field not found : descriptionjasper report with spring empty pdf
How to simplify this time periods definition interface?
2D counterpart of std::array in C++17
Why doesn't using two cd commands in bash script execute the second command?
Welcoming 2019 Pi day: How to draw the letter π?
How do I hide Chekhov's Gun?
What is this large pipe coming out of my roof?
Provisioning profile doesn't include the application-identifier and keychain-access-groups entitlements
Instead of Universal Basic Income, why not Universal Basic NEEDS?
Why do passenger jet manufacturers design their planes with stall prevention systems?
Calculus II Professor will not accept my correct integral evaluation that uses a different method, should I bring this up further?
Identifying the interval from A♭ to D♯
Dot in front of file
What are the possible solutions of the given equation?
Define, (actually define) the "stability" and "energy" of a compound
What are some nice/clever ways to introduce the tonic's dominant seventh chord?
How do I interpret this "sky cover" chart?
Why did it take so long to abandon sail after steamships were demonstrated?
Why are there 40 737 Max planes in flight when they have been grounded as not airworthy?
Why do Australian milk farmers need to protest supermarkets' milk price?
Could the Saturn V actually have launched astronauts around Venus?
Does splitting a potentially monolithic application into several smaller ones help prevent bugs?
How can I change step-down my variable input voltage? [Microcontroller]
Ban on all campaign finance?
How is the Swiss post e-voting system supposed to work, and how was it wrong?
Application hanging when generating multiple charts using JasperReports
2019 Community Moderator ElectionHow to create multiple charts of same type but with different dataseries using JRBeanCollectionDatasource in JasperreportsJava Generics Wildcarding With Multiple ClassesHow to place a JasperReport chart on JFrame?Problem with charting using JasperReportJasperReport Pie Chart ExampleJasperreports time series charthow to output different two chart in jasperreport?jasperreports bar charts calculationChart localization in JasperReports1. Field not found : descriptionjasper report with spring empty pdf
I'm trying to generate multiple charts using the approach described here:
How to create multiple charts of same type but with different dataseries using JRBeanCollectionDatasource in Jasperreports
I need to generate multiple charts in a report given a List<List<ChartBean<Double,Double>>
which is populated with the data I get from a file.
ChartBean is declared as follows:
public class ChartBean<T,U>
T xCoordinate;
U yCoordinate;
String series;
public ChartBean(T x,U y,String series)
this.xCoordinate = x;
this.yCoordinate = y;
this.series = series;
public void setxCoordinate(T x)
this.xCoordinate = x;
public void setyCoordinate(U y)
this.yCoordinate = y;
public T getxCoordinate()
return xCoordinate;
public U getyCoordinate()
return yCoordinate;
public String setseries()
return series;
public String getseries()
return series;
I pass the parameters to the template generator in the following wayparameters.put("XYDataSource", values);
, where values contains the list of list of coordinates.
What I get is that my application hangs and does not generate any report. I checked multiple times the content of the XML and it seems in line with what is described in the post. I tried also to generate one chart (without using list of lists) and it works.
I have a top report whose summary band contains a sub report "sub_charts.xml".
In its detail band I put another subreport which contains the line chart and I use the "_THIS" field to pass the List<ChartBean<Double,Double>
The content of the subreports is reported here.
sub_charts.jrxml
<?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="subcharts_2" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="97e07501-37b1-4c04-970b-33f120c8264d">
<parameter name="REPORT_DIR" class="java.lang.String"/>
<field name="_THIS" class="java.util.List">
<fieldDescription><![CDATA[_THIS]]></fieldDescription>
</field>
<detail>
<band height="359">
<subreport>
<reportElement x="22" y="25" width="510" height="320" uuid="6ea2325b-969e-472a-9d49-d5c33667fab5"/>
<dataSourceExpression><![CDATA[new net.sf.jasperreports.engine.data.JRBeanCollectionDataSource($F_THIS)]]></dataSourceExpression>
<subreportExpression><![CDATA[$PREPORT_DIR+"/sub_chart.jasper"]]></subreportExpression>
</subreport>
</band>
</detail>
sub_chart.jrxml
<?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="subchart_2" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="6cdd6eb2-73da-4026-823b-574910e37c68">
<field name="series" class="java.lang.String"/>
<field name="xCoordinate" class="java.lang.Double"/>
<field name="yCoordinate" class="java.lang.Double"/>
<summary>
<band height="270">
<property name="com.jaspersoft.studio.layout" value="com.jaspersoft.studio.editor.layout.VerticalRowLayout"/>
<xyLineChart>
<chart evaluationTime="Report">
<reportElement isPrintRepeatedValues="false" x="0" y="0" width="555" height="270" uuid="4bfd2379-7617-47fb-9c2a-4eeb0b72eadf"/>
<chartTitle/>
<chartSubtitle/>
<chartLegend/>
</chart>
<xyDataset>
<xySeries autoSort="true">
<seriesExpression><![CDATA[$Fseries]]></seriesExpression>
<xValueExpression><![CDATA[$FxCoordinate]]></xValueExpression>
<yValueExpression><![CDATA[$FyCoordinate]]></yValueExpression>
</xySeries>
</xyDataset>
<linePlot>
<plot/>
<categoryAxisFormat>
<axisFormat labelColor="#000000" tickLabelColor="#000000" axisLineColor="#000000"/>
</categoryAxisFormat>
<valueAxisFormat>
<axisFormat labelColor="#000000" tickLabelColor="#000000" axisLineColor="#000000"/>
</valueAxisFormat>
</linePlot>
</xyLineChart>
</band>
</summary>
java jasper-reports
add a comment |
I'm trying to generate multiple charts using the approach described here:
How to create multiple charts of same type but with different dataseries using JRBeanCollectionDatasource in Jasperreports
I need to generate multiple charts in a report given a List<List<ChartBean<Double,Double>>
which is populated with the data I get from a file.
ChartBean is declared as follows:
public class ChartBean<T,U>
T xCoordinate;
U yCoordinate;
String series;
public ChartBean(T x,U y,String series)
this.xCoordinate = x;
this.yCoordinate = y;
this.series = series;
public void setxCoordinate(T x)
this.xCoordinate = x;
public void setyCoordinate(U y)
this.yCoordinate = y;
public T getxCoordinate()
return xCoordinate;
public U getyCoordinate()
return yCoordinate;
public String setseries()
return series;
public String getseries()
return series;
I pass the parameters to the template generator in the following wayparameters.put("XYDataSource", values);
, where values contains the list of list of coordinates.
What I get is that my application hangs and does not generate any report. I checked multiple times the content of the XML and it seems in line with what is described in the post. I tried also to generate one chart (without using list of lists) and it works.
I have a top report whose summary band contains a sub report "sub_charts.xml".
In its detail band I put another subreport which contains the line chart and I use the "_THIS" field to pass the List<ChartBean<Double,Double>
The content of the subreports is reported here.
sub_charts.jrxml
<?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="subcharts_2" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="97e07501-37b1-4c04-970b-33f120c8264d">
<parameter name="REPORT_DIR" class="java.lang.String"/>
<field name="_THIS" class="java.util.List">
<fieldDescription><![CDATA[_THIS]]></fieldDescription>
</field>
<detail>
<band height="359">
<subreport>
<reportElement x="22" y="25" width="510" height="320" uuid="6ea2325b-969e-472a-9d49-d5c33667fab5"/>
<dataSourceExpression><![CDATA[new net.sf.jasperreports.engine.data.JRBeanCollectionDataSource($F_THIS)]]></dataSourceExpression>
<subreportExpression><![CDATA[$PREPORT_DIR+"/sub_chart.jasper"]]></subreportExpression>
</subreport>
</band>
</detail>
sub_chart.jrxml
<?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="subchart_2" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="6cdd6eb2-73da-4026-823b-574910e37c68">
<field name="series" class="java.lang.String"/>
<field name="xCoordinate" class="java.lang.Double"/>
<field name="yCoordinate" class="java.lang.Double"/>
<summary>
<band height="270">
<property name="com.jaspersoft.studio.layout" value="com.jaspersoft.studio.editor.layout.VerticalRowLayout"/>
<xyLineChart>
<chart evaluationTime="Report">
<reportElement isPrintRepeatedValues="false" x="0" y="0" width="555" height="270" uuid="4bfd2379-7617-47fb-9c2a-4eeb0b72eadf"/>
<chartTitle/>
<chartSubtitle/>
<chartLegend/>
</chart>
<xyDataset>
<xySeries autoSort="true">
<seriesExpression><![CDATA[$Fseries]]></seriesExpression>
<xValueExpression><![CDATA[$FxCoordinate]]></xValueExpression>
<yValueExpression><![CDATA[$FyCoordinate]]></yValueExpression>
</xySeries>
</xyDataset>
<linePlot>
<plot/>
<categoryAxisFormat>
<axisFormat labelColor="#000000" tickLabelColor="#000000" axisLineColor="#000000"/>
</categoryAxisFormat>
<valueAxisFormat>
<axisFormat labelColor="#000000" tickLabelColor="#000000" axisLineColor="#000000"/>
</valueAxisFormat>
</linePlot>
</xyLineChart>
</band>
</summary>
java jasper-reports
What I get is that my application hangs and does not generate any report.
- Did you try to debug?
– Alex K
Mar 7 at 19:47
I tried to debug in many ways. I checked that the lists are iterated correctly in the subreports. I also tried to put a text field in the subchart which prints out the coordinates. In this case I can see in the report all the coordinates of my plots. The issue happens when I add the chart object and I really don't know what I'm doing wrong.
– fran_f
Mar 8 at 11:24
add a comment |
I'm trying to generate multiple charts using the approach described here:
How to create multiple charts of same type but with different dataseries using JRBeanCollectionDatasource in Jasperreports
I need to generate multiple charts in a report given a List<List<ChartBean<Double,Double>>
which is populated with the data I get from a file.
ChartBean is declared as follows:
public class ChartBean<T,U>
T xCoordinate;
U yCoordinate;
String series;
public ChartBean(T x,U y,String series)
this.xCoordinate = x;
this.yCoordinate = y;
this.series = series;
public void setxCoordinate(T x)
this.xCoordinate = x;
public void setyCoordinate(U y)
this.yCoordinate = y;
public T getxCoordinate()
return xCoordinate;
public U getyCoordinate()
return yCoordinate;
public String setseries()
return series;
public String getseries()
return series;
I pass the parameters to the template generator in the following wayparameters.put("XYDataSource", values);
, where values contains the list of list of coordinates.
What I get is that my application hangs and does not generate any report. I checked multiple times the content of the XML and it seems in line with what is described in the post. I tried also to generate one chart (without using list of lists) and it works.
I have a top report whose summary band contains a sub report "sub_charts.xml".
In its detail band I put another subreport which contains the line chart and I use the "_THIS" field to pass the List<ChartBean<Double,Double>
The content of the subreports is reported here.
sub_charts.jrxml
<?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="subcharts_2" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="97e07501-37b1-4c04-970b-33f120c8264d">
<parameter name="REPORT_DIR" class="java.lang.String"/>
<field name="_THIS" class="java.util.List">
<fieldDescription><![CDATA[_THIS]]></fieldDescription>
</field>
<detail>
<band height="359">
<subreport>
<reportElement x="22" y="25" width="510" height="320" uuid="6ea2325b-969e-472a-9d49-d5c33667fab5"/>
<dataSourceExpression><![CDATA[new net.sf.jasperreports.engine.data.JRBeanCollectionDataSource($F_THIS)]]></dataSourceExpression>
<subreportExpression><![CDATA[$PREPORT_DIR+"/sub_chart.jasper"]]></subreportExpression>
</subreport>
</band>
</detail>
sub_chart.jrxml
<?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="subchart_2" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="6cdd6eb2-73da-4026-823b-574910e37c68">
<field name="series" class="java.lang.String"/>
<field name="xCoordinate" class="java.lang.Double"/>
<field name="yCoordinate" class="java.lang.Double"/>
<summary>
<band height="270">
<property name="com.jaspersoft.studio.layout" value="com.jaspersoft.studio.editor.layout.VerticalRowLayout"/>
<xyLineChart>
<chart evaluationTime="Report">
<reportElement isPrintRepeatedValues="false" x="0" y="0" width="555" height="270" uuid="4bfd2379-7617-47fb-9c2a-4eeb0b72eadf"/>
<chartTitle/>
<chartSubtitle/>
<chartLegend/>
</chart>
<xyDataset>
<xySeries autoSort="true">
<seriesExpression><![CDATA[$Fseries]]></seriesExpression>
<xValueExpression><![CDATA[$FxCoordinate]]></xValueExpression>
<yValueExpression><![CDATA[$FyCoordinate]]></yValueExpression>
</xySeries>
</xyDataset>
<linePlot>
<plot/>
<categoryAxisFormat>
<axisFormat labelColor="#000000" tickLabelColor="#000000" axisLineColor="#000000"/>
</categoryAxisFormat>
<valueAxisFormat>
<axisFormat labelColor="#000000" tickLabelColor="#000000" axisLineColor="#000000"/>
</valueAxisFormat>
</linePlot>
</xyLineChart>
</band>
</summary>
java jasper-reports
I'm trying to generate multiple charts using the approach described here:
How to create multiple charts of same type but with different dataseries using JRBeanCollectionDatasource in Jasperreports
I need to generate multiple charts in a report given a List<List<ChartBean<Double,Double>>
which is populated with the data I get from a file.
ChartBean is declared as follows:
public class ChartBean<T,U>
T xCoordinate;
U yCoordinate;
String series;
public ChartBean(T x,U y,String series)
this.xCoordinate = x;
this.yCoordinate = y;
this.series = series;
public void setxCoordinate(T x)
this.xCoordinate = x;
public void setyCoordinate(U y)
this.yCoordinate = y;
public T getxCoordinate()
return xCoordinate;
public U getyCoordinate()
return yCoordinate;
public String setseries()
return series;
public String getseries()
return series;
I pass the parameters to the template generator in the following wayparameters.put("XYDataSource", values);
, where values contains the list of list of coordinates.
What I get is that my application hangs and does not generate any report. I checked multiple times the content of the XML and it seems in line with what is described in the post. I tried also to generate one chart (without using list of lists) and it works.
I have a top report whose summary band contains a sub report "sub_charts.xml".
In its detail band I put another subreport which contains the line chart and I use the "_THIS" field to pass the List<ChartBean<Double,Double>
The content of the subreports is reported here.
sub_charts.jrxml
<?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="subcharts_2" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="97e07501-37b1-4c04-970b-33f120c8264d">
<parameter name="REPORT_DIR" class="java.lang.String"/>
<field name="_THIS" class="java.util.List">
<fieldDescription><![CDATA[_THIS]]></fieldDescription>
</field>
<detail>
<band height="359">
<subreport>
<reportElement x="22" y="25" width="510" height="320" uuid="6ea2325b-969e-472a-9d49-d5c33667fab5"/>
<dataSourceExpression><![CDATA[new net.sf.jasperreports.engine.data.JRBeanCollectionDataSource($F_THIS)]]></dataSourceExpression>
<subreportExpression><![CDATA[$PREPORT_DIR+"/sub_chart.jasper"]]></subreportExpression>
</subreport>
</band>
</detail>
sub_chart.jrxml
<?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="subchart_2" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="6cdd6eb2-73da-4026-823b-574910e37c68">
<field name="series" class="java.lang.String"/>
<field name="xCoordinate" class="java.lang.Double"/>
<field name="yCoordinate" class="java.lang.Double"/>
<summary>
<band height="270">
<property name="com.jaspersoft.studio.layout" value="com.jaspersoft.studio.editor.layout.VerticalRowLayout"/>
<xyLineChart>
<chart evaluationTime="Report">
<reportElement isPrintRepeatedValues="false" x="0" y="0" width="555" height="270" uuid="4bfd2379-7617-47fb-9c2a-4eeb0b72eadf"/>
<chartTitle/>
<chartSubtitle/>
<chartLegend/>
</chart>
<xyDataset>
<xySeries autoSort="true">
<seriesExpression><![CDATA[$Fseries]]></seriesExpression>
<xValueExpression><![CDATA[$FxCoordinate]]></xValueExpression>
<yValueExpression><![CDATA[$FyCoordinate]]></yValueExpression>
</xySeries>
</xyDataset>
<linePlot>
<plot/>
<categoryAxisFormat>
<axisFormat labelColor="#000000" tickLabelColor="#000000" axisLineColor="#000000"/>
</categoryAxisFormat>
<valueAxisFormat>
<axisFormat labelColor="#000000" tickLabelColor="#000000" axisLineColor="#000000"/>
</valueAxisFormat>
</linePlot>
</xyLineChart>
</band>
</summary>
java jasper-reports
java jasper-reports
edited Mar 7 at 19:49
Alex K
18.6k1480166
18.6k1480166
asked Mar 7 at 12:35
fran_ffran_f
265
265
What I get is that my application hangs and does not generate any report.
- Did you try to debug?
– Alex K
Mar 7 at 19:47
I tried to debug in many ways. I checked that the lists are iterated correctly in the subreports. I also tried to put a text field in the subchart which prints out the coordinates. In this case I can see in the report all the coordinates of my plots. The issue happens when I add the chart object and I really don't know what I'm doing wrong.
– fran_f
Mar 8 at 11:24
add a comment |
What I get is that my application hangs and does not generate any report.
- Did you try to debug?
– Alex K
Mar 7 at 19:47
I tried to debug in many ways. I checked that the lists are iterated correctly in the subreports. I also tried to put a text field in the subchart which prints out the coordinates. In this case I can see in the report all the coordinates of my plots. The issue happens when I add the chart object and I really don't know what I'm doing wrong.
– fran_f
Mar 8 at 11:24
What I get is that my application hangs and does not generate any report.
- Did you try to debug?– Alex K
Mar 7 at 19:47
What I get is that my application hangs and does not generate any report.
- Did you try to debug?– Alex K
Mar 7 at 19:47
I tried to debug in many ways. I checked that the lists are iterated correctly in the subreports. I also tried to put a text field in the subchart which prints out the coordinates. In this case I can see in the report all the coordinates of my plots. The issue happens when I add the chart object and I really don't know what I'm doing wrong.
– fran_f
Mar 8 at 11:24
I tried to debug in many ways. I checked that the lists are iterated correctly in the subreports. I also tried to put a text field in the subchart which prints out the coordinates. In this case I can see in the report all the coordinates of my plots. The issue happens when I add the chart object and I really don't know what I'm doing wrong.
– fran_f
Mar 8 at 11:24
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55043955%2fapplication-hanging-when-generating-multiple-charts-using-jasperreports%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55043955%2fapplication-hanging-when-generating-multiple-charts-using-jasperreports%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What I get is that my application hangs and does not generate any report.
- Did you try to debug?– Alex K
Mar 7 at 19:47
I tried to debug in many ways. I checked that the lists are iterated correctly in the subreports. I also tried to put a text field in the subchart which prints out the coordinates. In this case I can see in the report all the coordinates of my plots. The issue happens when I add the chart object and I really don't know what I'm doing wrong.
– fran_f
Mar 8 at 11:24