analytics.js 1.17 KB
var chart = AmCharts.makeChart(
    "chart", {
        "type": "pie",
        "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
            }
        ],
        "valueField": "litres",
        "titleField": "country",
        "balloon": {
            "fixedPosition": true
        },
        "export": {
            "enabled": true
        }
    }
);