Here's another example: http://jsfiddle.net/gS2FV/ 

On Saturday, April 7, 2012 6:47:49 PM UTC-4, Jay wrote:
>
> Here we go..A slightly modified version @ 
> http://code.google.com/apis/ajax/playground/#combo_chart. 
>
> function drawVisualization() {
>   // Some raw data (not necessarily accurate)
>   var rowData = [['Month', 'Bolivia', 'Ecuador', 'Madagascar', 
> 'Papua  Guinea',
>                   'Rwanda', 'Average'],
>                  ['2004/05', 165, 938, 522, 998, 450, 614.6],
>                  ['2005/06', 135, 1120, 599, 1268, 288, 682],
>                  ['2006/07', 157, 1167, 587, 807, 397, 623],
>                  ['2007/08', 139, 1110, 615, 968, 215, 609.4],
>                  ['2008/09', 136, 691, 629, 1026, 366, 569.6]];
>
>   // Create and populate the data table.
>   var data = google.visualization.arrayToDataTable(rowData);
>
>   // Create and draw the visualization.
>   var ac = new google.visualization.ComboChart(document.getElementById(
> 'visualization'));
>   ac.draw(data, {
>     title : 'Monthly Coffee Production by Country',
>     width: 600,
>     height: 400,
>     vAxes: [{0:{title: "Cups"}},{1:{title: "Average"}}],
>     hAxis: {title: "Month"},
>     seriesType: "bars",
>             series: {5: {type: "line",targetAxisIndex:1}}
>   });
> }​
>
> On Saturday, April 7, 2012 3:19:48 AM UTC-7, Harshad Patel wrote:
>>
>> Hi all,
>>
>> I am new in google charts. I can't found 2 Y-axis graph. So plese help me 
>> if any body have a idea or links for examples please send me asap.
>>
>> thanks.
>>
>

-- 
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/-/2EK4u4um6iEJ.
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.

Reply via email to