Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to put google gauge in vertical alignment. This is my javascript code (it's copy paste from google playground)

<script type='text/javascript'>
      google.load('visualization', '1', {packages:['gauge']});
      google.setOnLoadCallback(drawChart);
      function drawChart() {
        var data = google.visualization.arrayToDataTable([
          ['Label', 'Value'],
          ['Memory', 80],
          ['CPU', 55],
          ['Network', 68]
        ]);

        var options = {
          width: 400, height: 120,
          redFrom: 90, redTo: 100,
          yellowFrom:75, yellowTo: 90,
          minorTicks: 5
        };

        var chart = new google.visualization.Gauge(document.getElementById('menu2'));
        chart.draw(data, options);
      }
    </script>

And this is my html div

<div id="menu2"></div>

and css

#menu2
{
background-color:#FFD700;
height:570px;
width:150px;
float:right;
}

any idea?

share|improve this question

1 Answer

up vote 1 down vote accepted

I just added inline style to div in which gauge will load. Ans removed all width height options from script given my google.

Here is the fiddle: http://jsfiddle.net/NB3Eg/

You can play with its html & css here https://code.google.com/apis/ajax/playground/?type=visualization#gauge

share|improve this answer
I can't get it to work. Here is my div <div id="visualization" style="height: 570px; width: 150px;"></div> and css #visualization { background-color:#7AD7F9; float:right; } – user123_456 Jun 6 '12 at 19:10
any idea?...... – user123_456 Jun 6 '12 at 19:12
Check this: jsfiddle.net/NB3Eg/1 – SVS Jun 6 '12 at 19:15
how is this possible. You got it to work and I keep getting them horizontal – user123_456 Jun 6 '12 at 19:24
Please put your final code on jsfiddle.net & share with me. I want to see where you are doing it wrong. – SVS Jun 6 '12 at 19:26
show 5 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.