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

Mapping POJO in JasperStudio [BEGINNER]


miljan.puletic

Recommended Posts

Hi all, 

Trying to make adjustments in Jaspersof Studio, so I can display ArrayLis<Report> in Bar Char diagram

My Java Report object looks like this:

public class Report {        private String movie;    private int projections;    private int tickets;    private double income;        public Report(String movie, int projections, int tickets, double income) {        super();        this.movie = movie;        this.projections = projections;        this.tickets = tickets;        this.income = income;    }}[/code]

Now, I have watched several YouTube tutorials where it is explained which .jar to place in Tomacat's lib folder, that we need to use compiled .jrxml file etc. I sort of get the bigger picture. But I don't know what exact adjustments to make in Bar Chart Wizard to achive what I have posted in the attachment. I don't know how to actually map entire list of object Report(s) so they are display as on the attachment bellow.

Link to comment
Share on other sites

  • Replies 0
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...