When we click on a slice of a pie chart created using jfree chart it should redirect to another jsp showing the slice information on which i clicked

When we click on a slice of a pie chart created using jfree chart it should redirect to another jsp showing the slice information on which i clicked

Hi i have created a pie chart using jfree chart in jsp and its working fine.

Any one help me for the following scenario:

If we click on any slice of a pie chart it should redirect to another jsp showing that particular slice information.

the following is the code i used forcreating pie chart.

<%@page contentType="text/html" pageEncoding="UTF-8"%>

<%@ page import="java.awt.*" %> <%@ page import="java.io.*" %> <%@ page import="org.jfree.chart.*" %> <%@ page import="org.jfree.chart.entity.*" %> <%@ page import ="org.jfree.data.general.*"%> <% final DefaultPieDataset data = new DefaultPieDataset(); data.setValue("One", new Double(43.2)); data.setValue("Two", new Double(10.0)); data.setValue("Three", new Double(27.5)); data.setValue("Four", new Double(17.5)); data.setValue("Five", new Double(11.0)); data.setValue("Six", new Double(19.4));

JFreeChart chart = ChartFactory.createPieChart ("Pie Chart ", data, true, true, false);

try { final ChartRenderingInfo info = new ChartRenderingInfo(new StandardEntityCollection()); final File file1 = new File("../webapps/jspchart/ web/piechart.png"); ChartUtilities.saveChartAsPNG( file1, chart, 600, 400, info); } catch (Exception e) { out.println(e); } %> JSP Page <IMG SRC="piechart.png" WIDTH="600" HEIGHT="400" BORDER="0" USEMAP="#chart">

View Answers









