JFreeChart 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 from at 2-columun database (String, double). (The string is a date, represented as a String). The X-axis should be the different string, and the Y-axis should be the double values. I tried DefaultCategoryDataset, but every time I run it, an error occurs (i tried an example from here, with XY, and it didn't work either)
I could really use some help on this, as i'm completely lost. (It has been checked that the database contains the data)
public class Chart {
Connection conn;
Statement stmt;
ResultSet rs;
Chart(){
try{
Class.forName("org.sqlite.JDBC");
conn = DriverManager.getConnection("jdbc:sqlite:projectdb.db");
System.out.println("Database connection established");
String dateinput;
double temp;
DefaultCategoryDataset dataset = new DefaultCategoryDataset();
stmt = conn.createStatement();
rs = stmt.executeQuery("SELECT * FROM data");
while(rs.next()){
dateinput = rs.getString(1);
temp = rs.getDouble(2);
dataset.addValue(temp, "", dateinput);
}
JFreeChart chart = ChartFactory.createLineChart(null,
"Time",
"Temperature",
dataset,
PlotOrientation.VERTICAL,
true,
true,
false);
JFrame test = new JFrame();
test.setVisible(true);
ChartPanel chpanel = new ChartPanel(chart);
chpanel.setPreferredSize(new Dimension(785, 440));
chpanel.setMouseWheelEnabled(true);
JPanel panel = new JPanel();
panel.add(chpanel);
test.add(panel);
}
catch(Exception e){
System.out.println(e.getMessage());
}
}
public static void main(String[] args){
new Chart();
}
}
View Answers
Related Tutorials/Questions & Answers:
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... it, an error occurs (i tried an example from here, with XY, and it didn't
work either)
I
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
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 jvm workjvm work wht is the
work of jvm? deaply.
Hi Friend,
Java Virtual Machine or JVM for short is a software execution engine to run the java programs. Java Virtual Machine is also known as "Java Interpreter" which
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
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
ModuleNotFoundError: No module named 'Work'ModuleNotFoundError: No module named '
Work' Hi,
My Python program is throwing following error:
ModuleNotFoundError: No module named '
Work'
How to remove the ModuleNotFoundError: No module named '
Work' error