I am preparing a default dataset which is TimeSeriesColeection (with two Time Series for bid and ask)
I need to support multiple graphs
1) Line
2) Point
3) Bar
4) Candle Stick
I am able to manage point and line chart, but the barGraph has overlapping Bars for the two series.
CODE:
barChart = ChartFactory.createXYBarChart(currentSymbol, "Date",true, "Price Per Unit",
(IntervalXYDataset)dataset ,
PlotOrientation.VERTICAL,
true,false,false);
And also I need some help converting TimeSeriesCollection to OHLCDataset
Any suggestions is please so quickly

Thanks