need a part of jfree

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
shaharwr

need a part of jfree

Post by shaharwr » Thu Apr 07, 2005 2:24 pm

i need to draw a line chart so i need just a part of jfree.

how can i do it??

vcardona
Posts: 10
Joined: Tue Mar 29, 2005 9:31 pm

Post by vcardona » Fri Apr 08, 2005 4:30 pm

There are several possible answers to this question. Can you tell us more about what you are trying to do? Generally speaking, there is nothing that forces you to use all of the functionality of JFreeChart. For example, a project I am working on only displays pie and bar charts. I am assuming that you know that and therefore mean something else. Another solution would be to break out all of the classes and interfaces you use and place them in the source tree for your project. This can and probably will get messy. If you do this, you will also have to break out all of the dependent code in jcommon as well. Also upgrading the version of the library that you use will become problematic, because you will have to track the changes made by the developers more closely.

I hope that helps.

Guest

Post by Guest » Fri Apr 08, 2005 7:02 pm

I think for now you should just use the entire package
then after 1.0 is released rebuild the jar with only classes you used to make your charts

Locked