score:1

Accepted answer

you just need to map your csv data to the proper series data structure:

data: {
  csv: document.getelementbyid('csv').innerhtml,
  seriesmapping: [{
    x: 0,
    open: 1,
    high: 2,
    low: 3,
    close: 4
  }, {
    x: 0,
    y: 5
  }]
},
series: [{
  type: 'ohlc'
}, {
  type: 'line'
}]

live demo: http://jsfiddle.net/blacklabel/da74pokt/

api reference: https://api.highcharts.com/highcharts/data.seriesmapping


Related Query

More Query from same tag