OhlcChartModel model = new OhlcChartModel();
DateAxis axisX = new DateAxis("Date");
model.getAxes().put(AxisType.X, axisX);
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
model.add(new OhlcChartSeries(formatter.format(seriesDate), openValue,
highValue, lowValue, closeValue);
did anyone manage to make ohlc chart work with dates ?