#6669
by amcharts
HTML
<script type="text/javascript" src="http://www.amcharts.com/lib/amcharts.js"></script>
<script type="text/javascript" src="http://www.amcharts.com/lib/pie.js"></script>
<div id="chartdiv"></div>
CSS
#chartdiv {
width : 100%;
height : 500px;
font-size : 11px;
}
JavaScript
AmCharts.ready(function () {
var chart = new AmCharts.AmPieChart();
chart.fontFamily = "courier";
chart.dataProvider = [
{
"country": "Lithuania",
"litres": 501.9
},
{
"country": "Czech Republic",
"litres": 301.9
}, {
"country": "Ireland",
"litres": 201.1
}, {
"country": "Germany",
"litres": 165.8
}, {
"country": "Australia",
"litres": 139.9
}, {
"country": "Austria",
"litres": 128.3
}, {
"country": "UK",
"litres": 99
}, {
"country": "Belgium",
"litres": 60
}, {
"country": "The Netherlands",
"litres": 50
}];
chart.valueField = "litres";
chart.titleField = "country";
chart.write('chartdiv');
});