Jump to content

zh3ntil

Members
  • Posts

    122
  • Joined

  • Last visited

 Content Type 

Forum

Downloads

Featured Visualizations

Knowledge Base

Documentation (PDF Downloads)

Blog

Documentation (Test Area)

Documentation

Dr. Jaspersoft Webinar Series

Security Advisories

Events

Profiles

Posts posted by zh3ntil

  1. As far as I know there is no way to do that on editor.Because it processes what is coming from your query as result.But you can achieve that by editing your query. you can add a cross join a table, which holds the month's names, in your query.

  2. If your main dataset result doesn't fill any field on main report, you can use a query like 'select 1 as field' just to be sure the dataset returns at least a row. Because if your dataset returns no result, your report shows no data section. So, If your main dataset returns a dummy result like that just a row, your detail section runs just one time.  

  3. It collapses the band if the element if the element is not printing and no other element is occupying the same veritcal or horizontal space. In your case there are elements which are occupying the same vertical space.

    You have to make subreport for each earnings' and deductions' sections to achieve that.

  4. Actually ı tried it first and see it is working. Are you sure output is null when add the before " chars?

    "=HYPERLINK(CONCATENATE("http://somedomain.com/script/blahblah.blah?v1=MOD00&v2=_&first_gr=",$F{TRN},"&last_gr=",$F{TRN},"&time=",CONCATENATE(TEXT(HOUR(NOW()),"00"),TEXT(MINUTE(NOW()),"00"),TEXT(SECOND(NOW()),"00")),"&list=0,SNL,_,_,_,all,_,_,_,_,_,",$F{TRN},",_,_,_,_,_,P1&posRepMag=&posRepMin="),"TRACK")"[/code]

     

  5. Try to add the keys below in advance options on the chart options.

    plotOptions.series.dataLabels.enabled: true
    plotOptions.series.dataLabels.format: "{y} %"
     
     
    jaspersoft use highcharts for HTML5 charts. You can find more advanced options if you checkout the highcharts api. 

     

  6. Jasper Query:                                                                            SQL Query:

    where $X{BETWEEN,column_name,param1,param2} -----> where column_name>param1 and column_name<param2

    where $X{[bETWEEN,column_name,param1,param2} -----> where column_name>=param1 and column_name<param2

    where $X{BETWEEN],column_name,param1,param2} -----> where column_name>param1 and column_name<=param2

    where $X{[bETWEEN],column_name,param1,param2} -----> where column_name>=param1 and column_name<=param2

  7. You can create this report and chart easily by using adhoc-designer on jasper report server. Add the fields at rows and columns, select crosstab, right click date field and select quarter under the group by section. But If you have to use studio, you can do this with crosstab component

×
×
  • Create New...