ElementStacks

by hfrntt

HTML

<script src="http://highcharts.com/js/testing.js"></script>
<div id="container" style="height: 400px"></div>

JavaScript

function randomData() {
    for(var i=0, d=[]; i<3; i++)
        d.push(Math.random()*100|0);
    return d;
}

var options = {
    chart: {
        renderTo: 'container'
    },
    
    series: [{
        type: 'pie',
        showInLegend: true,
        data: randomData()
    }]
}

window.chart = new Highcharts.Chart(options);