Can a TimeSeries but used in charts other than line?

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
DavidThi808
Posts: 106
Joined: Fri May 27, 2005 7:44 pm
Location: Boulder, CO
Contact:

Can a TimeSeries but used in charts other than line?

Post by DavidThi808 » Thu Jul 12, 2007 3:10 am

Hi;

It seems to me that logically a TimeSeries can be used in other chart types. At least bar, scatter, and bubble. And maybe area & radar???

Can this be done? And if so, how?

thanks - dave
Last edited by DavidThi808 on Fri Jul 13, 2007 3:29 am, edited 1 time in total.

RichardWest
Posts: 844
Joined: Fri Oct 13, 2006 9:29 pm
Location: Sunnyvale, CA

Re: Can a TimeSeries but used in charts other than line?

Post by RichardWest » Thu Jul 12, 2007 5:34 am

DavidThi808 wrote:Can this be done? And if so, how?
Again, I direct your attention to the JavaDoc. Scroll down the list of classes until you get to all the Time* classes. Have a read through them, and you learn what you need to learn about using dates and times on the plots. When you create your plots, be sure to use a DateAxis for your plot (there are a couple other special options you could use).
Richard West
Design Engineer II
Advanced Micro Devices
Sunnyvale, CA

DavidThi808
Posts: 106
Joined: Fri May 27, 2005 7:44 pm
Location: Boulder, CO
Contact:

Post by DavidThi808 » Fri Jul 13, 2007 5:27 am

Thank you - DateAxis was the pointer I needed.

Locked