| [news.eclipse.birt] Re: How to access the underlying chart object in a report design |
Jason,
Thank you for the response.
Stuart.
Stuart,
Try
ReportDesignHandle rdh =(ReportDesignHandle) design.getDesignHandle( );
ExtendedItemHandle chart = (ExtendedItemHandle) rdh.findElement("mychart" ); IReportItem item = chart.getReportItem();
Chart cm = (Chart)item.getProperty("chart.instance");
Jason