Highcharts Demo

author(s): Torstein Hønsi

by Fusher

HTML

<script src="http://code.highcharts.com/highcharts.js"></script>

<div id="container" style="height: 400px"></div>

JavaScript

$(function() {
    highChart10304 = new Highcharts.Chart({    
        chart: {            
            renderTo: 'container'
        },
        legend: {
            width: 440,
            itemWidth: 210,
            itemStyle: {
                width: 210
            }
        },    
        series: [                                        
        {
            "name": "Score A",
            "data": [7, 5, 10]},
        {
            "name": "Score B",
            "data": [0, 22, 3]},
        {
            "name": "A really really really really  long name",
            "data": [13 ,13,47]},
        {
            "name": "Score D",
            "data": [19, 5, 16]}]
    });
});