"Downloads by products" statistic page does not work
https://plugins.jetbrains.com/downloadStatistic/byProduct?pr=&pluginId=8277&updateId=
Page does not show a diagram due to an error in JavaScript code:

<script type="text/javascript">
google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = new google.visualization.DataTable();
data.addColumn('string', "Product")
data.addColumn('number', "Downloads")
data.addRows([['CLion', 7],['Community Edition', 6],['IntelliJ IDEA', 31],['PyCharm CE', 2],['PyCharm', 6],['RubyMine', 1],['WebStorm', 1]])
var options = {
title: 'Downloads by products',
chartArea: {left:60,top:30,width:"90%",height:"75%"}
};
var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
chart.draw(data, options);
}
</script>
Instead of 'CLion' there is 'CLion', and so on.
Please sign in to leave a comment.
Sorry, this post should not be here - must be support request.