sth like plot.getSubplot().getRenderer().setSeriesPaint(new Color(...))
I don't even manage to get the subplot instances

or do i have to know in advance which colours i have to assign to my subplotSeries???
because
this code
XYPlot plot1 = new XYPlot(dataset, null, null, new HighLowRenderer());
XYPlot plot2 = new XYPlot(dataset2, null, null);
// generate chart
OverlaidXYPlot plot = new OverlaidXYPlot(timedomainaxis, rttrangeaxis);
plot.add(plot1);
plot.add(plot2);
returns a plot with two red lines
thanks for replies
Sebastian