The style tag can't be inside the script tag, just move it outside the script and it should be fine.
On Tuesday, September 11, 2012 11:27:28 PM UTC-4, Diana Flores wrote: > > Hi, sorry to reply until now, i was busy!!!...i dont know if im using it > rigth!! > > it shows this error: > > Fecha y hora: 11/09/2012 09:23:59 p.m. > Error: SyntaxError: missing } in XML expression > Archivo de origen: http://localhost/MyProject/Tigo/graf/goochart2.html > Línea: 76, columna: 9 > Código fuente: > float: left; > > this is how i put it: > > var chart3 = new > google.visualization.LineChart(document.getElementById('chart_div3')); > > chart3.draw(data3, options3); > > > } > > <style type="text/css"> > #chart_div { > float: left; > } > #chart_div2 { > float: right; > } > #chart_div3 { > float: center; > } > .clear { > clear: both; > display: none; > } > </style> > > </script> > </head> > <body> > > <div id="chart_div" display: inline-block; ></div> > <div id="chart_div2" display: inline-block;></div> > <div id="chart_div3" display: inline-block;></div> > <div class="clear"></div> > </body> > </html> > -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-visualization-api/-/3WpuoT__QnQJ. 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-visualization-api?hl=en.
