<% String brands[] = new String[]{"iPhone", "Android", "Blackberry", "Others"}; int percentages[] = new int[]{64, 19, 9, 8}; String tempAddress ="http://chart.apis.google.com/chart?cht=lc&chs=300x100&chd=t:"; for(int i = 0 ; i < percentages.length ; i++ ){ tempAddress = tempAddress + percentages[i]; if(i < percentages.length - 1){ tempAddress = tempAddress + ","; } } tempAddress += "&chl="; for(int i = 0 ; i < brands.length ; i++ ){ tempAddress = tempAddress + brands[i] + "("+percentages[i]+"%)"; if(i < brands.length - 1){ tempAddress = tempAddress + "|"; } } %> Show Line Chart JSP
Call Google Chart API URL: