Possible new functionality?

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
heijho01
Posts: 12
Joined: Thu Jul 17, 2003 2:16 pm

Possible new functionality?

Post by heijho01 » Mon Mar 01, 2004 12:59 pm

I have an idea for a functionality for barchart charts. At the moment barchart graphs are showing all bars that are in the underlying data on screen. Maybe it is an idea to make it possible to use next & previous buttons or something like that ... . These buttons can for instance show the next / previous 10 bars ...

Please tell me what you think of it then I can post it as request

Jeroen H

david.gilbert
JFreeChart Project Leader
Posts: 11734
Joined: Fri Mar 14, 2003 10:29 am
antibot: No, of course not.
Contact:

Post by david.gilbert » Tue Mar 02, 2004 5:22 pm

It would be a useful feature. I'm not sure what is the best way to go about implementing it though - it needs to take account of the fact that the screen is only one possible output target for the charts.
David Gilbert
JFreeChart Project Leader

:idea: Read my blog
:idea: Support JFree via the Github sponsorship program

tbardzil

Post by tbardzil » Wed Mar 03, 2004 5:28 am

I was thinking of the same type of thing a while back. I came to the conclusion that doing this really requires a type coupling to the output target as David mentioned above. One possibility is a Swing component that wraps the ChartPanel (sorta like the new scroll bar demo) and alters the underlying dataset as you "page" through the results.

Locked