レポート ビューのPortraitをLandscapeに変更したい。
私はこの方法を使用しました:
jasperPrint.setOrientation(OrientationEnum.LANDSCAPE);
しかし、それは機能しません。
レポート ビューのPortraitをLandscapeに変更したい。
私はこの方法を使用しました:
jasperPrint.setOrientation(OrientationEnum.LANDSCAPE);
しかし、それは機能しません。
i-report では、次のことを簡単に行うことができます。
レポート インスペクターの一番上の項目をクリックし、プロパティのプルダウンを使用して横向きに変更します。
コードでは、ここであなたがしなければならないことです
ポートレート (a4)
http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="report1" language="groovy" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20">
landscape
http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="report1" language="groovy" pageWidth="842" pageHeight="595" orientation="Landscape" columnWidth="802" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20">