JAVA Chart
Hi, Today I explain you how to generate graphs report in Java JFreeChart is a free 100% Java chart library created by David Gilbert. JFreeChart makes it easy for developers to display professional quality charts in their applications. To download JFreeChart please check here Add this library to your project I explain here how to generate a Pie chart in java. Create a class called it Java_Test_Graphs package java_test_graphs; /** * * @author mahesh */ public class Java_Test_Graphs { /** * @param args the command line arguments */ public static void main(String[] args) { // TODO code application logic here Report_graphs objReport = new Report_graphs(); objReport.setSize(500, 350); objReport.setVisible(true); objReport.show(); } } Here Report_graphs is an another ja...