The data I am trying to represent in my charts will usually be shown with timestamps (dates and times) going along the bottom, or x axis, and a variety of data (which will always be simple integers or maybe float data in the future) shown on the left axis. Basically it will be mapping events along the bottom, and say, performance along the left.
I am using JFreeChart, however unfortunately the support for developers is non-existent, and I will not be paying for their tutorials. Straight away I can see many chart types which I could use, this post is asking for the most suitable collection and chart object for me to use.
Originally I went for XYDataSet with XYScatterPlot, but I realise one of the axes must be a date, not a simple integer. So I just had a look at TimeSeries and TimeSeriesChart objects. However for some odd reason it only seems to allow boolean or float (not integer values on the number axis). Also it's saying my Timestamp class is deprecated (all the date information I am using is stored in an object database as timestamps, storing year, month, day, hour, minute, second etc.).
So in summary, I want the best collection and chart object to store a simple series of graphs mapping a timestamp date to integer values. Cheers.