Jfreechart setting Legends
Hi...
i am using JfreeChart in my web app. for creating charts.I am trying to make the legends as vertical in Stacked bar chart. Does anybody know How to set the legends in any graph as vertical...????
please reply me if you know it...thanks in advance.....
View Answers
June 10, 2010 at 4:36 PM
Hi Friend,
Try the following code:
<%@page import="org.jfree.ui.*"%>
<%@page import="org.jfree.chart.*"%>
<%@page import="org.jfree.data.category.*"%>
<%@page import="org.jfree.chart.plot.PlotOrientation"%>
<%
DefaultCategoryDataset dataset = new DefaultCategoryDataset();
dataset.addValue(10, "Girls","Chess");
dataset.addValue(15, "Boys", "Chess");
dataset.addValue(17, "Girls","Cricket");
dataset.addValue(23, "Boys","Cricket");
dataset.addValue(25, "Girls","FootBall");
dataset.addValue(20, "Boys","FootBall");
dataset.addValue(40, "Girls","Badminton");
dataset.addValue(30, "Boys","Badminton");
dataset.addValue(35, "Girls","Hockey");
dataset.addValue(32, "Boys","Hockey");
final JFreeChart chart = ChartFactory.createStackedBarChart(
"Stacked Bar Chart Demo 1",
"Category",
"Value",
dataset,
PlotOrientation.VERTICAL,
true,
true,
false
);
try
{
ChartUtilities.saveChartAsJPEG(new File("C:/chart.jpg"), chart, 400, 300);
}
catch (IOException e)
{
System.out.println("Problem in creating chart.");
}
ChartPanel chartPanel = new ChartPanel(chart);
chartPanel.setPreferredSize(new java.awt.Dimension(500, 270));
ApplicationFrame f=new ApplicationFrame("Chart");
f.setContentPane(chartPanel);
f.pack();
f.setVisible(true);
%>
Thanks
Related Tutorials/Questions & Answers:
Jfreechart setting Legends - Java BeginnersJfreechart setting Legends Hi...
i am using
JfreeChart in my web app. for creating charts.I am trying to make the
legends as vertical in Stacked bar chart. Does anybody know How to set the
legends in any graph as vertical
jfreechartjfreechart hi
how install
jfreechart?
and how free download jcommon?
plz insert link for this?
thanks
Hi Friend,
Please visit the following link:ADS_TO_REPLACE_1
Download
JFreechart
Download jfreechart-1.0.13.zip
Advertisements
JFreechart & JCommon JFreechart & JCommon hi...........
thanks a lot. The code is running successfully and able to get the output.
Thanks once again
Error in JfreeChartError in JfreeChart I am getting an error when i am using
jfreechart... the following link and download the
jfreechart api:ADS_TO_REPLACE_2
http://www.brothersoft.com/
jfreechart-download-15712.html
Then extract the api and put
Error in JfreeChartError in JfreeChart I am getting an error when i am using
jfreechart for graph generation, that is:
D:\my\linechart.java:5: package org.jfree.chart does not exist
import org.jfree.chart.*;ADS_TO_REPLACE_1
what is the reason
jfreechart maven dependencyjfreechart maven dependency Hi,
I want to use
jfreechart library in my Java project. My project is maven based and I am trying to find the maven dependency of
jfreechart.
What is
jfreechart maven dependency
setting keyssetting keys Hi Sir\Mam,At present we are doing Payroll Project .I would like to set some special keys for my forms and i want the coding to do the same .Pls Provide me source code for
setting keys as soon as possible
JFreeChart - An Introduction
JFreeChart - An Introduction
JFreeChart is a free open source java chart library.
David Gilbert founded the
JFreeChart project in February 2000. Now a days
how to install jfreechart in netbeans.how to install
jfreechart in netbeans. I have successfully installed
jfreechart in eclipse IDE.but I am unable to install the same in netbeansIDE 6.7.1 .There is some error regarding the ant folder.Please tell the step by step
JFreeChart TutorialJFreeChart Tutorials, examples and articles
The
JFreeChart is Java based.... In this tutorial we teach you to use popular
JFreeChart api for creating various... for generating dynamic graphs
from Java based applications. The
JFreeChart Line Graph using JFreeChartLine Graph using JFreeChart I need to draw a line graph of the (no. of sales made on y axis) by a shop with (dates on x axis) using data from MySQL database and
JFreeChart Jfreechart - Java BeginnersJfreechart Hi Team,
Am very new to
Jfreechart concept. And I was tried to configure
Jfreechart in my system but I cant. Can any one pls guide me how to install and configure
JFreechart from the basic with the necessary files
Line Graph using JFreeChartLine Graph using JFreeChart I need to draw a line graph of the (no. of sales made on y axis) by a shop with (dates on x axis) using data from MySQL database and
JFreeChart.
DRIVER: com.mysql.jdbc.Driver
URL:
jdbc:mysql
Line Graph using JFreeChartLine Graph using JFreeChart I need to draw a line graph of the (no. of sales made on y axis) by a shop with (dates on x axis) using data from MySQL database and
JFreeChart.
DRIVER: com.mysql.jdbc.Driver
URL:
jdbc:mysql
ModuleNotFoundError: No module named 'setting'ModuleNotFoundError: No module named '
setting' Hi,
My Python... '
setting'
How to remove the ModuleNotFoundError: No module named '
setting... to install padas library.
You can install
setting python with following command
JFreeChart dosn't workJFreeChart dosn't work Hello everybody
I'm trying to make a line chart from
JFreechart, but I just can't get it to work. The graph get its data...(temp, "", dateinput);
}
JFreeChart chart
utiliser jfreechart dans portlet strutsutiliser
jfreechart dans portlet struts Bonjour.
J'ai un pfe,et mon application m'impose d'utiliser
jfreechart,je trouve juste la documentation de
jfreechart avec struts2 seulement,mai je l'ai besoin ds un portlet liferay.
vu ke
Jfreechart chart display problemJfreechart chart display problem Using JSP and
Jfreechart displays...(request.getParameter("
q"));
String query="select dateof,dayinprice,company from stockprice...");
dataset.executeQuery(query);
JFreeChart chart = ChartFactory.createLineChart