I am creating a TimeSeries chart, based on a collection of dates and values. Then I print this chart to a PDF file. For this, I am using JFreeChart version 1.0.13.
The axis labels, on the date axis, are configured with the following pattern: "dd MMM", which prints dates like "14 Apr".
When I output the chart to the PDF, the horizontal axis displays dates like "12 Apr 12 Apr 13 Apr 13 Apr 14 Apr 14 Apr 15 Apr"... which is not really what I'd like to see

There is only one date-value pair for each day... If I print the same chart to a smaller image size, then the items appear once only.
If I add more values to the chart, then the dates are displayed correctly. It's only when there is few data to display that labels are doubled or tripled. What I'm guessing is that JFreeChart tries to keep the same distance between labels, and thus prints each label one more than once. I would have thought that, when there is few data, the framework just adds some distance between each labels...
Anybody knows how to change this behavior?
Thanks a lot
