score:1

Accepted answer

you can use multiple scatter series with defined x and y values. example:

highcharts.chart('container', {
    chart: {
        type: 'scatter'
    },
    series: [{
        data: [
            [0.9, 40],
            [1, 15],
            [1.05, 25],
            [1.1, 10],

            [2.9, 35],
            [3, 35],
            [3.1, 35]
        ]
    }, {
        data: [
            [1.9, 25],
            [1.95, 10],
            [2, 35],
            [2.1, 35]
        ]
    }],
    ...
});

live demo: http://jsfiddle.net/blacklabel/4eszoy30/

api reference: https://api.highcharts.com/highcharts/series.scatter.data


Related Query

More Query from same tag