My values are:
series: [{
name: 'name1',
data: data1,
data2: data2,
stack: 'normal'
}, {
name: 'name2',
data: data3,
data2: data4,
stack: 'normal'
}]
And now I need do the tooltip, but I don´t know how to change the value here:
headerFormat: '<table id="tablaTooltip"><tr>{point.x}</tr>',
pointFormat: '<tr><td><span style="color: {series.color}"><i class="fa fa-square"></i></span>{series.name}:</td><td style="text-align: right">{point.y}</td></tr>',
footerFormat: '</table>',
Point.y is the same as data, but I need show data2.
Thank you!