I'm having a weird problem with some PieCarts I created with the
Google Visualisation API. They worked fine a couple of weeks ago, but
not anymore. I have no idea why. My usage is really simple and basic.
Pretty much stock-tutorial level:

    var chart1_data = new
google.visualization.DataTable(doctypeDataTable);
    var chart1_view = new google.visualization.DataView(chart1_data);
    chart1_view.setColumns([1, 2]);
    var chart1 = new
google.visualization.PieChart(document.getElementById('chart1'));
    chart1.draw(chart1_view, {width: width, height: height, is3D:
false, title: 'Document types'});

`doctypeDataTable` is a JSON array, of course. The chart renders,
except for the actual pie part. I get the chart headers and the legend
and everything, but not the actual slices of the pie. I'm using pretty
much the same code to render a line chart on the same page and that
works fine. But the pie charts fail.

I have tried on a few different computers and in different browsers
(Firefox, Epiphany, disabling all my plugins) but with no result.

Full page is here: http://scantool.jejik.com/domains/view/2

Can anyone tell me what broke? I've been hitting a wall for days now.
Thanks in advance!

-- 
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