Hello all,
I have successfully deployed a J2EE application (Stripes framework 1.5 ,jdk1.5) with Birt reports (2.5.1) and it is working absolutely fine. Now we need to customize the application such that the user will be given a choice to select the type of chart (Pie/Bar) , the Dimension(2D, 2D with depth and 3D) and changing the orientation to flip axis at runtime.
I am unable to do it through Java Code. Kindly assist me for the same. I dont even have the Birt 2.5.1 API Doc since it is not part of the package of eclipse galileo

Please reply with source code for changing chart properties runtime .
My working source code to generate Birt 2.5.1 report to java web app is
IReportEngine birtReportEngine = BirtEngine.getBirtEngine();
IReportRunnable design = null;
String reportPath==getContext().getServletContext().getRealPath("/reports")+ "/reportchart.rptdesign";
design = birtReportEngine.openReportDesign(reportPath);
IRunAndRenderTask task = birtReportEngine.createRunAndRenderTask(design);
IRenderOption options = new RenderOption();
options.setOutputFormat(outputFormat);
options.setOutputStream(reportOutput);
Map appContext = task.getAppContext();
appContext.put(EngineConstants.APPCONTEXT_CLASSLOADER_KEY,
GenerateReportActionBean.class.getClassLoader());
task.setAppContext(appContext);
task.setRenderOption(options);
task.run();
task.close();
Thanks in advance,
Kiran