Tuesday, 14 January 2014

pigGraph

http://jdevadf.oracle.com/adf-richclient-demo/docs/dvt/tagdoc/dvt_pieGraph.html

http://wesfang.wordpress.com/2014/01/13/solution-adf-faces-11-1-2-4-how-to-programmatically-build-a-dvtpiegraph-with-list-of-elements/?utm_source=dlvr.it&utm_medium=facebook

http://adfwithejb.blogspot.in/2013/01/programmatically-creation-of-bar-graph.html



//import
import oracle.adf.view.faces.bi.model.GraphDataModel;
//variales
private GraphDataModel pieGraphData;
//methods
String[] columnLabels = new String[3];
String[] seriesLabels = new String[3];
Object[][] data = new Object[1][3];
oracle.dss.dataView.LocalXMLDataSource ds = new oracle.dss.dataView.LocalXMLDataSource(columnLabels,seriesLabels,data);
pigGraphData = new oracle.adf.view.faces.bi.model.GraphDataModel();
pigGraphData.setDataSource(ds);

No comments:

Post a Comment