Let's assume that I have one instance of the org.jfree.data.xy.DefaultXYDataset and that I am adding two series to it in this way:
dataset.addSeries(name, values);
dataset.addSeries(name2, values)
How can I move the first or the second series by the X or Y offset value?
Assume that offset is always >= 0. By moving 'right' I mean each (x,y) point transform to (x + offset, y) point.
Moving 'left', 'up' and 'down' by analogy.