My code is below. The max and min bubbles are cut off, and I don't want 
them to be. Can anyone figure out what I'm doing wrong? 

I've tried it with and without vAxis.viewWindowMode value, since the 
documentation says that 'pretty' behavior is the default. 


    function drawSeriesChart() {

        var data = google.visualization.arrayToDataTable([
            ['ID', 'Sequence', 'Average Time (ms)', 'Iterations', 'Std 
Dev'],
            ['Harry Potter', 1, 822000, '200', 0.029200],
            ['Data Set 2', 2, 819000, '200', 0.033400],
            ['Ronald McDonald', 3, 814000, '10', 0.021700], ]);
        var options = {
            title: 'my_test',
            legend: 'none',
            hAxis: {
                title: 'Data Source'
            },
            vAxis: {
                title: 'Average Time (ms)',
                viewWindowMode: 'pretty'
            }
        };

        var chart = new 
google.visualization.BubbleChart(document.getElementById('series_chart_div'));
        chart.draw(data, options);
    }


-- 
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/d/optout.

Reply via email to