I want to create a bar-chart, but extraordinary high values should be shortened. An example is this image:

(source: epa.gov)
I hope it is clear what I want.
My question is: How can I do this with JFreeChart. If it isn’t possible with JFreeChart you can possibly recommend alternative open-source Java-libraries to produce such an output.
You could do it with a
CombinedDomainCategoryPlotorCombinedDomainXYPlot. Set the range axis of the first plot to your cut off value and then do something similar with the second plot. Then add them to a combined plot.The plots will share the same X-axis. You’ll need to play with the renderers to set colours and labels.
removed dead ImageShack link