This Example shows you how to create a 3D bar chart in jsp page using JFreeChart. Code given below creates a bar chart of scores of two teams in matches.
In the code given below we have extended class ApplicationFrame to create a frame and also pass a string value to the constructor of ApplicationFrame class by using super keyword that will be name of the created frame.
Methods used in this example are described below:
pack(): This method invokes the layout manager.
centerFrameOnScreen(): This method is used for the position of the frame in the middle of the screen.
setVisible(): This method is used for display frame on the screen.
createCategoryDataset(): This method is used to create the instance of CategoryDataset Interface and that contains a copy of the data in an array.
saveChartAsPNG(): This method is used to save chart in to png format.
jsp3Dbarchart.jsp
Methods used in this example are described below:
pack(): This method invokes the layout manager.
centerFrameOnScreen(): This method is used for the position of the frame in the middle of the screen.
setVisible(): This method is used for display frame on the screen.
createCategoryDataset(): This method is used to create the instance of CategoryDataset Interface and that contains a copy of the data in an array.
saveChartAsPNG(): This method is used to save chart in to png format.
jsp3Dbarchart.jsp
<%@page contentType="text/html" pageEncoding="UTF-8"%> final File file1 = new File("../webapps/jspchart/web/3dbarchart.png"); |
HI Sir ,
ReplyDeleteYour Blog So much help.to me but i hve faced a problem.that i want change x-axes values how can change.