score:1

What kind of problem did you come across, because its default chart:

score:9

A very helpful Highcharts service team member provided this answer: http://jsfiddle.net/sc5Gv/4/

$(function () {
        $('#container').highcharts({
            chart:{
                type:'scatter'
            },
            plotOptions:{
                scatter:{
                    lineWidth:2
                }
            },
            series: [{
                name: 'Tokyo',
                data: [[1.5,7], [2.3,9], [4.2,5.6]]
            }, {
                name: 'New York',
                data: [[0.8,9], [2.1,6.3], [5.0, 10.1]]
            }]
        });
    });

Related Query

More Query from same tag