Calendar abcd = Calendar.getInstance();
int typeofchart = 1; // SETS THE TYPE OF CHART
String datestrip[] = thedates.split(",");
//abcd.set (2006,5,30);
// abcd.set(datestrip[0],datestrip[1],datestrip[2]);
//abcd.setTime(thedates);
abcd.set(Calendar.YEAR, datestrip[0]);
abcd.set(Calendar.MONTH, datestrip[1]);
abcd.set(Calendar.DATE, datestrip[2]); |