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);
}