com.googlecode.gwt.charts.client.ColumnType type = gTable.getColumnType(i);
if (com.googlecode.gwt.charts.client.ColumnType.DATE.equals(type)) {
dateFormat.format(gTable, i);
}
else if (com.googlecode.gwt.charts.client.ColumnType.NUMBER.equals(type)) {
numberFormat.format(gTable, i);
}
}
return gTable;
}