I'm currently working on a project that plots real time data as a line graph using the JFreeChart library. It's working great, but I want to give it a little more elegance by plotting the data in a smooth animated manner, rather than plotting in discrete steps. A good example of the effect I'm looking for can be found here: http://www.highcharts.com/demo/line-basic
Notice how the lines are animated between plot points.
I'm currently using the inbuilt XYLineChart for my graphs.
Is there a simple (or existing) way to achieve this effect, or will I have to dig deep into the library to implement these changes manually?