You are setting the values in your columns incorrectly.  Column 0 ("Id") is 
type "string", but you are putting numbers in it.  Column 1 ("cover") is 
type "number", but you are putting strings in it.  I suspect that if you 
check the developer's console in Chrome or Firefox, you will see error 
messages about the data types, like this:

Error: Type mismatch. Value 17 does not match type string in column index 0 
@ 
http://www.google.com/uds/api/visualization/1.0/d780f2951a73e815f003b2b487c1d0a3/format+en,default,table.I.js:151

On Friday, November 22, 2013 4:22:14 AM UTC-5, Missy wrote:
>
> Thank you so much for your response and your time into this issue. 
>
> I have cropped large chunk of data, just to show example of how the 
> Javascript is rendering the results.  
>
> <title>Multi series Line chart using Google Visualization</title>    
>      <script type="text/javascript" src="https://www.google.com/jsapi
> "></script>
>
>   <div>
>       
>         <script type=text/javascript> google.load( "visualization", "1", 
> {packages:["corechart"]});
>             google.setOnLoadCallback(drawChart);
>             function drawChart() {
>             var data = new google.visualization.DataTable();
>             data.addColumn('string', 'Id');
>             data.addColumn('number', 'cover');
>         
>             
>  
>             
> data.addRows(1084);data.setValue(0,0,17);data.setValue(0,1,'0.00');data.setValue(1,0,18);data.setValue(1,1,'85.00');data.setValue(2,0,19);data.setValue(2,1,'0.00');data.setValue(3,0,20);data.setValue(3,1,'91.05');data.setValue(4,0,21);data.setValue(4,1,'89.85');data.setValue(5,0,22);data.setValue(5,1,'0.00');data.setValue(6,0,23);data.setValue(6,1,'0.00');data.setValue(7,0,24);data.setValue(7,1,'100.64');data.setValue(8,0,25);data.setValue(8,1,'17.00');data.setValue(9,0,26);data.setValue(9,1,'100.00');data.setValue(10,0,27);data.setValue(10,1,'68.00');data.setValue(11,0,28);data.setValue(11,1,'0.00');data.setValue(12,0,29);data.setValue(12,1,'0.00');data.setValue(13,0,30);data.setValue(13,1,'0.00');data.setValue(14,0,31);data.setValue(14,1,'101.13');data.setValue(15,0,32);data.setValue(15,1,'100.00');data.setValue(16,0,33);data.setValue(16,1,'100.02');data.setValue(17,0,34);data.setValue(17,1,'100.02');data.setValue(18,0,35);data.setValue(18,1,'99.11');data.setValue(19,0,36);data.setValue(19,1,'99.93');data.setValue(20,0,37);data.setValue(20,1,'100.06');</script>
>     </div>  
>
>     <div id="chart_div"></div>
>
>
>         </div>
>
>
> Many thanks. 
>

-- 
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