Related Tutorials/Questions & Answers:
Create a Pie Chart in jsp Page using JFree Chart
Create a Pie Chart in jsp Page using JFree Chart  Hello Sir I followed ur tutorial on "CREATE A PIE CHART IN JSP PAGE USING JFREE CHART... the pie chart report and after that save it to the desired location.Kindly help me
Pie chart Jfree create error
Pie chart Jfree create error  hi........... thanks 4 ur help but when i am using the code which has a import file import org.jfree.chart.*; its... to resolve this problem????////// i am using jdk1.5 to run the program plz
Advertisements
Pie chart on jsp
Pie chart on jsp  how can i create a pie chart on a jsp page using... that creates a pie chart using JFreechart api and takes the value from...; For the above code, we have created a database table named result which consists of two
3d pie chart - Java3D
3d pie chart  Dear Sir, i want to create 3d pie chart using jsp, i have some code for 2d pie chart in jsp and 3d pie chart in applet. for 2d pie... for creating 3d pie chart but its showing error. i used following code
jfree chart
jfree chart  i need donut chart using jfree
Pie chart
Pie chart  hi................. In my project i want to create a pie-chart by taking values at run time. As want to display it in pie chart form the result. Can u tell me the code for it. I am using 4 my project Java swings
pie chart
pie chart  how to create pie chart using struts2
Create a pie chart in jsp page using JFreeChart
Create a pie chart in jsp page using JFreeChart... to create a pie chart in jsp page using JFreeChart. Code given below creates a simple pie chart for given values. In the code given below we have extended class
display combination of a stacked area chart and line chart in one iframe using jfree - JSP-Servlet
display combination of a stacked area chart and line chart in one iframe using jfree  hello i have a problem related to jfree chart, i want.... i m using struts1.1 servlet, jsp. please provide me the help or path
Dynamin Jfree chart in jsp---error
Dynamin Jfree chart in jsp---error   While compiling this CODE...); JFreeChart chart = ChartFactory .createBarChart3D( "Stock Update", "runs...); try { ChartUtilities.saveChartAsJPEG(new File("c:\\chart.jpg"), chart
JFree 3D Bar Chart not displaying in JSP - Java3D
JFree 3D Bar Chart not displaying in JSP  Hi I am trying to run JFree 3D bar chart written in your site under link: http://www.roseindia.net... is not coming up i.e. not saved in the local directory. I have changed the PNG directory
How to draw pie chart in J2ME
How to draw pie chart in J2ME  Hi, I'm developing a program using J2ME and I want to draw a pie chart but it seems J2ME language hasn't available chart component like JFreeChart in Java! could any one help me how can I draw a pie
Pie Chart
; In this section we are providing you an example to create a Pie Chart. Description of Example   For creating a Pie Chart we use PieDataset...(); For defining a dataset for a pie chart we have to create an object
pie chart
pie chart  hii..how to display data from database and show it in piechart according to different data that is present in database..plzz help
JFREE chart - Java Beginners
JFREE chart  how can i get the latest save image of my action class.....thanks,i want my chart to display dynamically from my database  Hi.... JSP Page We hope that this code
JFree chart package error
JFree chart package error  hi, I had asked u abt the jfree chart... of import file is not there. I want to ask that how to add the import files which are not there in the package which is being downloaded? i have downloaded
Create pie chart
Create pie chart  hi............. In my project i want to create a pie chart to display the result. i require a very simple code in java swings were i can edit the code and put my values... so plz help me
Bar Chart in JSP - JSP-Servlet
Bar Chart in JSP  Hi I am creating Bar chart using Jfree charts in JSP. Please advise me how to customize it. Like controlling the colors, width for each bar, showing values above the bar .  hi friend, Use
Pie Chart - Java Beginners
Pie Chart  How to Draw a Pie chart using graphics in java  Hi friend, I am going to post complete running code. import java.awt.... ChartPanel(values, names, "Simple Pie Chart")); WindowListener wndCloser = new
3D Pie Chart
; In this section we are providing you an example to create a 3D Pie Chart. Description of Program :    For creating a 3D Pie Chart we use..._TO_REPLACE_1 Description of Code : For defining a dataset for a 3D Pie Chart we have
Jfree chart problem - Swing AWT
Jfree chart problem  hello i have a problem related to jfree chart i have some data and i want to display data in two different chart stacked... of stacked areachart and line chart in one frame. I want to display hybrid graph
Create Pie Chart using database values
Create Pie Chart using database values Java provides JFreeChart library which... a pie chart by retrieving the values from the database. Here is the code... which enables the programmer to create charts very easily. You have already learned
Bar Chart using JSP and tooltip to be implemented
Bar Chart using JSP and tooltip to be implemented  Hi Deepak, I have generated a bar chart in JSP using JFreeCharts but I could not get the tool tip for that. Please any one suggest me how to do that or provide some code. Help
create bar chart in jsp using msaccess database
create bar chart in jsp using msaccess database  thanks for reply, that code i can use but i get the below error, pls help me message...) org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:758) org.apache.jsp.bar<em>jsp.</em>
hybrid graph (jfree chart) - Swing AWT
hybrid graph (jfree chart)  hello i have a problem related to jfree chart.I want to display hybrid graph (Stacked Area and Line ).combination... and explain in details For more information on chart visit to : http
jsp :how to edit table of data displayed using jsp when clicked on edit button
jsp :how to edit table of data displayed using jsp when clicked on edit button  i have a jsp program which displays data in the form of table ..now i want to delete this information in table when click on delete button and save
PHP GD Pie Chart
_ARC_PIE); imagefilledarc($image, 150, $i, 200, 100, 45, 75 , $darkgray, IMG_ARC_PIE);ADS_TO_REPLACE_4 imagefilledarc($image, 150, $i, 200, 100, 75... = imagecolorallocate($image, 0x90, 0x00, 0x00);ADS_TO_REPLACE_3 for ($i = 160; $i > 150
i want to show timeline chart for three year in chart..
i want to show timeline chart for three year in chart..  I am using Jfree chart library to display chart in web pages. i want to show three year data in chart in 3 lines for three year in same chart. i am able to show
pie chart flex and sum from hql request
pie chart flex and sum from hql request  hi, i work with flex... to show the result in the pie shart but the probleme is i don't have a field to define when i use the shut.plz help me
Draw Pie Chart
_INT_RGB) which defines the image of pie chart The method Math.min(width,height... Draw Pie Chart       This Java Pie Chart example is going to show you how to draw Pie
create bar chart in jsp using msaccess database
create bar chart in jsp using msaccess database  type Exception... to compile class for JSP An error occurred at line: 8 in the jsp file: /bar.jsp...\work\Catalina\localhost\chetana\org\apache\jsp\bar_jsp.java:57: cannot find symbol
Chart & Graphs Tutorials in Java
Category Plot chart using JFreeChart.   Create a pie chart in jsp page using JFreeChart This Example shows you how to create a pie chart in jsp.... The Following examples have been created by using JFreeChart API's. Pie
line chart from database in jsp
line chart from database in jsp  how can i create line chart from database in jsp code
create chart - JSP-Servlet
create chart  Sir, I am using ireport 2.0.2 software for creating .jrxml report. I want to create a chart using ireport software. I m using sql...(primary key) title status I want to show chart of field "date" only
Create multiple pie chart in single frame using JFreeChart
Create multiple pie chart in single frame using JFreeChart... you how to create a multiple pie charts in a single frame in jsp page using JFreeChart. Code given below creates a simple pie charts for given values
Create area chart in JSP page using JFreeChart
Create area chart in JSP page using JFreeChart... to create a area chart in JSP page using JFreeChart. Code given below creates a area chart of runs of two teams in different matches. In the code given below we
Chart Event in Flex4
Chart Event in Flex4: Chart uses the chartEvent when you perform the operation click and doubleclick on the chart. This event is the part of chart package... is greater than 3 then the ChartEvent will not work. When you will click
ModuleNotFoundError: No module named 'slice'
ModuleNotFoundError: No module named 'slice'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'slice' How to remove the ModuleNotFoundError: No module named 'slice'
Create a bar chart in JSP page using JFreeChart
Create a bar chart in JSP page using JFreeChart... to create a 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
JavaScript array slice
into this example code we have created an array of length five and we have applied slice... the selection and should be a number and it is must in the slice() method. EndIndex... JavaScript array slice     
jsp :how to edit table of data displayed using jsp when clicked on edit button
jsp :how to edit table of data displayed using jsp when clicked on edit button  i have a jsp program which displays data in the form of table ..now i want to edit this information in table when clicked on edit button and save
How to export chart(graph) generated by jsp into a excel?
How to export chart(graph) generated by jsp into a excel?  How to export chart(graph) generated by jsp into a excel? I have a jsp page which generates charts . Now I need those charts to be exported into an excel.please help
print form information when click on print button
print form information when click on print button   Sir,I desingn institute webside using jsp and strut by using platform netbean 7.2.So request you please help for printing form information by clickin print button after submit
Chart Item Event in Flex4
Chart Item Event in Flex4: Chart uses the ChartItemEvent when you perform the operation click on the chart Item. This event is the part of chart package... you will show the value of item when you click on the data item. If you click
how to create bar chart in jsp using msaccess database
how to create bar chart in jsp using msaccess database  type...: Unable to compile class for JSP An error occurred at line: 10 in the jsp file...\Tomcat 5.0\work\Catalina\localhost\chetana\org\apache\jsp\bar_jsp.java:61: cannot
chart tutorial - Java3D
chart tutorial  Hi I need a JFree Chart class library in order to design a chart with java  Hi friend, For JFree Chart class library... information,Tutorials and Examples on JFree Chart visit to : http://www.roseindia.net
JFreechart Stacked Bar Chart
chart, pie chart, line chart,area chart etc. Here we are going to create a Stacked... on top of one another which is an effective way to communicate the absolute values...JFreechart Stacked Bar Chart JFreechart provides a way to create various
Create a 3D bar chart in JSP page using JFreeChart
Create a 3D bar chart in JSP page using JFreeChart... 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
Horizontal Bar Chart Example using JFreeChart
a Horizontal bar chart using JFreeChart. This example showing you match score of two teams .  Code Description:  In the code given below we... Horizontal Bar Chart Example using JFreeChart
how to create a bar chart in jsp by fetching value from oracle databse?
how to create a bar chart in jsp by fetching value from oracle databse?  i want to show the population of various states in a bar chart in my jsp page by fetching the data from my oracle table. i am using my eclipse as my IDE

Ads