Need to display the different value on mouseover tooltip value other than x and y-axis value on highcharts.
Given data where I need to use graphValue
to display on the chart and actualValue
to display on the tooltip.
data = [
{'graphValue': 10, 'actualValue': 10 },
{'graphValue': 20, 'actualValue': 20 },
{'graphValue': 0, 'actualValue': -15 },
{'graphValue': 10, 'actualValue': 10 },
{'graphValue': 0, 'actualValue': -20 },
{'graphValue': 10, 'actualValue': 10 },
{'graphValue': 0, 'actualValue': -20 },
{'graphValue': 15, 'actualValue': 15 }
]
please let me know how to achieve this. Thank you.