Hi there,
I just want to ask what should I do after unzipping the JFreeChart.
Which is the first file for me to compile ?
I look forward to hearing from you.
Thank you
How can I compile the source files of JFreeChart?
Re: How can I compile the source files of JFreeChart?
You should download the file jfreereport-0.9.2-install.pdf, it contains instructions for what to do next.
Regards,
DG.
Regards,
DG.
Re: How can I compile the source files of JFreeChart?
You don't need to compile anything. Assuming that you unzipped your zip file to C:\JFreeChartDemo-0.9.2 you will have a subdirectory \Jars. The Jar files contain the classes and all that compiled stuff.
You would probably want to run the demo at this point. To do so from a command prompt, type:
C:\JFreeChart\Jars>java -classpath jcommon-0.6.4.jar;jfreechart-0.9.2.jar;jfreechart-0.9.2-demo.jar com.jrefinery.chart.demo.JFreeChartDemo
All of this on one line and it seems to be case-sensitive. I just went through this whole rigga-ma-roe so it should work. Let me know if it worked.
You would probably want to run the demo at this point. To do so from a command prompt, type:
C:\JFreeChart\Jars>java -classpath jcommon-0.6.4.jar;jfreechart-0.9.2.jar;jfreechart-0.9.2-demo.jar com.jrefinery.chart.demo.JFreeChartDemo
All of this on one line and it seems to be case-sensitive. I just went through this whole rigga-ma-roe so it should work. Let me know if it worked.
Re: How can I compile the source files of JFreeChart?
Hi,
If you want to recompile JFreeChart source files, then it is better to open a project in any of your Java visual development tools like JBuilder or VisualAge, and add these source to the opened project and compile..
Keep that project always with you and make changes on every new version release time..
Thanks David and Team for this wonderfull package..
From Korea
If you want to recompile JFreeChart source files, then it is better to open a project in any of your Java visual development tools like JBuilder or VisualAge, and add these source to the opened project and compile..
Keep that project always with you and make changes on every new version release time..
Thanks David and Team for this wonderfull package..
From Korea
Re: How can I compile the source files of JFreeChart?
Yes, I can run the demo.
Thanks all of you for replying me.
Thanks all of you for replying me.