newbie: will JFreeChart be able to do these for me ?

Discussion about JFreeChart related to stockmarket charts.
Locked
vybe3142
Posts: 1
Joined: Fri Dec 19, 2008 12:21 am

newbie: will JFreeChart be able to do these for me ?

Post by vybe3142 » Fri Dec 19, 2008 12:28 am

While not strictly a stock ticker application, I need the following functionality

1. a bar type graph of count vs date - I'm thinking YES
2. moderately large data set (say 10 - 50 years worth of days) so I'd like to display only a subset and be able to scroll left and right via a slider control . I'm wondering if dynamically loading and unloading the data outside the "window" is possible, or needed.
3.change views , for example, dynamically from counts per day to counts per year

Thanks

RoyW
Posts: 93
Joined: Wed Apr 23, 2008 7:42 pm
Contact:

Post by RoyW » Fri Dec 19, 2008 9:36 pm

Take a look at the demo in this post
http://www.jfree.org/phpBB2/viewtopic.php?t=24606

It demo's points 1 & 2.

For #3 you would just need to create 2 datasets that represent the count/day, count/year and call plot.setDataset() to change the data.
The answer does not come from thinking outside the box, rather the answer comes from realizing the truth; There is no Box. my js site

Locked