Hello everyone,

I created a function which creates a new combo chart in a new repeted area 
if a value is not null.

For each non null value from a data file, i call a text file including 
Visualisation API code modified with variables, i change variables and load 
it in an html area in a repeted area.

I have no error but my combo charts are not displayed but i can see them 
with debugger...

Any idea ?


here is text file : (each "%X" is a variable i modifie when creating combo 
chart)

*<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";>*
*<html xmlns="http://www.w3.org/1999/xhtml";>*
*  <head>*
*    <meta http-equiv="content-type" content="text/html; charset=utf-8"/>*
*    <title>*
*      %2*
*    </title>*
*    <script type="text/javascript" 
src="https://www.google.com/jsapi";></script>*
*    <script type="text/javascript">*
*      google.load('visualization', '1', {packages: ['corechart']});*
*    </script>*
*    <script type="text/javascript">*
*      function drawVisualization%4() {*
*        // Some raw data (not necessarily accurate)*
*        var data = google.visualization.arrayToDataTable([*
*          %1*
*        ]);*

*        var options = {*
*          title : '%2',*
*          vAxis: {title: "%7"},*
*          hAxis: {title: "%8"},*
*          seriesType: "bars",*
*          series: {   %3*
*          }  *
*        };*

*        var chart = new 
google.visualization.ComboChart(document.getElementById('%4_div'));*
*        chart.draw(data, options);*
*      }*
*      google.setOnLoadCallback(drawVisualization%4);*
*    </script>*
*  </head>*
*  <body>*
*    <div id="%4_div" style="width: %5px; height: %6px;"></div>*
*  </body>*
*</html>*


Here is what i get in debugger :

 *function drawVisualizationCH() { *
* // Some raw data (not necessarily accurate) *
* var data = google.visualization.arrayToDataTable([ *
* ['Mois','Chauffage','économe','normalisé','énergivore'], *
*['12-01 2014',410,380,400,580] *
* ]); *
* var options = { *
* title : 'Votre consommation en Chauffage comparée ', *
* vAxis: {title: "Kwh"}, *
* hAxis: {title: "Chauffage"}, *
* seriesType: "bars", *
* series: { 0: {color: '#97C802'}, *
*1: {type: 'line',color: '#0000FF'}, *
*2: {type: 'line',color: '#009F00'}, *
*3: {type: 'line',color: '#FF0000'} *
* } *
* }; *
* var chart = new 
google.visualization.ComboChart(document.getElementById('CH_div')); *
* chart.draw(data, options); *
* } *
* google.setOnLoadCallback(drawVisualizationCH); *
*</script>*
*<div id="CH_div" style="width: 250px; height: 250px;"></div>*

Thanks a lot for your help and your time spent.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to