I'm trying to change the line color that shows up when you hover over a point in highstocks but I haven't been able to find any such setting in their documentation.
Here's what I'm trying to change the color of
$(function() {
$('#container').highcharts('StockChart', {
tooltip: {
backgroundColor: {
linearGradient: {
x1: 0,
y1: 0,
x2: 0,
y2: 1
},
stops: [
[0, 'white'],
[1, '#EEE']
]
},
borderColor: 'gray',
borderWidth: 1
},
rangeSelector: {
selected: 1
},
series: [{
name: 'USD to EUR',
data: usdeur
}]
});
});
Here's my jsfiddle