I'm using candlestick chart of androidplot library.meeting problems to show open and close values/labels alongwith the sticks.Here is the solution i found.
final LineAndPointFormatter lpf = new LineAndPointFormatter(null, null, null, null);
PointLabelFormatter pointLabelFormatter=new PointLabelFormatter();
// pointLabelFormatter.hOffset=150;
//pointLabelFormatter.vOffset=50;
lpf.setPointLabelFormatter(pointLabelFormatter);
plot.addSeries(openVals, lpf);
LineAndPointFormatter lpf1 = new LineAndPointFormatter(null, null, null, null);
PointLabelFormatter pointLabelFormatter1=new PointLabelFormatter();
//set the vertical offset
pointLabelFormatter1.vOffset=40;
lpf1.setPointLabelFormatter(pointLabelFormatter1);
plot.addSeries(closeVals,lpf1);
CandlestickFormatter formatter = new CandlestickFormatter();
formatter.setBodyStyle(CandlestickFormatter.BodyStyle.Square);
formatter.setLowerCapWidth(50);
// add the candlestick series data to the plot:
CandlestickMaker.make(plot, formatter,
openVals, closeVals, highVals, lowVals);