score:1

Accepted answer

Set name for the series, disable firstRowAsNames property and set startRow to 1 in data options:

    data: {
        firstRowAsNames: false,
        startRow: 1,
        ...
    },
    series: [{
        name: 'Adjust',
        ...
    }]

Live demo: http://jsfiddle.net/BlackLabel/fkh0oa2s/

API Reference:

https://api.highcharts.com/highstock/data

https://api.highcharts.com/highstock/series.ohlc.data


Related Query

More Query from same tag