I am trying to trim whitespace either using the URL method or Visualization API. What am I doing wrong?
http://chart.apis.google.com/chart ?chf=bg,s,3399CC|c,s,FFFFFF &chartArea: {top:0, left:100,height:'100%', width:'50%'} &chxl=1:|Mr+B+Smith &chxr=0,55,700 &chxt=y,x &chbh=50 &chs=460x290 &cht=bvs &chco=3072F3 &chd=t:1 &chdl=Sponsorship+Fund ------- function draw(dataTable) { var vis = new google.visualization.ImageChart(document.getElementById('chart')); var options = { chartArea: 'top:0, left:200,height:"50%", width:"50%"', chf: 'bg,s,3399CC|c,s,FFFFFF', chxl: '1:|Mr+B+Smith', chxp: '', chxr: '0,55,700', chxs: '', chxtc: '', chxt: 'y,x', chbh: '50', chs: '460x290', cht: 'bvs', chco: '3072F3', chd: 't:1', chdl: 'Sponsorship+Fund' }; vis.draw(dataTable, options); } -- You received this message because you are subscribed to the Google Groups "Google Chart API" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-chart-api?hl=en.
