I'm having a problem with the following code:

google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(drawChart);
function drawChart() {
    var data = google.visualization.arrayToDataTable([
        ['Node', 'Assigned', 'Failover', 'Total' ],
        ['doodle', 7.375, 0.250, 10.000],
        ['remus', 27.000, 0.000, 30.000],
        ['romulus', 28.125, 0.000, 30.000],
        ['jerry', 28.375, 0.500, 30.146],
        ['hardy', 27.750, 1.000, 30.146],
        ['yankee', 1.000, 28.375, 30.146]
    ]);

    // Create and draw the visualization.
    var comboChart = new
google.visualization.ComboChart(document.getElementById('myelem'));
    comboChart.draw(data, {
        title : 'cluster 1',
        vAxis: {title: "Memory (Gib)"},
        hAxis: {title: "Node"},
        seriesType: "bars",
        isStacked: true,
        series: {2: {type: "line", pointSize: 7, lineWidth: 0}}
    });
}

Whenever I move my mouse over one of the dots (series 2), I get
  this.f.Ha[b] is undefined (default,corecjart.l.js (line 577))
  V.Lq=function(a,b){var c=this.f.m[a];s...he?d:-d),y:c.y+
(c.y<=this.ie?-d:d)}};
After that, the chart doesn't respond to mouse interaction. Other
charts keep working fine. I'm seeing this behavior in Cromium
12.0.742.112 (90304) and FireFox 5.0.

Is this a bug in the visualization API, or am I doing something wrong?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
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