I have a 3D line chart created with ChartFactory.createLineChart3D() and sometimes two or more lines might overlap.
The result will be that only the last line drawn will be visible like in the image below:

What I would like is to take advantage of the 3D effect and have each series' line drawn in different 'depth'.
For instance in the example above, there are two series so the depth of the plot will be divided into two halvs. One next to the back wall and one 'in front' of it, 'closer' to the viewer. Each series' line will be drawn in a different half. This way, the overlapping part in the image above will be halved horizontally. One half will be red and the other blue.
Is there a way to do this currently? (I'm using version 1.0.13)
If not, is there a chance to have this feature in the next version?
If not, If I want to implement it myself, which part of the code do I need to override?
Thanks in advance
Itai