I'd like to over-ride the default color for a chart with my own.
Does anyone know if this is possible.
For example. I have a compound timeline chart that displays
different type of user actions. The top contain one time and the
bottom a different.
I'd like the top part to be a different shades of blue while the
bottom use shades of a different base color.
Does anyone know if it is possible to write a callback method
or pass in an array of colors to the render to over-ride the
default selection?
Thanks.
Over-riding default color selections.
.
I would also be interested to know this Pleeease 

You can set this by callig "getRenderer()" from a Plot, and then calling "setSeriesPaint(0, )" with the color you want.
I found it easiest to keep the List/Set/Map of colors on my own then setting each color as you add it to the chart.
some loop {
AbstractRenderer r1 = (AbstractRenderer) xyPlot.getRenderer();
r1.setSeriesPaint(0, graphColors.getNextColor() );
}
I found it easiest to keep the List/Set/Map of colors on my own then setting each color as you add it to the chart.
some loop {
AbstractRenderer r1 = (AbstractRenderer) xyPlot.getRenderer();
r1.setSeriesPaint(0, graphColors.getNextColor() );
}