0

ここで必要なのは、最初のページの特定の x レコード数の棒グラフ、次のページの次の x レコード数などです。私はこれをたくさん検索しましたが、正確な解決策は見つかりませんでした。Jasper Reportsでも可能ですか

4

1 に答える 1

2

これは、レポート グループを使用して行うことができます。

レポートを iReport で開きます。

 1:-Open report and in Report inspector right click and select "Add Report Group"

 2:-Give any name  (eg. splitter) and 
    select "Group by the following expression" and enter
           $V{REPORT_COUNT} - 1 - ( ($V{REPORT_COUNT} - 1) % 3 ). 
  (here 3 means 3 bars in a page)

 Click next and select  Add the group footer.

 3:- Open palette and drag and drop a chart element from the Palette into 
     the report designer on the group footer band. 

 4:- Select Bar Chart, follow the wizard: 
     a:- "Reset type" = Group

     b:- "Reset group" = splitter
               (same name what you gave at the time of Report data set creation)

     c:- add series in Details tab.

チャートを見る

ここに画像の説明を入力

于 2013-03-12T06:04:38.127 に答える