I have to create a pie chart in jsp from database.My database consist of string values how to do this please anyone reply
below is my code. but it is only accepting integer values i have to do this with string values
while(resultSet.next()){
xVal = resultSet.getString(“x”);
yVal = resultSet.getString(“y”);
map = new HashMap<Object,Object>(); map.put(“x”, Double.parseDouble(xVal)); map.put(“y”, Double.parseDouble(yVal)); list.add(map);
dataPoints = gsonObj.toJson(list);