In candlestick charts is common to draw candles' stroke color (green or red) according to if the stock is rising or falling. Example of standard candlestick chart:
But in JFreeChart OHLCSeries there is only one option to set the stroke...
XYItemRenderer renderer = chart.getXYPlot().getRenderer();
renderer.setSeriesPaint(0, Color.white);
...which is not enough for defining color of rising/falling candle separately.
Example of JFreeChart OHLCSeries:
Do you know a way to set a color for rising and falling candles separately?